Enum aws_sdk_iam::Error
source · #[non_exhaustive]pub enum Error {
Show 29 variants
ConcurrentModificationException(ConcurrentModificationException),
CredentialReportExpiredException(CredentialReportExpiredException),
CredentialReportNotPresentException(CredentialReportNotPresentException),
CredentialReportNotReadyException(CredentialReportNotReadyException),
DeleteConflictException(DeleteConflictException),
DuplicateCertificateException(DuplicateCertificateException),
DuplicateSshPublicKeyException(DuplicateSshPublicKeyException),
EntityAlreadyExistsException(EntityAlreadyExistsException),
EntityTemporarilyUnmodifiableException(EntityTemporarilyUnmodifiableException),
InvalidAuthenticationCodeException(InvalidAuthenticationCodeException),
InvalidCertificateException(InvalidCertificateException),
InvalidInputException(InvalidInputException),
InvalidPublicKeyException(InvalidPublicKeyException),
InvalidUserTypeException(InvalidUserTypeException),
KeyPairMismatchException(KeyPairMismatchException),
LimitExceededException(LimitExceededException),
MalformedCertificateException(MalformedCertificateException),
MalformedPolicyDocumentException(MalformedPolicyDocumentException),
NoSuchEntityException(NoSuchEntityException),
OpenIdIdpCommunicationErrorException(OpenIdIdpCommunicationErrorException),
PasswordPolicyViolationException(PasswordPolicyViolationException),
PolicyEvaluationException(PolicyEvaluationException),
PolicyNotAttachableException(PolicyNotAttachableException),
ReportGenerationLimitExceededException(ReportGenerationLimitExceededException),
ServiceFailureException(ServiceFailureException),
ServiceNotSupportedException(ServiceNotSupportedException),
UnmodifiableEntityException(UnmodifiableEntityException),
UnrecognizedPublicKeyEncodingException(UnrecognizedPublicKeyEncodingException),
Unhandled(Unhandled),
}
Expand description
All possible error types for this service.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ConcurrentModificationException(ConcurrentModificationException)
The request was rejected because multiple requests to change this object were submitted simultaneously. Wait a few minutes and submit your request again.
CredentialReportExpiredException(CredentialReportExpiredException)
The request was rejected because the most recent credential report has expired. To generate a new credential report, use GenerateCredentialReport
. For more information about credential report expiration, see Getting credential reports in the IAM User Guide.
CredentialReportNotPresentException(CredentialReportNotPresentException)
The request was rejected because the credential report does not exist. To generate a credential report, use GenerateCredentialReport
.
CredentialReportNotReadyException(CredentialReportNotReadyException)
The request was rejected because the credential report is still being generated.
DeleteConflictException(DeleteConflictException)
The request was rejected because it attempted to delete a resource that has attached subordinate entities. The error message describes these entities.
DuplicateCertificateException(DuplicateCertificateException)
The request was rejected because the same certificate is associated with an IAM user in the account.
DuplicateSshPublicKeyException(DuplicateSshPublicKeyException)
The request was rejected because the SSH public key is already associated with the specified IAM user.
EntityAlreadyExistsException(EntityAlreadyExistsException)
The request was rejected because it attempted to create a resource that already exists.
EntityTemporarilyUnmodifiableException(EntityTemporarilyUnmodifiableException)
The request was rejected because it referenced an entity that is temporarily unmodifiable, such as a user name that was deleted and then recreated. The error indicates that the request is likely to succeed if you try again after waiting several minutes. The error message describes the entity.
InvalidAuthenticationCodeException(InvalidAuthenticationCodeException)
The request was rejected because the authentication code was not recognized. The error message describes the specific error.
InvalidCertificateException(InvalidCertificateException)
The request was rejected because the certificate is invalid.
InvalidInputException(InvalidInputException)
The request was rejected because an invalid or out-of-range value was supplied for an input parameter.
InvalidPublicKeyException(InvalidPublicKeyException)
The request was rejected because the public key is malformed or otherwise invalid.
InvalidUserTypeException(InvalidUserTypeException)
The request was rejected because the type of user for the transaction was incorrect.
KeyPairMismatchException(KeyPairMismatchException)
The request was rejected because the public key certificate and the private key do not match.
LimitExceededException(LimitExceededException)
The request was rejected because it attempted to create resources beyond the current Amazon Web Services account limits. The error message describes the limit exceeded.
MalformedCertificateException(MalformedCertificateException)
The request was rejected because the certificate was malformed or expired. The error message describes the specific error.
MalformedPolicyDocumentException(MalformedPolicyDocumentException)
The request was rejected because the policy document was malformed. The error message describes the specific error.
NoSuchEntityException(NoSuchEntityException)
The request was rejected because it referenced a resource entity that does not exist. The error message describes the resource.
OpenIdIdpCommunicationErrorException(OpenIdIdpCommunicationErrorException)
The request failed because IAM cannot connect to the OpenID Connect identity provider URL.
PasswordPolicyViolationException(PasswordPolicyViolationException)
The request was rejected because the provided password did not meet the requirements imposed by the account password policy.
PolicyEvaluationException(PolicyEvaluationException)
The request failed because a provided policy could not be successfully evaluated. An additional detailed message indicates the source of the failure.
PolicyNotAttachableException(PolicyNotAttachableException)
The request failed because Amazon Web Services service role policies can only be attached to the service-linked role for that service.
ReportGenerationLimitExceededException(ReportGenerationLimitExceededException)
The request failed because the maximum number of concurrent requests for this account are already running.
ServiceFailureException(ServiceFailureException)
The request processing has failed because of an unknown error, exception or failure.
ServiceNotSupportedException(ServiceNotSupportedException)
The specified service does not support service-specific credentials.
UnmodifiableEntityException(UnmodifiableEntityException)
The request was rejected because service-linked roles are protected Amazon Web Services resources. Only the service that depends on the service-linked role can modify or delete the role on your behalf. The error message includes the name of the service that depends on this service-linked role. You must request the change through that service.
UnrecognizedPublicKeyEncodingException(UnrecognizedPublicKeyEncodingException)
The request was rejected because the public key encoding format is unsupported or unrecognized.
Unhandled(Unhandled)
Unhandled
directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code()
:
err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ }
See ProvideErrorMetadata
for what information is available for the error.An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<AddClientIDToOpenIDConnectProviderError> for Error
impl From<AddClientIDToOpenIDConnectProviderError> for Error
source§fn from(err: AddClientIDToOpenIDConnectProviderError) -> Self
fn from(err: AddClientIDToOpenIDConnectProviderError) -> Self
source§impl From<AddRoleToInstanceProfileError> for Error
impl From<AddRoleToInstanceProfileError> for Error
source§fn from(err: AddRoleToInstanceProfileError) -> Self
fn from(err: AddRoleToInstanceProfileError) -> Self
source§impl From<AddUserToGroupError> for Error
impl From<AddUserToGroupError> for Error
source§fn from(err: AddUserToGroupError) -> Self
fn from(err: AddUserToGroupError) -> Self
source§impl From<AttachGroupPolicyError> for Error
impl From<AttachGroupPolicyError> for Error
source§fn from(err: AttachGroupPolicyError) -> Self
fn from(err: AttachGroupPolicyError) -> Self
source§impl From<AttachRolePolicyError> for Error
impl From<AttachRolePolicyError> for Error
source§fn from(err: AttachRolePolicyError) -> Self
fn from(err: AttachRolePolicyError) -> Self
source§impl From<AttachUserPolicyError> for Error
impl From<AttachUserPolicyError> for Error
source§fn from(err: AttachUserPolicyError) -> Self
fn from(err: AttachUserPolicyError) -> Self
source§impl From<BuildError> for Error
impl From<BuildError> for Error
source§fn from(value: BuildError) -> Self
fn from(value: BuildError) -> Self
source§impl From<ChangePasswordError> for Error
impl From<ChangePasswordError> for Error
source§fn from(err: ChangePasswordError) -> Self
fn from(err: ChangePasswordError) -> Self
source§impl From<CreateAccessKeyError> for Error
impl From<CreateAccessKeyError> for Error
source§fn from(err: CreateAccessKeyError) -> Self
fn from(err: CreateAccessKeyError) -> Self
source§impl From<CreateAccountAliasError> for Error
impl From<CreateAccountAliasError> for Error
source§fn from(err: CreateAccountAliasError) -> Self
fn from(err: CreateAccountAliasError) -> Self
source§impl From<CreateGroupError> for Error
impl From<CreateGroupError> for Error
source§fn from(err: CreateGroupError) -> Self
fn from(err: CreateGroupError) -> Self
source§impl From<CreateInstanceProfileError> for Error
impl From<CreateInstanceProfileError> for Error
source§fn from(err: CreateInstanceProfileError) -> Self
fn from(err: CreateInstanceProfileError) -> Self
source§impl From<CreateLoginProfileError> for Error
impl From<CreateLoginProfileError> for Error
source§fn from(err: CreateLoginProfileError) -> Self
fn from(err: CreateLoginProfileError) -> Self
source§impl From<CreateOpenIDConnectProviderError> for Error
impl From<CreateOpenIDConnectProviderError> for Error
source§fn from(err: CreateOpenIDConnectProviderError) -> Self
fn from(err: CreateOpenIDConnectProviderError) -> Self
source§impl From<CreatePolicyError> for Error
impl From<CreatePolicyError> for Error
source§fn from(err: CreatePolicyError) -> Self
fn from(err: CreatePolicyError) -> Self
source§impl From<CreatePolicyVersionError> for Error
impl From<CreatePolicyVersionError> for Error
source§fn from(err: CreatePolicyVersionError) -> Self
fn from(err: CreatePolicyVersionError) -> Self
source§impl From<CreateRoleError> for Error
impl From<CreateRoleError> for Error
source§fn from(err: CreateRoleError) -> Self
fn from(err: CreateRoleError) -> Self
source§impl From<CreateSAMLProviderError> for Error
impl From<CreateSAMLProviderError> for Error
source§fn from(err: CreateSAMLProviderError) -> Self
fn from(err: CreateSAMLProviderError) -> Self
source§impl From<CreateServiceLinkedRoleError> for Error
impl From<CreateServiceLinkedRoleError> for Error
source§fn from(err: CreateServiceLinkedRoleError) -> Self
fn from(err: CreateServiceLinkedRoleError) -> Self
source§impl From<CreateServiceSpecificCredentialError> for Error
impl From<CreateServiceSpecificCredentialError> for Error
source§fn from(err: CreateServiceSpecificCredentialError) -> Self
fn from(err: CreateServiceSpecificCredentialError) -> Self
source§impl From<CreateUserError> for Error
impl From<CreateUserError> for Error
source§fn from(err: CreateUserError) -> Self
fn from(err: CreateUserError) -> Self
source§impl From<CreateVirtualMFADeviceError> for Error
impl From<CreateVirtualMFADeviceError> for Error
source§fn from(err: CreateVirtualMFADeviceError) -> Self
fn from(err: CreateVirtualMFADeviceError) -> Self
source§impl From<DeactivateMFADeviceError> for Error
impl From<DeactivateMFADeviceError> for Error
source§fn from(err: DeactivateMFADeviceError) -> Self
fn from(err: DeactivateMFADeviceError) -> Self
source§impl From<DeleteAccessKeyError> for Error
impl From<DeleteAccessKeyError> for Error
source§fn from(err: DeleteAccessKeyError) -> Self
fn from(err: DeleteAccessKeyError) -> Self
source§impl From<DeleteAccountAliasError> for Error
impl From<DeleteAccountAliasError> for Error
source§fn from(err: DeleteAccountAliasError) -> Self
fn from(err: DeleteAccountAliasError) -> Self
source§impl From<DeleteAccountPasswordPolicyError> for Error
impl From<DeleteAccountPasswordPolicyError> for Error
source§fn from(err: DeleteAccountPasswordPolicyError) -> Self
fn from(err: DeleteAccountPasswordPolicyError) -> Self
source§impl From<DeleteGroupError> for Error
impl From<DeleteGroupError> for Error
source§fn from(err: DeleteGroupError) -> Self
fn from(err: DeleteGroupError) -> Self
source§impl From<DeleteGroupPolicyError> for Error
impl From<DeleteGroupPolicyError> for Error
source§fn from(err: DeleteGroupPolicyError) -> Self
fn from(err: DeleteGroupPolicyError) -> Self
source§impl From<DeleteInstanceProfileError> for Error
impl From<DeleteInstanceProfileError> for Error
source§fn from(err: DeleteInstanceProfileError) -> Self
fn from(err: DeleteInstanceProfileError) -> Self
source§impl From<DeleteLoginProfileError> for Error
impl From<DeleteLoginProfileError> for Error
source§fn from(err: DeleteLoginProfileError) -> Self
fn from(err: DeleteLoginProfileError) -> Self
source§impl From<DeleteOpenIDConnectProviderError> for Error
impl From<DeleteOpenIDConnectProviderError> for Error
source§fn from(err: DeleteOpenIDConnectProviderError) -> Self
fn from(err: DeleteOpenIDConnectProviderError) -> Self
source§impl From<DeletePolicyError> for Error
impl From<DeletePolicyError> for Error
source§fn from(err: DeletePolicyError) -> Self
fn from(err: DeletePolicyError) -> Self
source§impl From<DeletePolicyVersionError> for Error
impl From<DeletePolicyVersionError> for Error
source§fn from(err: DeletePolicyVersionError) -> Self
fn from(err: DeletePolicyVersionError) -> Self
source§impl From<DeleteRoleError> for Error
impl From<DeleteRoleError> for Error
source§fn from(err: DeleteRoleError) -> Self
fn from(err: DeleteRoleError) -> Self
source§impl From<DeleteRolePermissionsBoundaryError> for Error
impl From<DeleteRolePermissionsBoundaryError> for Error
source§fn from(err: DeleteRolePermissionsBoundaryError) -> Self
fn from(err: DeleteRolePermissionsBoundaryError) -> Self
source§impl From<DeleteRolePolicyError> for Error
impl From<DeleteRolePolicyError> for Error
source§fn from(err: DeleteRolePolicyError) -> Self
fn from(err: DeleteRolePolicyError) -> Self
source§impl From<DeleteSAMLProviderError> for Error
impl From<DeleteSAMLProviderError> for Error
source§fn from(err: DeleteSAMLProviderError) -> Self
fn from(err: DeleteSAMLProviderError) -> Self
source§impl From<DeleteSSHPublicKeyError> for Error
impl From<DeleteSSHPublicKeyError> for Error
source§fn from(err: DeleteSSHPublicKeyError) -> Self
fn from(err: DeleteSSHPublicKeyError) -> Self
source§impl From<DeleteServerCertificateError> for Error
impl From<DeleteServerCertificateError> for Error
source§fn from(err: DeleteServerCertificateError) -> Self
fn from(err: DeleteServerCertificateError) -> Self
source§impl From<DeleteServiceLinkedRoleError> for Error
impl From<DeleteServiceLinkedRoleError> for Error
source§fn from(err: DeleteServiceLinkedRoleError) -> Self
fn from(err: DeleteServiceLinkedRoleError) -> Self
source§impl From<DeleteServiceSpecificCredentialError> for Error
impl From<DeleteServiceSpecificCredentialError> for Error
source§fn from(err: DeleteServiceSpecificCredentialError) -> Self
fn from(err: DeleteServiceSpecificCredentialError) -> Self
source§impl From<DeleteSigningCertificateError> for Error
impl From<DeleteSigningCertificateError> for Error
source§fn from(err: DeleteSigningCertificateError) -> Self
fn from(err: DeleteSigningCertificateError) -> Self
source§impl From<DeleteUserError> for Error
impl From<DeleteUserError> for Error
source§fn from(err: DeleteUserError) -> Self
fn from(err: DeleteUserError) -> Self
source§impl From<DeleteUserPermissionsBoundaryError> for Error
impl From<DeleteUserPermissionsBoundaryError> for Error
source§fn from(err: DeleteUserPermissionsBoundaryError) -> Self
fn from(err: DeleteUserPermissionsBoundaryError) -> Self
source§impl From<DeleteUserPolicyError> for Error
impl From<DeleteUserPolicyError> for Error
source§fn from(err: DeleteUserPolicyError) -> Self
fn from(err: DeleteUserPolicyError) -> Self
source§impl From<DeleteVirtualMFADeviceError> for Error
impl From<DeleteVirtualMFADeviceError> for Error
source§fn from(err: DeleteVirtualMFADeviceError) -> Self
fn from(err: DeleteVirtualMFADeviceError) -> Self
source§impl From<DetachGroupPolicyError> for Error
impl From<DetachGroupPolicyError> for Error
source§fn from(err: DetachGroupPolicyError) -> Self
fn from(err: DetachGroupPolicyError) -> Self
source§impl From<DetachRolePolicyError> for Error
impl From<DetachRolePolicyError> for Error
source§fn from(err: DetachRolePolicyError) -> Self
fn from(err: DetachRolePolicyError) -> Self
source§impl From<DetachUserPolicyError> for Error
impl From<DetachUserPolicyError> for Error
source§fn from(err: DetachUserPolicyError) -> Self
fn from(err: DetachUserPolicyError) -> Self
source§impl From<EnableMFADeviceError> for Error
impl From<EnableMFADeviceError> for Error
source§fn from(err: EnableMFADeviceError) -> Self
fn from(err: EnableMFADeviceError) -> Self
source§impl From<GenerateCredentialReportError> for Error
impl From<GenerateCredentialReportError> for Error
source§fn from(err: GenerateCredentialReportError) -> Self
fn from(err: GenerateCredentialReportError) -> Self
source§impl From<GenerateOrganizationsAccessReportError> for Error
impl From<GenerateOrganizationsAccessReportError> for Error
source§fn from(err: GenerateOrganizationsAccessReportError) -> Self
fn from(err: GenerateOrganizationsAccessReportError) -> Self
source§impl From<GenerateServiceLastAccessedDetailsError> for Error
impl From<GenerateServiceLastAccessedDetailsError> for Error
source§fn from(err: GenerateServiceLastAccessedDetailsError) -> Self
fn from(err: GenerateServiceLastAccessedDetailsError) -> Self
source§impl From<GetAccessKeyLastUsedError> for Error
impl From<GetAccessKeyLastUsedError> for Error
source§fn from(err: GetAccessKeyLastUsedError) -> Self
fn from(err: GetAccessKeyLastUsedError) -> Self
source§impl From<GetAccountAuthorizationDetailsError> for Error
impl From<GetAccountAuthorizationDetailsError> for Error
source§fn from(err: GetAccountAuthorizationDetailsError) -> Self
fn from(err: GetAccountAuthorizationDetailsError) -> Self
source§impl From<GetAccountPasswordPolicyError> for Error
impl From<GetAccountPasswordPolicyError> for Error
source§fn from(err: GetAccountPasswordPolicyError) -> Self
fn from(err: GetAccountPasswordPolicyError) -> Self
source§impl From<GetAccountSummaryError> for Error
impl From<GetAccountSummaryError> for Error
source§fn from(err: GetAccountSummaryError) -> Self
fn from(err: GetAccountSummaryError) -> Self
source§impl From<GetContextKeysForCustomPolicyError> for Error
impl From<GetContextKeysForCustomPolicyError> for Error
source§fn from(err: GetContextKeysForCustomPolicyError) -> Self
fn from(err: GetContextKeysForCustomPolicyError) -> Self
source§impl From<GetContextKeysForPrincipalPolicyError> for Error
impl From<GetContextKeysForPrincipalPolicyError> for Error
source§fn from(err: GetContextKeysForPrincipalPolicyError) -> Self
fn from(err: GetContextKeysForPrincipalPolicyError) -> Self
source§impl From<GetCredentialReportError> for Error
impl From<GetCredentialReportError> for Error
source§fn from(err: GetCredentialReportError) -> Self
fn from(err: GetCredentialReportError) -> Self
source§impl From<GetGroupError> for Error
impl From<GetGroupError> for Error
source§fn from(err: GetGroupError) -> Self
fn from(err: GetGroupError) -> Self
source§impl From<GetGroupPolicyError> for Error
impl From<GetGroupPolicyError> for Error
source§fn from(err: GetGroupPolicyError) -> Self
fn from(err: GetGroupPolicyError) -> Self
source§impl From<GetInstanceProfileError> for Error
impl From<GetInstanceProfileError> for Error
source§fn from(err: GetInstanceProfileError) -> Self
fn from(err: GetInstanceProfileError) -> Self
source§impl From<GetLoginProfileError> for Error
impl From<GetLoginProfileError> for Error
source§fn from(err: GetLoginProfileError) -> Self
fn from(err: GetLoginProfileError) -> Self
source§impl From<GetMFADeviceError> for Error
impl From<GetMFADeviceError> for Error
source§fn from(err: GetMFADeviceError) -> Self
fn from(err: GetMFADeviceError) -> Self
source§impl From<GetOpenIDConnectProviderError> for Error
impl From<GetOpenIDConnectProviderError> for Error
source§fn from(err: GetOpenIDConnectProviderError) -> Self
fn from(err: GetOpenIDConnectProviderError) -> Self
source§impl From<GetOrganizationsAccessReportError> for Error
impl From<GetOrganizationsAccessReportError> for Error
source§fn from(err: GetOrganizationsAccessReportError) -> Self
fn from(err: GetOrganizationsAccessReportError) -> Self
source§impl From<GetPolicyError> for Error
impl From<GetPolicyError> for Error
source§fn from(err: GetPolicyError) -> Self
fn from(err: GetPolicyError) -> Self
source§impl From<GetPolicyVersionError> for Error
impl From<GetPolicyVersionError> for Error
source§fn from(err: GetPolicyVersionError) -> Self
fn from(err: GetPolicyVersionError) -> Self
source§impl From<GetRoleError> for Error
impl From<GetRoleError> for Error
source§fn from(err: GetRoleError) -> Self
fn from(err: GetRoleError) -> Self
source§impl From<GetRolePolicyError> for Error
impl From<GetRolePolicyError> for Error
source§fn from(err: GetRolePolicyError) -> Self
fn from(err: GetRolePolicyError) -> Self
source§impl From<GetSAMLProviderError> for Error
impl From<GetSAMLProviderError> for Error
source§fn from(err: GetSAMLProviderError) -> Self
fn from(err: GetSAMLProviderError) -> Self
source§impl From<GetSSHPublicKeyError> for Error
impl From<GetSSHPublicKeyError> for Error
source§fn from(err: GetSSHPublicKeyError) -> Self
fn from(err: GetSSHPublicKeyError) -> Self
source§impl From<GetServerCertificateError> for Error
impl From<GetServerCertificateError> for Error
source§fn from(err: GetServerCertificateError) -> Self
fn from(err: GetServerCertificateError) -> Self
source§impl From<GetServiceLastAccessedDetailsError> for Error
impl From<GetServiceLastAccessedDetailsError> for Error
source§fn from(err: GetServiceLastAccessedDetailsError) -> Self
fn from(err: GetServiceLastAccessedDetailsError) -> Self
source§impl From<GetServiceLastAccessedDetailsWithEntitiesError> for Error
impl From<GetServiceLastAccessedDetailsWithEntitiesError> for Error
source§fn from(err: GetServiceLastAccessedDetailsWithEntitiesError) -> Self
fn from(err: GetServiceLastAccessedDetailsWithEntitiesError) -> Self
source§impl From<GetServiceLinkedRoleDeletionStatusError> for Error
impl From<GetServiceLinkedRoleDeletionStatusError> for Error
source§fn from(err: GetServiceLinkedRoleDeletionStatusError) -> Self
fn from(err: GetServiceLinkedRoleDeletionStatusError) -> Self
source§impl From<GetUserError> for Error
impl From<GetUserError> for Error
source§fn from(err: GetUserError) -> Self
fn from(err: GetUserError) -> Self
source§impl From<GetUserPolicyError> for Error
impl From<GetUserPolicyError> for Error
source§fn from(err: GetUserPolicyError) -> Self
fn from(err: GetUserPolicyError) -> Self
source§impl From<ListAccessKeysError> for Error
impl From<ListAccessKeysError> for Error
source§fn from(err: ListAccessKeysError) -> Self
fn from(err: ListAccessKeysError) -> Self
source§impl From<ListAccountAliasesError> for Error
impl From<ListAccountAliasesError> for Error
source§fn from(err: ListAccountAliasesError) -> Self
fn from(err: ListAccountAliasesError) -> Self
source§impl From<ListAttachedGroupPoliciesError> for Error
impl From<ListAttachedGroupPoliciesError> for Error
source§fn from(err: ListAttachedGroupPoliciesError) -> Self
fn from(err: ListAttachedGroupPoliciesError) -> Self
source§impl From<ListAttachedRolePoliciesError> for Error
impl From<ListAttachedRolePoliciesError> for Error
source§fn from(err: ListAttachedRolePoliciesError) -> Self
fn from(err: ListAttachedRolePoliciesError) -> Self
source§impl From<ListAttachedUserPoliciesError> for Error
impl From<ListAttachedUserPoliciesError> for Error
source§fn from(err: ListAttachedUserPoliciesError) -> Self
fn from(err: ListAttachedUserPoliciesError) -> Self
source§impl From<ListEntitiesForPolicyError> for Error
impl From<ListEntitiesForPolicyError> for Error
source§fn from(err: ListEntitiesForPolicyError) -> Self
fn from(err: ListEntitiesForPolicyError) -> Self
source§impl From<ListGroupPoliciesError> for Error
impl From<ListGroupPoliciesError> for Error
source§fn from(err: ListGroupPoliciesError) -> Self
fn from(err: ListGroupPoliciesError) -> Self
source§impl From<ListGroupsError> for Error
impl From<ListGroupsError> for Error
source§fn from(err: ListGroupsError) -> Self
fn from(err: ListGroupsError) -> Self
source§impl From<ListGroupsForUserError> for Error
impl From<ListGroupsForUserError> for Error
source§fn from(err: ListGroupsForUserError) -> Self
fn from(err: ListGroupsForUserError) -> Self
source§impl From<ListInstanceProfileTagsError> for Error
impl From<ListInstanceProfileTagsError> for Error
source§fn from(err: ListInstanceProfileTagsError) -> Self
fn from(err: ListInstanceProfileTagsError) -> Self
source§impl From<ListInstanceProfilesError> for Error
impl From<ListInstanceProfilesError> for Error
source§fn from(err: ListInstanceProfilesError) -> Self
fn from(err: ListInstanceProfilesError) -> Self
source§impl From<ListInstanceProfilesForRoleError> for Error
impl From<ListInstanceProfilesForRoleError> for Error
source§fn from(err: ListInstanceProfilesForRoleError) -> Self
fn from(err: ListInstanceProfilesForRoleError) -> Self
source§impl From<ListMFADeviceTagsError> for Error
impl From<ListMFADeviceTagsError> for Error
source§fn from(err: ListMFADeviceTagsError) -> Self
fn from(err: ListMFADeviceTagsError) -> Self
source§impl From<ListMFADevicesError> for Error
impl From<ListMFADevicesError> for Error
source§fn from(err: ListMFADevicesError) -> Self
fn from(err: ListMFADevicesError) -> Self
source§impl From<ListOpenIDConnectProviderTagsError> for Error
impl From<ListOpenIDConnectProviderTagsError> for Error
source§fn from(err: ListOpenIDConnectProviderTagsError) -> Self
fn from(err: ListOpenIDConnectProviderTagsError) -> Self
source§impl From<ListOpenIDConnectProvidersError> for Error
impl From<ListOpenIDConnectProvidersError> for Error
source§fn from(err: ListOpenIDConnectProvidersError) -> Self
fn from(err: ListOpenIDConnectProvidersError) -> Self
source§impl From<ListPoliciesError> for Error
impl From<ListPoliciesError> for Error
source§fn from(err: ListPoliciesError) -> Self
fn from(err: ListPoliciesError) -> Self
source§impl From<ListPoliciesGrantingServiceAccessError> for Error
impl From<ListPoliciesGrantingServiceAccessError> for Error
source§fn from(err: ListPoliciesGrantingServiceAccessError) -> Self
fn from(err: ListPoliciesGrantingServiceAccessError) -> Self
source§impl From<ListPolicyTagsError> for Error
impl From<ListPolicyTagsError> for Error
source§fn from(err: ListPolicyTagsError) -> Self
fn from(err: ListPolicyTagsError) -> Self
source§impl From<ListPolicyVersionsError> for Error
impl From<ListPolicyVersionsError> for Error
source§fn from(err: ListPolicyVersionsError) -> Self
fn from(err: ListPolicyVersionsError) -> Self
source§impl From<ListRolePoliciesError> for Error
impl From<ListRolePoliciesError> for Error
source§fn from(err: ListRolePoliciesError) -> Self
fn from(err: ListRolePoliciesError) -> Self
source§impl From<ListRoleTagsError> for Error
impl From<ListRoleTagsError> for Error
source§fn from(err: ListRoleTagsError) -> Self
fn from(err: ListRoleTagsError) -> Self
source§impl From<ListRolesError> for Error
impl From<ListRolesError> for Error
source§fn from(err: ListRolesError) -> Self
fn from(err: ListRolesError) -> Self
source§impl From<ListSAMLProviderTagsError> for Error
impl From<ListSAMLProviderTagsError> for Error
source§fn from(err: ListSAMLProviderTagsError) -> Self
fn from(err: ListSAMLProviderTagsError) -> Self
source§impl From<ListSAMLProvidersError> for Error
impl From<ListSAMLProvidersError> for Error
source§fn from(err: ListSAMLProvidersError) -> Self
fn from(err: ListSAMLProvidersError) -> Self
source§impl From<ListSSHPublicKeysError> for Error
impl From<ListSSHPublicKeysError> for Error
source§fn from(err: ListSSHPublicKeysError) -> Self
fn from(err: ListSSHPublicKeysError) -> Self
source§impl From<ListServerCertificateTagsError> for Error
impl From<ListServerCertificateTagsError> for Error
source§fn from(err: ListServerCertificateTagsError) -> Self
fn from(err: ListServerCertificateTagsError) -> Self
source§impl From<ListServerCertificatesError> for Error
impl From<ListServerCertificatesError> for Error
source§fn from(err: ListServerCertificatesError) -> Self
fn from(err: ListServerCertificatesError) -> Self
source§impl From<ListServiceSpecificCredentialsError> for Error
impl From<ListServiceSpecificCredentialsError> for Error
source§fn from(err: ListServiceSpecificCredentialsError) -> Self
fn from(err: ListServiceSpecificCredentialsError) -> Self
source§impl From<ListSigningCertificatesError> for Error
impl From<ListSigningCertificatesError> for Error
source§fn from(err: ListSigningCertificatesError) -> Self
fn from(err: ListSigningCertificatesError) -> Self
source§impl From<ListUserPoliciesError> for Error
impl From<ListUserPoliciesError> for Error
source§fn from(err: ListUserPoliciesError) -> Self
fn from(err: ListUserPoliciesError) -> Self
source§impl From<ListUserTagsError> for Error
impl From<ListUserTagsError> for Error
source§fn from(err: ListUserTagsError) -> Self
fn from(err: ListUserTagsError) -> Self
source§impl From<ListUsersError> for Error
impl From<ListUsersError> for Error
source§fn from(err: ListUsersError) -> Self
fn from(err: ListUsersError) -> Self
source§impl From<ListVirtualMFADevicesError> for Error
impl From<ListVirtualMFADevicesError> for Error
source§fn from(err: ListVirtualMFADevicesError) -> Self
fn from(err: ListVirtualMFADevicesError) -> Self
source§impl From<PutGroupPolicyError> for Error
impl From<PutGroupPolicyError> for Error
source§fn from(err: PutGroupPolicyError) -> Self
fn from(err: PutGroupPolicyError) -> Self
source§impl From<PutRolePermissionsBoundaryError> for Error
impl From<PutRolePermissionsBoundaryError> for Error
source§fn from(err: PutRolePermissionsBoundaryError) -> Self
fn from(err: PutRolePermissionsBoundaryError) -> Self
source§impl From<PutRolePolicyError> for Error
impl From<PutRolePolicyError> for Error
source§fn from(err: PutRolePolicyError) -> Self
fn from(err: PutRolePolicyError) -> Self
source§impl From<PutUserPermissionsBoundaryError> for Error
impl From<PutUserPermissionsBoundaryError> for Error
source§fn from(err: PutUserPermissionsBoundaryError) -> Self
fn from(err: PutUserPermissionsBoundaryError) -> Self
source§impl From<PutUserPolicyError> for Error
impl From<PutUserPolicyError> for Error
source§fn from(err: PutUserPolicyError) -> Self
fn from(err: PutUserPolicyError) -> Self
source§impl From<RemoveClientIDFromOpenIDConnectProviderError> for Error
impl From<RemoveClientIDFromOpenIDConnectProviderError> for Error
source§fn from(err: RemoveClientIDFromOpenIDConnectProviderError) -> Self
fn from(err: RemoveClientIDFromOpenIDConnectProviderError) -> Self
source§impl From<RemoveRoleFromInstanceProfileError> for Error
impl From<RemoveRoleFromInstanceProfileError> for Error
source§fn from(err: RemoveRoleFromInstanceProfileError) -> Self
fn from(err: RemoveRoleFromInstanceProfileError) -> Self
source§impl From<RemoveUserFromGroupError> for Error
impl From<RemoveUserFromGroupError> for Error
source§fn from(err: RemoveUserFromGroupError) -> Self
fn from(err: RemoveUserFromGroupError) -> Self
source§impl From<ResetServiceSpecificCredentialError> for Error
impl From<ResetServiceSpecificCredentialError> for Error
source§fn from(err: ResetServiceSpecificCredentialError) -> Self
fn from(err: ResetServiceSpecificCredentialError) -> Self
source§impl From<ResyncMFADeviceError> for Error
impl From<ResyncMFADeviceError> for Error
source§fn from(err: ResyncMFADeviceError) -> Self
fn from(err: ResyncMFADeviceError) -> Self
source§impl<R> From<SdkError<AddClientIDToOpenIDConnectProviderError, R>> for Error
impl<R> From<SdkError<AddClientIDToOpenIDConnectProviderError, R>> for Error
source§fn from(err: SdkError<AddClientIDToOpenIDConnectProviderError, R>) -> Self
fn from(err: SdkError<AddClientIDToOpenIDConnectProviderError, R>) -> Self
source§impl<R> From<SdkError<AddRoleToInstanceProfileError, R>> for Error
impl<R> From<SdkError<AddRoleToInstanceProfileError, R>> for Error
source§fn from(err: SdkError<AddRoleToInstanceProfileError, R>) -> Self
fn from(err: SdkError<AddRoleToInstanceProfileError, R>) -> Self
source§impl<R> From<SdkError<AddUserToGroupError, R>> for Error
impl<R> From<SdkError<AddUserToGroupError, R>> for Error
source§fn from(err: SdkError<AddUserToGroupError, R>) -> Self
fn from(err: SdkError<AddUserToGroupError, R>) -> Self
source§impl<R> From<SdkError<AttachGroupPolicyError, R>> for Error
impl<R> From<SdkError<AttachGroupPolicyError, R>> for Error
source§fn from(err: SdkError<AttachGroupPolicyError, R>) -> Self
fn from(err: SdkError<AttachGroupPolicyError, R>) -> Self
source§impl<R> From<SdkError<AttachRolePolicyError, R>> for Error
impl<R> From<SdkError<AttachRolePolicyError, R>> for Error
source§fn from(err: SdkError<AttachRolePolicyError, R>) -> Self
fn from(err: SdkError<AttachRolePolicyError, R>) -> Self
source§impl<R> From<SdkError<AttachUserPolicyError, R>> for Error
impl<R> From<SdkError<AttachUserPolicyError, R>> for Error
source§fn from(err: SdkError<AttachUserPolicyError, R>) -> Self
fn from(err: SdkError<AttachUserPolicyError, R>) -> Self
source§impl<R> From<SdkError<ChangePasswordError, R>> for Error
impl<R> From<SdkError<ChangePasswordError, R>> for Error
source§fn from(err: SdkError<ChangePasswordError, R>) -> Self
fn from(err: SdkError<ChangePasswordError, R>) -> Self
source§impl<R> From<SdkError<CreateAccessKeyError, R>> for Error
impl<R> From<SdkError<CreateAccessKeyError, R>> for Error
source§fn from(err: SdkError<CreateAccessKeyError, R>) -> Self
fn from(err: SdkError<CreateAccessKeyError, R>) -> Self
source§impl<R> From<SdkError<CreateAccountAliasError, R>> for Error
impl<R> From<SdkError<CreateAccountAliasError, R>> for Error
source§fn from(err: SdkError<CreateAccountAliasError, R>) -> Self
fn from(err: SdkError<CreateAccountAliasError, R>) -> Self
source§impl<R> From<SdkError<CreateGroupError, R>> for Error
impl<R> From<SdkError<CreateGroupError, R>> for Error
source§fn from(err: SdkError<CreateGroupError, R>) -> Self
fn from(err: SdkError<CreateGroupError, R>) -> Self
source§impl<R> From<SdkError<CreateInstanceProfileError, R>> for Error
impl<R> From<SdkError<CreateInstanceProfileError, R>> for Error
source§fn from(err: SdkError<CreateInstanceProfileError, R>) -> Self
fn from(err: SdkError<CreateInstanceProfileError, R>) -> Self
source§impl<R> From<SdkError<CreateLoginProfileError, R>> for Error
impl<R> From<SdkError<CreateLoginProfileError, R>> for Error
source§fn from(err: SdkError<CreateLoginProfileError, R>) -> Self
fn from(err: SdkError<CreateLoginProfileError, R>) -> Self
source§impl<R> From<SdkError<CreateOpenIDConnectProviderError, R>> for Error
impl<R> From<SdkError<CreateOpenIDConnectProviderError, R>> for Error
source§fn from(err: SdkError<CreateOpenIDConnectProviderError, R>) -> Self
fn from(err: SdkError<CreateOpenIDConnectProviderError, R>) -> Self
source§impl<R> From<SdkError<CreatePolicyError, R>> for Error
impl<R> From<SdkError<CreatePolicyError, R>> for Error
source§fn from(err: SdkError<CreatePolicyError, R>) -> Self
fn from(err: SdkError<CreatePolicyError, R>) -> Self
source§impl<R> From<SdkError<CreatePolicyVersionError, R>> for Error
impl<R> From<SdkError<CreatePolicyVersionError, R>> for Error
source§fn from(err: SdkError<CreatePolicyVersionError, R>) -> Self
fn from(err: SdkError<CreatePolicyVersionError, R>) -> Self
source§impl<R> From<SdkError<CreateRoleError, R>> for Error
impl<R> From<SdkError<CreateRoleError, R>> for Error
source§fn from(err: SdkError<CreateRoleError, R>) -> Self
fn from(err: SdkError<CreateRoleError, R>) -> Self
source§impl<R> From<SdkError<CreateSAMLProviderError, R>> for Error
impl<R> From<SdkError<CreateSAMLProviderError, R>> for Error
source§fn from(err: SdkError<CreateSAMLProviderError, R>) -> Self
fn from(err: SdkError<CreateSAMLProviderError, R>) -> Self
source§impl<R> From<SdkError<CreateServiceLinkedRoleError, R>> for Error
impl<R> From<SdkError<CreateServiceLinkedRoleError, R>> for Error
source§fn from(err: SdkError<CreateServiceLinkedRoleError, R>) -> Self
fn from(err: SdkError<CreateServiceLinkedRoleError, R>) -> Self
source§impl<R> From<SdkError<CreateServiceSpecificCredentialError, R>> for Error
impl<R> From<SdkError<CreateServiceSpecificCredentialError, R>> for Error
source§fn from(err: SdkError<CreateServiceSpecificCredentialError, R>) -> Self
fn from(err: SdkError<CreateServiceSpecificCredentialError, R>) -> Self
source§impl<R> From<SdkError<CreateUserError, R>> for Error
impl<R> From<SdkError<CreateUserError, R>> for Error
source§fn from(err: SdkError<CreateUserError, R>) -> Self
fn from(err: SdkError<CreateUserError, R>) -> Self
source§impl<R> From<SdkError<CreateVirtualMFADeviceError, R>> for Error
impl<R> From<SdkError<CreateVirtualMFADeviceError, R>> for Error
source§fn from(err: SdkError<CreateVirtualMFADeviceError, R>) -> Self
fn from(err: SdkError<CreateVirtualMFADeviceError, R>) -> Self
source§impl<R> From<SdkError<DeactivateMFADeviceError, R>> for Error
impl<R> From<SdkError<DeactivateMFADeviceError, R>> for Error
source§fn from(err: SdkError<DeactivateMFADeviceError, R>) -> Self
fn from(err: SdkError<DeactivateMFADeviceError, R>) -> Self
source§impl<R> From<SdkError<DeleteAccessKeyError, R>> for Error
impl<R> From<SdkError<DeleteAccessKeyError, R>> for Error
source§fn from(err: SdkError<DeleteAccessKeyError, R>) -> Self
fn from(err: SdkError<DeleteAccessKeyError, R>) -> Self
source§impl<R> From<SdkError<DeleteAccountAliasError, R>> for Error
impl<R> From<SdkError<DeleteAccountAliasError, R>> for Error
source§fn from(err: SdkError<DeleteAccountAliasError, R>) -> Self
fn from(err: SdkError<DeleteAccountAliasError, R>) -> Self
source§impl<R> From<SdkError<DeleteAccountPasswordPolicyError, R>> for Error
impl<R> From<SdkError<DeleteAccountPasswordPolicyError, R>> for Error
source§fn from(err: SdkError<DeleteAccountPasswordPolicyError, R>) -> Self
fn from(err: SdkError<DeleteAccountPasswordPolicyError, R>) -> Self
source§impl<R> From<SdkError<DeleteGroupError, R>> for Error
impl<R> From<SdkError<DeleteGroupError, R>> for Error
source§fn from(err: SdkError<DeleteGroupError, R>) -> Self
fn from(err: SdkError<DeleteGroupError, R>) -> Self
source§impl<R> From<SdkError<DeleteGroupPolicyError, R>> for Error
impl<R> From<SdkError<DeleteGroupPolicyError, R>> for Error
source§fn from(err: SdkError<DeleteGroupPolicyError, R>) -> Self
fn from(err: SdkError<DeleteGroupPolicyError, R>) -> Self
source§impl<R> From<SdkError<DeleteInstanceProfileError, R>> for Error
impl<R> From<SdkError<DeleteInstanceProfileError, R>> for Error
source§fn from(err: SdkError<DeleteInstanceProfileError, R>) -> Self
fn from(err: SdkError<DeleteInstanceProfileError, R>) -> Self
source§impl<R> From<SdkError<DeleteLoginProfileError, R>> for Error
impl<R> From<SdkError<DeleteLoginProfileError, R>> for Error
source§fn from(err: SdkError<DeleteLoginProfileError, R>) -> Self
fn from(err: SdkError<DeleteLoginProfileError, R>) -> Self
source§impl<R> From<SdkError<DeleteOpenIDConnectProviderError, R>> for Error
impl<R> From<SdkError<DeleteOpenIDConnectProviderError, R>> for Error
source§fn from(err: SdkError<DeleteOpenIDConnectProviderError, R>) -> Self
fn from(err: SdkError<DeleteOpenIDConnectProviderError, R>) -> Self
source§impl<R> From<SdkError<DeletePolicyError, R>> for Error
impl<R> From<SdkError<DeletePolicyError, R>> for Error
source§fn from(err: SdkError<DeletePolicyError, R>) -> Self
fn from(err: SdkError<DeletePolicyError, R>) -> Self
source§impl<R> From<SdkError<DeletePolicyVersionError, R>> for Error
impl<R> From<SdkError<DeletePolicyVersionError, R>> for Error
source§fn from(err: SdkError<DeletePolicyVersionError, R>) -> Self
fn from(err: SdkError<DeletePolicyVersionError, R>) -> Self
source§impl<R> From<SdkError<DeleteRoleError, R>> for Error
impl<R> From<SdkError<DeleteRoleError, R>> for Error
source§fn from(err: SdkError<DeleteRoleError, R>) -> Self
fn from(err: SdkError<DeleteRoleError, R>) -> Self
source§impl<R> From<SdkError<DeleteRolePermissionsBoundaryError, R>> for Error
impl<R> From<SdkError<DeleteRolePermissionsBoundaryError, R>> for Error
source§fn from(err: SdkError<DeleteRolePermissionsBoundaryError, R>) -> Self
fn from(err: SdkError<DeleteRolePermissionsBoundaryError, R>) -> Self
source§impl<R> From<SdkError<DeleteRolePolicyError, R>> for Error
impl<R> From<SdkError<DeleteRolePolicyError, R>> for Error
source§fn from(err: SdkError<DeleteRolePolicyError, R>) -> Self
fn from(err: SdkError<DeleteRolePolicyError, R>) -> Self
source§impl<R> From<SdkError<DeleteSAMLProviderError, R>> for Error
impl<R> From<SdkError<DeleteSAMLProviderError, R>> for Error
source§fn from(err: SdkError<DeleteSAMLProviderError, R>) -> Self
fn from(err: SdkError<DeleteSAMLProviderError, R>) -> Self
source§impl<R> From<SdkError<DeleteSSHPublicKeyError, R>> for Error
impl<R> From<SdkError<DeleteSSHPublicKeyError, R>> for Error
source§fn from(err: SdkError<DeleteSSHPublicKeyError, R>) -> Self
fn from(err: SdkError<DeleteSSHPublicKeyError, R>) -> Self
source§impl<R> From<SdkError<DeleteServerCertificateError, R>> for Error
impl<R> From<SdkError<DeleteServerCertificateError, R>> for Error
source§fn from(err: SdkError<DeleteServerCertificateError, R>) -> Self
fn from(err: SdkError<DeleteServerCertificateError, R>) -> Self
source§impl<R> From<SdkError<DeleteServiceLinkedRoleError, R>> for Error
impl<R> From<SdkError<DeleteServiceLinkedRoleError, R>> for Error
source§fn from(err: SdkError<DeleteServiceLinkedRoleError, R>) -> Self
fn from(err: SdkError<DeleteServiceLinkedRoleError, R>) -> Self
source§impl<R> From<SdkError<DeleteServiceSpecificCredentialError, R>> for Error
impl<R> From<SdkError<DeleteServiceSpecificCredentialError, R>> for Error
source§fn from(err: SdkError<DeleteServiceSpecificCredentialError, R>) -> Self
fn from(err: SdkError<DeleteServiceSpecificCredentialError, R>) -> Self
source§impl<R> From<SdkError<DeleteSigningCertificateError, R>> for Error
impl<R> From<SdkError<DeleteSigningCertificateError, R>> for Error
source§fn from(err: SdkError<DeleteSigningCertificateError, R>) -> Self
fn from(err: SdkError<DeleteSigningCertificateError, R>) -> Self
source§impl<R> From<SdkError<DeleteUserError, R>> for Error
impl<R> From<SdkError<DeleteUserError, R>> for Error
source§fn from(err: SdkError<DeleteUserError, R>) -> Self
fn from(err: SdkError<DeleteUserError, R>) -> Self
source§impl<R> From<SdkError<DeleteUserPermissionsBoundaryError, R>> for Error
impl<R> From<SdkError<DeleteUserPermissionsBoundaryError, R>> for Error
source§fn from(err: SdkError<DeleteUserPermissionsBoundaryError, R>) -> Self
fn from(err: SdkError<DeleteUserPermissionsBoundaryError, R>) -> Self
source§impl<R> From<SdkError<DeleteUserPolicyError, R>> for Error
impl<R> From<SdkError<DeleteUserPolicyError, R>> for Error
source§fn from(err: SdkError<DeleteUserPolicyError, R>) -> Self
fn from(err: SdkError<DeleteUserPolicyError, R>) -> Self
source§impl<R> From<SdkError<DeleteVirtualMFADeviceError, R>> for Error
impl<R> From<SdkError<DeleteVirtualMFADeviceError, R>> for Error
source§fn from(err: SdkError<DeleteVirtualMFADeviceError, R>) -> Self
fn from(err: SdkError<DeleteVirtualMFADeviceError, R>) -> Self
source§impl<R> From<SdkError<DetachGroupPolicyError, R>> for Error
impl<R> From<SdkError<DetachGroupPolicyError, R>> for Error
source§fn from(err: SdkError<DetachGroupPolicyError, R>) -> Self
fn from(err: SdkError<DetachGroupPolicyError, R>) -> Self
source§impl<R> From<SdkError<DetachRolePolicyError, R>> for Error
impl<R> From<SdkError<DetachRolePolicyError, R>> for Error
source§fn from(err: SdkError<DetachRolePolicyError, R>) -> Self
fn from(err: SdkError<DetachRolePolicyError, R>) -> Self
source§impl<R> From<SdkError<DetachUserPolicyError, R>> for Error
impl<R> From<SdkError<DetachUserPolicyError, R>> for Error
source§fn from(err: SdkError<DetachUserPolicyError, R>) -> Self
fn from(err: SdkError<DetachUserPolicyError, R>) -> Self
source§impl<R> From<SdkError<EnableMFADeviceError, R>> for Error
impl<R> From<SdkError<EnableMFADeviceError, R>> for Error
source§fn from(err: SdkError<EnableMFADeviceError, R>) -> Self
fn from(err: SdkError<EnableMFADeviceError, R>) -> Self
source§impl<R> From<SdkError<GenerateCredentialReportError, R>> for Error
impl<R> From<SdkError<GenerateCredentialReportError, R>> for Error
source§fn from(err: SdkError<GenerateCredentialReportError, R>) -> Self
fn from(err: SdkError<GenerateCredentialReportError, R>) -> Self
source§impl<R> From<SdkError<GenerateOrganizationsAccessReportError, R>> for Error
impl<R> From<SdkError<GenerateOrganizationsAccessReportError, R>> for Error
source§fn from(err: SdkError<GenerateOrganizationsAccessReportError, R>) -> Self
fn from(err: SdkError<GenerateOrganizationsAccessReportError, R>) -> Self
source§impl<R> From<SdkError<GenerateServiceLastAccessedDetailsError, R>> for Error
impl<R> From<SdkError<GenerateServiceLastAccessedDetailsError, R>> for Error
source§fn from(err: SdkError<GenerateServiceLastAccessedDetailsError, R>) -> Self
fn from(err: SdkError<GenerateServiceLastAccessedDetailsError, R>) -> Self
source§impl<R> From<SdkError<GetAccessKeyLastUsedError, R>> for Error
impl<R> From<SdkError<GetAccessKeyLastUsedError, R>> for Error
source§fn from(err: SdkError<GetAccessKeyLastUsedError, R>) -> Self
fn from(err: SdkError<GetAccessKeyLastUsedError, R>) -> Self
source§impl<R> From<SdkError<GetAccountAuthorizationDetailsError, R>> for Error
impl<R> From<SdkError<GetAccountAuthorizationDetailsError, R>> for Error
source§fn from(err: SdkError<GetAccountAuthorizationDetailsError, R>) -> Self
fn from(err: SdkError<GetAccountAuthorizationDetailsError, R>) -> Self
source§impl<R> From<SdkError<GetAccountPasswordPolicyError, R>> for Error
impl<R> From<SdkError<GetAccountPasswordPolicyError, R>> for Error
source§fn from(err: SdkError<GetAccountPasswordPolicyError, R>) -> Self
fn from(err: SdkError<GetAccountPasswordPolicyError, R>) -> Self
source§impl<R> From<SdkError<GetAccountSummaryError, R>> for Error
impl<R> From<SdkError<GetAccountSummaryError, R>> for Error
source§fn from(err: SdkError<GetAccountSummaryError, R>) -> Self
fn from(err: SdkError<GetAccountSummaryError, R>) -> Self
source§impl<R> From<SdkError<GetContextKeysForCustomPolicyError, R>> for Error
impl<R> From<SdkError<GetContextKeysForCustomPolicyError, R>> for Error
source§fn from(err: SdkError<GetContextKeysForCustomPolicyError, R>) -> Self
fn from(err: SdkError<GetContextKeysForCustomPolicyError, R>) -> Self
source§impl<R> From<SdkError<GetContextKeysForPrincipalPolicyError, R>> for Error
impl<R> From<SdkError<GetContextKeysForPrincipalPolicyError, R>> for Error
source§fn from(err: SdkError<GetContextKeysForPrincipalPolicyError, R>) -> Self
fn from(err: SdkError<GetContextKeysForPrincipalPolicyError, R>) -> Self
source§impl<R> From<SdkError<GetCredentialReportError, R>> for Error
impl<R> From<SdkError<GetCredentialReportError, R>> for Error
source§fn from(err: SdkError<GetCredentialReportError, R>) -> Self
fn from(err: SdkError<GetCredentialReportError, R>) -> Self
source§impl<R> From<SdkError<GetGroupError, R>> for Error
impl<R> From<SdkError<GetGroupError, R>> for Error
source§fn from(err: SdkError<GetGroupError, R>) -> Self
fn from(err: SdkError<GetGroupError, R>) -> Self
source§impl<R> From<SdkError<GetGroupPolicyError, R>> for Error
impl<R> From<SdkError<GetGroupPolicyError, R>> for Error
source§fn from(err: SdkError<GetGroupPolicyError, R>) -> Self
fn from(err: SdkError<GetGroupPolicyError, R>) -> Self
source§impl<R> From<SdkError<GetInstanceProfileError, R>> for Error
impl<R> From<SdkError<GetInstanceProfileError, R>> for Error
source§fn from(err: SdkError<GetInstanceProfileError, R>) -> Self
fn from(err: SdkError<GetInstanceProfileError, R>) -> Self
source§impl<R> From<SdkError<GetLoginProfileError, R>> for Error
impl<R> From<SdkError<GetLoginProfileError, R>> for Error
source§fn from(err: SdkError<GetLoginProfileError, R>) -> Self
fn from(err: SdkError<GetLoginProfileError, R>) -> Self
source§impl<R> From<SdkError<GetMFADeviceError, R>> for Error
impl<R> From<SdkError<GetMFADeviceError, R>> for Error
source§fn from(err: SdkError<GetMFADeviceError, R>) -> Self
fn from(err: SdkError<GetMFADeviceError, R>) -> Self
source§impl<R> From<SdkError<GetOpenIDConnectProviderError, R>> for Error
impl<R> From<SdkError<GetOpenIDConnectProviderError, R>> for Error
source§fn from(err: SdkError<GetOpenIDConnectProviderError, R>) -> Self
fn from(err: SdkError<GetOpenIDConnectProviderError, R>) -> Self
source§impl<R> From<SdkError<GetOrganizationsAccessReportError, R>> for Error
impl<R> From<SdkError<GetOrganizationsAccessReportError, R>> for Error
source§fn from(err: SdkError<GetOrganizationsAccessReportError, R>) -> Self
fn from(err: SdkError<GetOrganizationsAccessReportError, R>) -> Self
source§impl<R> From<SdkError<GetPolicyError, R>> for Error
impl<R> From<SdkError<GetPolicyError, R>> for Error
source§fn from(err: SdkError<GetPolicyError, R>) -> Self
fn from(err: SdkError<GetPolicyError, R>) -> Self
source§impl<R> From<SdkError<GetPolicyVersionError, R>> for Error
impl<R> From<SdkError<GetPolicyVersionError, R>> for Error
source§fn from(err: SdkError<GetPolicyVersionError, R>) -> Self
fn from(err: SdkError<GetPolicyVersionError, R>) -> Self
source§impl<R> From<SdkError<GetRoleError, R>> for Error
impl<R> From<SdkError<GetRoleError, R>> for Error
source§fn from(err: SdkError<GetRoleError, R>) -> Self
fn from(err: SdkError<GetRoleError, R>) -> Self
source§impl<R> From<SdkError<GetRolePolicyError, R>> for Error
impl<R> From<SdkError<GetRolePolicyError, R>> for Error
source§fn from(err: SdkError<GetRolePolicyError, R>) -> Self
fn from(err: SdkError<GetRolePolicyError, R>) -> Self
source§impl<R> From<SdkError<GetSAMLProviderError, R>> for Error
impl<R> From<SdkError<GetSAMLProviderError, R>> for Error
source§fn from(err: SdkError<GetSAMLProviderError, R>) -> Self
fn from(err: SdkError<GetSAMLProviderError, R>) -> Self
source§impl<R> From<SdkError<GetSSHPublicKeyError, R>> for Error
impl<R> From<SdkError<GetSSHPublicKeyError, R>> for Error
source§fn from(err: SdkError<GetSSHPublicKeyError, R>) -> Self
fn from(err: SdkError<GetSSHPublicKeyError, R>) -> Self
source§impl<R> From<SdkError<GetServerCertificateError, R>> for Error
impl<R> From<SdkError<GetServerCertificateError, R>> for Error
source§fn from(err: SdkError<GetServerCertificateError, R>) -> Self
fn from(err: SdkError<GetServerCertificateError, R>) -> Self
source§impl<R> From<SdkError<GetServiceLastAccessedDetailsError, R>> for Error
impl<R> From<SdkError<GetServiceLastAccessedDetailsError, R>> for Error
source§fn from(err: SdkError<GetServiceLastAccessedDetailsError, R>) -> Self
fn from(err: SdkError<GetServiceLastAccessedDetailsError, R>) -> Self
source§impl<R> From<SdkError<GetServiceLastAccessedDetailsWithEntitiesError, R>> for Error
impl<R> From<SdkError<GetServiceLastAccessedDetailsWithEntitiesError, R>> for Error
source§fn from(
err: SdkError<GetServiceLastAccessedDetailsWithEntitiesError, R>,
) -> Self
fn from( err: SdkError<GetServiceLastAccessedDetailsWithEntitiesError, R>, ) -> Self
source§impl<R> From<SdkError<GetServiceLinkedRoleDeletionStatusError, R>> for Error
impl<R> From<SdkError<GetServiceLinkedRoleDeletionStatusError, R>> for Error
source§fn from(err: SdkError<GetServiceLinkedRoleDeletionStatusError, R>) -> Self
fn from(err: SdkError<GetServiceLinkedRoleDeletionStatusError, R>) -> Self
source§impl<R> From<SdkError<GetUserError, R>> for Error
impl<R> From<SdkError<GetUserError, R>> for Error
source§fn from(err: SdkError<GetUserError, R>) -> Self
fn from(err: SdkError<GetUserError, R>) -> Self
source§impl<R> From<SdkError<GetUserPolicyError, R>> for Error
impl<R> From<SdkError<GetUserPolicyError, R>> for Error
source§fn from(err: SdkError<GetUserPolicyError, R>) -> Self
fn from(err: SdkError<GetUserPolicyError, R>) -> Self
source§impl<R> From<SdkError<ListAccessKeysError, R>> for Error
impl<R> From<SdkError<ListAccessKeysError, R>> for Error
source§fn from(err: SdkError<ListAccessKeysError, R>) -> Self
fn from(err: SdkError<ListAccessKeysError, R>) -> Self
source§impl<R> From<SdkError<ListAccountAliasesError, R>> for Error
impl<R> From<SdkError<ListAccountAliasesError, R>> for Error
source§fn from(err: SdkError<ListAccountAliasesError, R>) -> Self
fn from(err: SdkError<ListAccountAliasesError, R>) -> Self
source§impl<R> From<SdkError<ListAttachedGroupPoliciesError, R>> for Error
impl<R> From<SdkError<ListAttachedGroupPoliciesError, R>> for Error
source§fn from(err: SdkError<ListAttachedGroupPoliciesError, R>) -> Self
fn from(err: SdkError<ListAttachedGroupPoliciesError, R>) -> Self
source§impl<R> From<SdkError<ListAttachedRolePoliciesError, R>> for Error
impl<R> From<SdkError<ListAttachedRolePoliciesError, R>> for Error
source§fn from(err: SdkError<ListAttachedRolePoliciesError, R>) -> Self
fn from(err: SdkError<ListAttachedRolePoliciesError, R>) -> Self
source§impl<R> From<SdkError<ListAttachedUserPoliciesError, R>> for Error
impl<R> From<SdkError<ListAttachedUserPoliciesError, R>> for Error
source§fn from(err: SdkError<ListAttachedUserPoliciesError, R>) -> Self
fn from(err: SdkError<ListAttachedUserPoliciesError, R>) -> Self
source§impl<R> From<SdkError<ListEntitiesForPolicyError, R>> for Error
impl<R> From<SdkError<ListEntitiesForPolicyError, R>> for Error
source§fn from(err: SdkError<ListEntitiesForPolicyError, R>) -> Self
fn from(err: SdkError<ListEntitiesForPolicyError, R>) -> Self
source§impl<R> From<SdkError<ListGroupPoliciesError, R>> for Error
impl<R> From<SdkError<ListGroupPoliciesError, R>> for Error
source§fn from(err: SdkError<ListGroupPoliciesError, R>) -> Self
fn from(err: SdkError<ListGroupPoliciesError, R>) -> Self
source§impl<R> From<SdkError<ListGroupsError, R>> for Error
impl<R> From<SdkError<ListGroupsError, R>> for Error
source§fn from(err: SdkError<ListGroupsError, R>) -> Self
fn from(err: SdkError<ListGroupsError, R>) -> Self
source§impl<R> From<SdkError<ListGroupsForUserError, R>> for Error
impl<R> From<SdkError<ListGroupsForUserError, R>> for Error
source§fn from(err: SdkError<ListGroupsForUserError, R>) -> Self
fn from(err: SdkError<ListGroupsForUserError, R>) -> Self
source§impl<R> From<SdkError<ListInstanceProfileTagsError, R>> for Error
impl<R> From<SdkError<ListInstanceProfileTagsError, R>> for Error
source§fn from(err: SdkError<ListInstanceProfileTagsError, R>) -> Self
fn from(err: SdkError<ListInstanceProfileTagsError, R>) -> Self
source§impl<R> From<SdkError<ListInstanceProfilesError, R>> for Error
impl<R> From<SdkError<ListInstanceProfilesError, R>> for Error
source§fn from(err: SdkError<ListInstanceProfilesError, R>) -> Self
fn from(err: SdkError<ListInstanceProfilesError, R>) -> Self
source§impl<R> From<SdkError<ListInstanceProfilesForRoleError, R>> for Error
impl<R> From<SdkError<ListInstanceProfilesForRoleError, R>> for Error
source§fn from(err: SdkError<ListInstanceProfilesForRoleError, R>) -> Self
fn from(err: SdkError<ListInstanceProfilesForRoleError, R>) -> Self
source§impl<R> From<SdkError<ListMFADeviceTagsError, R>> for Error
impl<R> From<SdkError<ListMFADeviceTagsError, R>> for Error
source§fn from(err: SdkError<ListMFADeviceTagsError, R>) -> Self
fn from(err: SdkError<ListMFADeviceTagsError, R>) -> Self
source§impl<R> From<SdkError<ListMFADevicesError, R>> for Error
impl<R> From<SdkError<ListMFADevicesError, R>> for Error
source§fn from(err: SdkError<ListMFADevicesError, R>) -> Self
fn from(err: SdkError<ListMFADevicesError, R>) -> Self
source§impl<R> From<SdkError<ListOpenIDConnectProviderTagsError, R>> for Error
impl<R> From<SdkError<ListOpenIDConnectProviderTagsError, R>> for Error
source§fn from(err: SdkError<ListOpenIDConnectProviderTagsError, R>) -> Self
fn from(err: SdkError<ListOpenIDConnectProviderTagsError, R>) -> Self
source§impl<R> From<SdkError<ListOpenIDConnectProvidersError, R>> for Error
impl<R> From<SdkError<ListOpenIDConnectProvidersError, R>> for Error
source§fn from(err: SdkError<ListOpenIDConnectProvidersError, R>) -> Self
fn from(err: SdkError<ListOpenIDConnectProvidersError, R>) -> Self
source§impl<R> From<SdkError<ListPoliciesError, R>> for Error
impl<R> From<SdkError<ListPoliciesError, R>> for Error
source§fn from(err: SdkError<ListPoliciesError, R>) -> Self
fn from(err: SdkError<ListPoliciesError, R>) -> Self
source§impl<R> From<SdkError<ListPoliciesGrantingServiceAccessError, R>> for Error
impl<R> From<SdkError<ListPoliciesGrantingServiceAccessError, R>> for Error
source§fn from(err: SdkError<ListPoliciesGrantingServiceAccessError, R>) -> Self
fn from(err: SdkError<ListPoliciesGrantingServiceAccessError, R>) -> Self
source§impl<R> From<SdkError<ListPolicyTagsError, R>> for Error
impl<R> From<SdkError<ListPolicyTagsError, R>> for Error
source§fn from(err: SdkError<ListPolicyTagsError, R>) -> Self
fn from(err: SdkError<ListPolicyTagsError, R>) -> Self
source§impl<R> From<SdkError<ListPolicyVersionsError, R>> for Error
impl<R> From<SdkError<ListPolicyVersionsError, R>> for Error
source§fn from(err: SdkError<ListPolicyVersionsError, R>) -> Self
fn from(err: SdkError<ListPolicyVersionsError, R>) -> Self
source§impl<R> From<SdkError<ListRolePoliciesError, R>> for Error
impl<R> From<SdkError<ListRolePoliciesError, R>> for Error
source§fn from(err: SdkError<ListRolePoliciesError, R>) -> Self
fn from(err: SdkError<ListRolePoliciesError, R>) -> Self
source§impl<R> From<SdkError<ListRoleTagsError, R>> for Error
impl<R> From<SdkError<ListRoleTagsError, R>> for Error
source§fn from(err: SdkError<ListRoleTagsError, R>) -> Self
fn from(err: SdkError<ListRoleTagsError, R>) -> Self
source§impl<R> From<SdkError<ListRolesError, R>> for Error
impl<R> From<SdkError<ListRolesError, R>> for Error
source§fn from(err: SdkError<ListRolesError, R>) -> Self
fn from(err: SdkError<ListRolesError, R>) -> Self
source§impl<R> From<SdkError<ListSAMLProviderTagsError, R>> for Error
impl<R> From<SdkError<ListSAMLProviderTagsError, R>> for Error
source§fn from(err: SdkError<ListSAMLProviderTagsError, R>) -> Self
fn from(err: SdkError<ListSAMLProviderTagsError, R>) -> Self
source§impl<R> From<SdkError<ListSAMLProvidersError, R>> for Error
impl<R> From<SdkError<ListSAMLProvidersError, R>> for Error
source§fn from(err: SdkError<ListSAMLProvidersError, R>) -> Self
fn from(err: SdkError<ListSAMLProvidersError, R>) -> Self
source§impl<R> From<SdkError<ListSSHPublicKeysError, R>> for Error
impl<R> From<SdkError<ListSSHPublicKeysError, R>> for Error
source§fn from(err: SdkError<ListSSHPublicKeysError, R>) -> Self
fn from(err: SdkError<ListSSHPublicKeysError, R>) -> Self
source§impl<R> From<SdkError<ListServerCertificateTagsError, R>> for Error
impl<R> From<SdkError<ListServerCertificateTagsError, R>> for Error
source§fn from(err: SdkError<ListServerCertificateTagsError, R>) -> Self
fn from(err: SdkError<ListServerCertificateTagsError, R>) -> Self
source§impl<R> From<SdkError<ListServerCertificatesError, R>> for Error
impl<R> From<SdkError<ListServerCertificatesError, R>> for Error
source§fn from(err: SdkError<ListServerCertificatesError, R>) -> Self
fn from(err: SdkError<ListServerCertificatesError, R>) -> Self
source§impl<R> From<SdkError<ListServiceSpecificCredentialsError, R>> for Error
impl<R> From<SdkError<ListServiceSpecificCredentialsError, R>> for Error
source§fn from(err: SdkError<ListServiceSpecificCredentialsError, R>) -> Self
fn from(err: SdkError<ListServiceSpecificCredentialsError, R>) -> Self
source§impl<R> From<SdkError<ListSigningCertificatesError, R>> for Error
impl<R> From<SdkError<ListSigningCertificatesError, R>> for Error
source§fn from(err: SdkError<ListSigningCertificatesError, R>) -> Self
fn from(err: SdkError<ListSigningCertificatesError, R>) -> Self
source§impl<R> From<SdkError<ListUserPoliciesError, R>> for Error
impl<R> From<SdkError<ListUserPoliciesError, R>> for Error
source§fn from(err: SdkError<ListUserPoliciesError, R>) -> Self
fn from(err: SdkError<ListUserPoliciesError, R>) -> Self
source§impl<R> From<SdkError<ListUserTagsError, R>> for Error
impl<R> From<SdkError<ListUserTagsError, R>> for Error
source§fn from(err: SdkError<ListUserTagsError, R>) -> Self
fn from(err: SdkError<ListUserTagsError, R>) -> Self
source§impl<R> From<SdkError<ListUsersError, R>> for Error
impl<R> From<SdkError<ListUsersError, R>> for Error
source§fn from(err: SdkError<ListUsersError, R>) -> Self
fn from(err: SdkError<ListUsersError, R>) -> Self
source§impl<R> From<SdkError<ListVirtualMFADevicesError, R>> for Error
impl<R> From<SdkError<ListVirtualMFADevicesError, R>> for Error
source§fn from(err: SdkError<ListVirtualMFADevicesError, R>) -> Self
fn from(err: SdkError<ListVirtualMFADevicesError, R>) -> Self
source§impl<R> From<SdkError<PutGroupPolicyError, R>> for Error
impl<R> From<SdkError<PutGroupPolicyError, R>> for Error
source§fn from(err: SdkError<PutGroupPolicyError, R>) -> Self
fn from(err: SdkError<PutGroupPolicyError, R>) -> Self
source§impl<R> From<SdkError<PutRolePermissionsBoundaryError, R>> for Error
impl<R> From<SdkError<PutRolePermissionsBoundaryError, R>> for Error
source§fn from(err: SdkError<PutRolePermissionsBoundaryError, R>) -> Self
fn from(err: SdkError<PutRolePermissionsBoundaryError, R>) -> Self
source§impl<R> From<SdkError<PutRolePolicyError, R>> for Error
impl<R> From<SdkError<PutRolePolicyError, R>> for Error
source§fn from(err: SdkError<PutRolePolicyError, R>) -> Self
fn from(err: SdkError<PutRolePolicyError, R>) -> Self
source§impl<R> From<SdkError<PutUserPermissionsBoundaryError, R>> for Error
impl<R> From<SdkError<PutUserPermissionsBoundaryError, R>> for Error
source§fn from(err: SdkError<PutUserPermissionsBoundaryError, R>) -> Self
fn from(err: SdkError<PutUserPermissionsBoundaryError, R>) -> Self
source§impl<R> From<SdkError<PutUserPolicyError, R>> for Error
impl<R> From<SdkError<PutUserPolicyError, R>> for Error
source§fn from(err: SdkError<PutUserPolicyError, R>) -> Self
fn from(err: SdkError<PutUserPolicyError, R>) -> Self
source§impl<R> From<SdkError<RemoveClientIDFromOpenIDConnectProviderError, R>> for Error
impl<R> From<SdkError<RemoveClientIDFromOpenIDConnectProviderError, R>> for Error
source§fn from(err: SdkError<RemoveClientIDFromOpenIDConnectProviderError, R>) -> Self
fn from(err: SdkError<RemoveClientIDFromOpenIDConnectProviderError, R>) -> Self
source§impl<R> From<SdkError<RemoveRoleFromInstanceProfileError, R>> for Error
impl<R> From<SdkError<RemoveRoleFromInstanceProfileError, R>> for Error
source§fn from(err: SdkError<RemoveRoleFromInstanceProfileError, R>) -> Self
fn from(err: SdkError<RemoveRoleFromInstanceProfileError, R>) -> Self
source§impl<R> From<SdkError<RemoveUserFromGroupError, R>> for Error
impl<R> From<SdkError<RemoveUserFromGroupError, R>> for Error
source§fn from(err: SdkError<RemoveUserFromGroupError, R>) -> Self
fn from(err: SdkError<RemoveUserFromGroupError, R>) -> Self
source§impl<R> From<SdkError<ResetServiceSpecificCredentialError, R>> for Error
impl<R> From<SdkError<ResetServiceSpecificCredentialError, R>> for Error
source§fn from(err: SdkError<ResetServiceSpecificCredentialError, R>) -> Self
fn from(err: SdkError<ResetServiceSpecificCredentialError, R>) -> Self
source§impl<R> From<SdkError<ResyncMFADeviceError, R>> for Error
impl<R> From<SdkError<ResyncMFADeviceError, R>> for Error
source§fn from(err: SdkError<ResyncMFADeviceError, R>) -> Self
fn from(err: SdkError<ResyncMFADeviceError, R>) -> Self
source§impl<R> From<SdkError<SetDefaultPolicyVersionError, R>> for Error
impl<R> From<SdkError<SetDefaultPolicyVersionError, R>> for Error
source§fn from(err: SdkError<SetDefaultPolicyVersionError, R>) -> Self
fn from(err: SdkError<SetDefaultPolicyVersionError, R>) -> Self
source§impl<R> From<SdkError<SetSecurityTokenServicePreferencesError, R>> for Error
impl<R> From<SdkError<SetSecurityTokenServicePreferencesError, R>> for Error
source§fn from(err: SdkError<SetSecurityTokenServicePreferencesError, R>) -> Self
fn from(err: SdkError<SetSecurityTokenServicePreferencesError, R>) -> Self
source§impl<R> From<SdkError<SimulateCustomPolicyError, R>> for Error
impl<R> From<SdkError<SimulateCustomPolicyError, R>> for Error
source§fn from(err: SdkError<SimulateCustomPolicyError, R>) -> Self
fn from(err: SdkError<SimulateCustomPolicyError, R>) -> Self
source§impl<R> From<SdkError<SimulatePrincipalPolicyError, R>> for Error
impl<R> From<SdkError<SimulatePrincipalPolicyError, R>> for Error
source§fn from(err: SdkError<SimulatePrincipalPolicyError, R>) -> Self
fn from(err: SdkError<SimulatePrincipalPolicyError, R>) -> Self
source§impl<R> From<SdkError<TagInstanceProfileError, R>> for Error
impl<R> From<SdkError<TagInstanceProfileError, R>> for Error
source§fn from(err: SdkError<TagInstanceProfileError, R>) -> Self
fn from(err: SdkError<TagInstanceProfileError, R>) -> Self
source§impl<R> From<SdkError<TagMFADeviceError, R>> for Error
impl<R> From<SdkError<TagMFADeviceError, R>> for Error
source§fn from(err: SdkError<TagMFADeviceError, R>) -> Self
fn from(err: SdkError<TagMFADeviceError, R>) -> Self
source§impl<R> From<SdkError<TagOpenIDConnectProviderError, R>> for Error
impl<R> From<SdkError<TagOpenIDConnectProviderError, R>> for Error
source§fn from(err: SdkError<TagOpenIDConnectProviderError, R>) -> Self
fn from(err: SdkError<TagOpenIDConnectProviderError, R>) -> Self
source§impl<R> From<SdkError<TagPolicyError, R>> for Error
impl<R> From<SdkError<TagPolicyError, R>> for Error
source§fn from(err: SdkError<TagPolicyError, R>) -> Self
fn from(err: SdkError<TagPolicyError, R>) -> Self
source§impl<R> From<SdkError<TagRoleError, R>> for Error
impl<R> From<SdkError<TagRoleError, R>> for Error
source§fn from(err: SdkError<TagRoleError, R>) -> Self
fn from(err: SdkError<TagRoleError, R>) -> Self
source§impl<R> From<SdkError<TagSAMLProviderError, R>> for Error
impl<R> From<SdkError<TagSAMLProviderError, R>> for Error
source§fn from(err: SdkError<TagSAMLProviderError, R>) -> Self
fn from(err: SdkError<TagSAMLProviderError, R>) -> Self
source§impl<R> From<SdkError<TagServerCertificateError, R>> for Error
impl<R> From<SdkError<TagServerCertificateError, R>> for Error
source§fn from(err: SdkError<TagServerCertificateError, R>) -> Self
fn from(err: SdkError<TagServerCertificateError, R>) -> Self
source§impl<R> From<SdkError<TagUserError, R>> for Error
impl<R> From<SdkError<TagUserError, R>> for Error
source§fn from(err: SdkError<TagUserError, R>) -> Self
fn from(err: SdkError<TagUserError, R>) -> Self
source§impl<R> From<SdkError<UntagInstanceProfileError, R>> for Error
impl<R> From<SdkError<UntagInstanceProfileError, R>> for Error
source§fn from(err: SdkError<UntagInstanceProfileError, R>) -> Self
fn from(err: SdkError<UntagInstanceProfileError, R>) -> Self
source§impl<R> From<SdkError<UntagMFADeviceError, R>> for Error
impl<R> From<SdkError<UntagMFADeviceError, R>> for Error
source§fn from(err: SdkError<UntagMFADeviceError, R>) -> Self
fn from(err: SdkError<UntagMFADeviceError, R>) -> Self
source§impl<R> From<SdkError<UntagOpenIDConnectProviderError, R>> for Error
impl<R> From<SdkError<UntagOpenIDConnectProviderError, R>> for Error
source§fn from(err: SdkError<UntagOpenIDConnectProviderError, R>) -> Self
fn from(err: SdkError<UntagOpenIDConnectProviderError, R>) -> Self
source§impl<R> From<SdkError<UntagPolicyError, R>> for Error
impl<R> From<SdkError<UntagPolicyError, R>> for Error
source§fn from(err: SdkError<UntagPolicyError, R>) -> Self
fn from(err: SdkError<UntagPolicyError, R>) -> Self
source§impl<R> From<SdkError<UntagRoleError, R>> for Error
impl<R> From<SdkError<UntagRoleError, R>> for Error
source§fn from(err: SdkError<UntagRoleError, R>) -> Self
fn from(err: SdkError<UntagRoleError, R>) -> Self
source§impl<R> From<SdkError<UntagSAMLProviderError, R>> for Error
impl<R> From<SdkError<UntagSAMLProviderError, R>> for Error
source§fn from(err: SdkError<UntagSAMLProviderError, R>) -> Self
fn from(err: SdkError<UntagSAMLProviderError, R>) -> Self
source§impl<R> From<SdkError<UntagServerCertificateError, R>> for Error
impl<R> From<SdkError<UntagServerCertificateError, R>> for Error
source§fn from(err: SdkError<UntagServerCertificateError, R>) -> Self
fn from(err: SdkError<UntagServerCertificateError, R>) -> Self
source§impl<R> From<SdkError<UntagUserError, R>> for Error
impl<R> From<SdkError<UntagUserError, R>> for Error
source§fn from(err: SdkError<UntagUserError, R>) -> Self
fn from(err: SdkError<UntagUserError, R>) -> Self
source§impl<R> From<SdkError<UpdateAccessKeyError, R>> for Error
impl<R> From<SdkError<UpdateAccessKeyError, R>> for Error
source§fn from(err: SdkError<UpdateAccessKeyError, R>) -> Self
fn from(err: SdkError<UpdateAccessKeyError, R>) -> Self
source§impl<R> From<SdkError<UpdateAccountPasswordPolicyError, R>> for Error
impl<R> From<SdkError<UpdateAccountPasswordPolicyError, R>> for Error
source§fn from(err: SdkError<UpdateAccountPasswordPolicyError, R>) -> Self
fn from(err: SdkError<UpdateAccountPasswordPolicyError, R>) -> Self
source§impl<R> From<SdkError<UpdateAssumeRolePolicyError, R>> for Error
impl<R> From<SdkError<UpdateAssumeRolePolicyError, R>> for Error
source§fn from(err: SdkError<UpdateAssumeRolePolicyError, R>) -> Self
fn from(err: SdkError<UpdateAssumeRolePolicyError, R>) -> Self
source§impl<R> From<SdkError<UpdateGroupError, R>> for Error
impl<R> From<SdkError<UpdateGroupError, R>> for Error
source§fn from(err: SdkError<UpdateGroupError, R>) -> Self
fn from(err: SdkError<UpdateGroupError, R>) -> Self
source§impl<R> From<SdkError<UpdateLoginProfileError, R>> for Error
impl<R> From<SdkError<UpdateLoginProfileError, R>> for Error
source§fn from(err: SdkError<UpdateLoginProfileError, R>) -> Self
fn from(err: SdkError<UpdateLoginProfileError, R>) -> Self
source§impl<R> From<SdkError<UpdateOpenIDConnectProviderThumbprintError, R>> for Error
impl<R> From<SdkError<UpdateOpenIDConnectProviderThumbprintError, R>> for Error
source§fn from(err: SdkError<UpdateOpenIDConnectProviderThumbprintError, R>) -> Self
fn from(err: SdkError<UpdateOpenIDConnectProviderThumbprintError, R>) -> Self
source§impl<R> From<SdkError<UpdateRoleDescriptionError, R>> for Error
impl<R> From<SdkError<UpdateRoleDescriptionError, R>> for Error
source§fn from(err: SdkError<UpdateRoleDescriptionError, R>) -> Self
fn from(err: SdkError<UpdateRoleDescriptionError, R>) -> Self
source§impl<R> From<SdkError<UpdateRoleError, R>> for Error
impl<R> From<SdkError<UpdateRoleError, R>> for Error
source§fn from(err: SdkError<UpdateRoleError, R>) -> Self
fn from(err: SdkError<UpdateRoleError, R>) -> Self
source§impl<R> From<SdkError<UpdateSAMLProviderError, R>> for Error
impl<R> From<SdkError<UpdateSAMLProviderError, R>> for Error
source§fn from(err: SdkError<UpdateSAMLProviderError, R>) -> Self
fn from(err: SdkError<UpdateSAMLProviderError, R>) -> Self
source§impl<R> From<SdkError<UpdateSSHPublicKeyError, R>> for Error
impl<R> From<SdkError<UpdateSSHPublicKeyError, R>> for Error
source§fn from(err: SdkError<UpdateSSHPublicKeyError, R>) -> Self
fn from(err: SdkError<UpdateSSHPublicKeyError, R>) -> Self
source§impl<R> From<SdkError<UpdateServerCertificateError, R>> for Error
impl<R> From<SdkError<UpdateServerCertificateError, R>> for Error
source§fn from(err: SdkError<UpdateServerCertificateError, R>) -> Self
fn from(err: SdkError<UpdateServerCertificateError, R>) -> Self
source§impl<R> From<SdkError<UpdateServiceSpecificCredentialError, R>> for Error
impl<R> From<SdkError<UpdateServiceSpecificCredentialError, R>> for Error
source§fn from(err: SdkError<UpdateServiceSpecificCredentialError, R>) -> Self
fn from(err: SdkError<UpdateServiceSpecificCredentialError, R>) -> Self
source§impl<R> From<SdkError<UpdateSigningCertificateError, R>> for Error
impl<R> From<SdkError<UpdateSigningCertificateError, R>> for Error
source§fn from(err: SdkError<UpdateSigningCertificateError, R>) -> Self
fn from(err: SdkError<UpdateSigningCertificateError, R>) -> Self
source§impl<R> From<SdkError<UpdateUserError, R>> for Error
impl<R> From<SdkError<UpdateUserError, R>> for Error
source§fn from(err: SdkError<UpdateUserError, R>) -> Self
fn from(err: SdkError<UpdateUserError, R>) -> Self
source§impl<R> From<SdkError<UploadSSHPublicKeyError, R>> for Error
impl<R> From<SdkError<UploadSSHPublicKeyError, R>> for Error
source§fn from(err: SdkError<UploadSSHPublicKeyError, R>) -> Self
fn from(err: SdkError<UploadSSHPublicKeyError, R>) -> Self
source§impl<R> From<SdkError<UploadServerCertificateError, R>> for Error
impl<R> From<SdkError<UploadServerCertificateError, R>> for Error
source§fn from(err: SdkError<UploadServerCertificateError, R>) -> Self
fn from(err: SdkError<UploadServerCertificateError, R>) -> Self
source§impl<R> From<SdkError<UploadSigningCertificateError, R>> for Error
impl<R> From<SdkError<UploadSigningCertificateError, R>> for Error
source§fn from(err: SdkError<UploadSigningCertificateError, R>) -> Self
fn from(err: SdkError<UploadSigningCertificateError, R>) -> Self
source§impl From<SetDefaultPolicyVersionError> for Error
impl From<SetDefaultPolicyVersionError> for Error
source§fn from(err: SetDefaultPolicyVersionError) -> Self
fn from(err: SetDefaultPolicyVersionError) -> Self
source§impl From<SetSecurityTokenServicePreferencesError> for Error
impl From<SetSecurityTokenServicePreferencesError> for Error
source§fn from(err: SetSecurityTokenServicePreferencesError) -> Self
fn from(err: SetSecurityTokenServicePreferencesError) -> Self
source§impl From<SimulateCustomPolicyError> for Error
impl From<SimulateCustomPolicyError> for Error
source§fn from(err: SimulateCustomPolicyError) -> Self
fn from(err: SimulateCustomPolicyError) -> Self
source§impl From<SimulatePrincipalPolicyError> for Error
impl From<SimulatePrincipalPolicyError> for Error
source§fn from(err: SimulatePrincipalPolicyError) -> Self
fn from(err: SimulatePrincipalPolicyError) -> Self
source§impl From<TagInstanceProfileError> for Error
impl From<TagInstanceProfileError> for Error
source§fn from(err: TagInstanceProfileError) -> Self
fn from(err: TagInstanceProfileError) -> Self
source§impl From<TagMFADeviceError> for Error
impl From<TagMFADeviceError> for Error
source§fn from(err: TagMFADeviceError) -> Self
fn from(err: TagMFADeviceError) -> Self
source§impl From<TagOpenIDConnectProviderError> for Error
impl From<TagOpenIDConnectProviderError> for Error
source§fn from(err: TagOpenIDConnectProviderError) -> Self
fn from(err: TagOpenIDConnectProviderError) -> Self
source§impl From<TagPolicyError> for Error
impl From<TagPolicyError> for Error
source§fn from(err: TagPolicyError) -> Self
fn from(err: TagPolicyError) -> Self
source§impl From<TagRoleError> for Error
impl From<TagRoleError> for Error
source§fn from(err: TagRoleError) -> Self
fn from(err: TagRoleError) -> Self
source§impl From<TagSAMLProviderError> for Error
impl From<TagSAMLProviderError> for Error
source§fn from(err: TagSAMLProviderError) -> Self
fn from(err: TagSAMLProviderError) -> Self
source§impl From<TagServerCertificateError> for Error
impl From<TagServerCertificateError> for Error
source§fn from(err: TagServerCertificateError) -> Self
fn from(err: TagServerCertificateError) -> Self
source§impl From<TagUserError> for Error
impl From<TagUserError> for Error
source§fn from(err: TagUserError) -> Self
fn from(err: TagUserError) -> Self
source§impl From<UntagInstanceProfileError> for Error
impl From<UntagInstanceProfileError> for Error
source§fn from(err: UntagInstanceProfileError) -> Self
fn from(err: UntagInstanceProfileError) -> Self
source§impl From<UntagMFADeviceError> for Error
impl From<UntagMFADeviceError> for Error
source§fn from(err: UntagMFADeviceError) -> Self
fn from(err: UntagMFADeviceError) -> Self
source§impl From<UntagOpenIDConnectProviderError> for Error
impl From<UntagOpenIDConnectProviderError> for Error
source§fn from(err: UntagOpenIDConnectProviderError) -> Self
fn from(err: UntagOpenIDConnectProviderError) -> Self
source§impl From<UntagPolicyError> for Error
impl From<UntagPolicyError> for Error
source§fn from(err: UntagPolicyError) -> Self
fn from(err: UntagPolicyError) -> Self
source§impl From<UntagRoleError> for Error
impl From<UntagRoleError> for Error
source§fn from(err: UntagRoleError) -> Self
fn from(err: UntagRoleError) -> Self
source§impl From<UntagSAMLProviderError> for Error
impl From<UntagSAMLProviderError> for Error
source§fn from(err: UntagSAMLProviderError) -> Self
fn from(err: UntagSAMLProviderError) -> Self
source§impl From<UntagServerCertificateError> for Error
impl From<UntagServerCertificateError> for Error
source§fn from(err: UntagServerCertificateError) -> Self
fn from(err: UntagServerCertificateError) -> Self
source§impl From<UntagUserError> for Error
impl From<UntagUserError> for Error
source§fn from(err: UntagUserError) -> Self
fn from(err: UntagUserError) -> Self
source§impl From<UpdateAccessKeyError> for Error
impl From<UpdateAccessKeyError> for Error
source§fn from(err: UpdateAccessKeyError) -> Self
fn from(err: UpdateAccessKeyError) -> Self
source§impl From<UpdateAccountPasswordPolicyError> for Error
impl From<UpdateAccountPasswordPolicyError> for Error
source§fn from(err: UpdateAccountPasswordPolicyError) -> Self
fn from(err: UpdateAccountPasswordPolicyError) -> Self
source§impl From<UpdateAssumeRolePolicyError> for Error
impl From<UpdateAssumeRolePolicyError> for Error
source§fn from(err: UpdateAssumeRolePolicyError) -> Self
fn from(err: UpdateAssumeRolePolicyError) -> Self
source§impl From<UpdateGroupError> for Error
impl From<UpdateGroupError> for Error
source§fn from(err: UpdateGroupError) -> Self
fn from(err: UpdateGroupError) -> Self
source§impl From<UpdateLoginProfileError> for Error
impl From<UpdateLoginProfileError> for Error
source§fn from(err: UpdateLoginProfileError) -> Self
fn from(err: UpdateLoginProfileError) -> Self
source§impl From<UpdateOpenIDConnectProviderThumbprintError> for Error
impl From<UpdateOpenIDConnectProviderThumbprintError> for Error
source§fn from(err: UpdateOpenIDConnectProviderThumbprintError) -> Self
fn from(err: UpdateOpenIDConnectProviderThumbprintError) -> Self
source§impl From<UpdateRoleDescriptionError> for Error
impl From<UpdateRoleDescriptionError> for Error
source§fn from(err: UpdateRoleDescriptionError) -> Self
fn from(err: UpdateRoleDescriptionError) -> Self
source§impl From<UpdateRoleError> for Error
impl From<UpdateRoleError> for Error
source§fn from(err: UpdateRoleError) -> Self
fn from(err: UpdateRoleError) -> Self
source§impl From<UpdateSAMLProviderError> for Error
impl From<UpdateSAMLProviderError> for Error
source§fn from(err: UpdateSAMLProviderError) -> Self
fn from(err: UpdateSAMLProviderError) -> Self
source§impl From<UpdateSSHPublicKeyError> for Error
impl From<UpdateSSHPublicKeyError> for Error
source§fn from(err: UpdateSSHPublicKeyError) -> Self
fn from(err: UpdateSSHPublicKeyError) -> Self
source§impl From<UpdateServerCertificateError> for Error
impl From<UpdateServerCertificateError> for Error
source§fn from(err: UpdateServerCertificateError) -> Self
fn from(err: UpdateServerCertificateError) -> Self
source§impl From<UpdateServiceSpecificCredentialError> for Error
impl From<UpdateServiceSpecificCredentialError> for Error
source§fn from(err: UpdateServiceSpecificCredentialError) -> Self
fn from(err: UpdateServiceSpecificCredentialError) -> Self
source§impl From<UpdateSigningCertificateError> for Error
impl From<UpdateSigningCertificateError> for Error
source§fn from(err: UpdateSigningCertificateError) -> Self
fn from(err: UpdateSigningCertificateError) -> Self
source§impl From<UpdateUserError> for Error
impl From<UpdateUserError> for Error
source§fn from(err: UpdateUserError) -> Self
fn from(err: UpdateUserError) -> Self
source§impl From<UploadSSHPublicKeyError> for Error
impl From<UploadSSHPublicKeyError> for Error
source§fn from(err: UploadSSHPublicKeyError) -> Self
fn from(err: UploadSSHPublicKeyError) -> Self
source§impl From<UploadServerCertificateError> for Error
impl From<UploadServerCertificateError> for Error
source§fn from(err: UploadServerCertificateError) -> Self
fn from(err: UploadServerCertificateError) -> Self
source§impl From<UploadSigningCertificateError> for Error
impl From<UploadSigningCertificateError> for Error
source§fn from(err: UploadSigningCertificateError) -> Self
fn from(err: UploadSigningCertificateError) -> Self
source§impl<O, E> From<WaiterError<O, E>> for Error
impl<O, E> From<WaiterError<O, E>> for Error
source§fn from(err: WaiterError<O, E>) -> Self
fn from(err: WaiterError<O, E>) -> Self
source§impl ProvideErrorMetadata for Error
impl ProvideErrorMetadata for Error
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more