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
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

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)

👎Deprecated: Matching 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 Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AddClientIDToOpenIDConnectProviderError> for Error

source§

fn from(err: AddClientIDToOpenIDConnectProviderError) -> Self

Converts to this type from the input type.
source§

impl From<AddRoleToInstanceProfileError> for Error

source§

fn from(err: AddRoleToInstanceProfileError) -> Self

Converts to this type from the input type.
source§

impl From<AddUserToGroupError> for Error

source§

fn from(err: AddUserToGroupError) -> Self

Converts to this type from the input type.
source§

impl From<AttachGroupPolicyError> for Error

source§

fn from(err: AttachGroupPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<AttachRolePolicyError> for Error

source§

fn from(err: AttachRolePolicyError) -> Self

Converts to this type from the input type.
source§

impl From<AttachUserPolicyError> for Error

source§

fn from(err: AttachUserPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<BuildError> for Error

source§

fn from(value: BuildError) -> Self

Converts to this type from the input type.
source§

impl From<ChangePasswordError> for Error

source§

fn from(err: ChangePasswordError) -> Self

Converts to this type from the input type.
source§

impl From<CreateAccessKeyError> for Error

source§

fn from(err: CreateAccessKeyError) -> Self

Converts to this type from the input type.
source§

impl From<CreateAccountAliasError> for Error

source§

fn from(err: CreateAccountAliasError) -> Self

Converts to this type from the input type.
source§

impl From<CreateGroupError> for Error

source§

fn from(err: CreateGroupError) -> Self

Converts to this type from the input type.
source§

impl From<CreateInstanceProfileError> for Error

source§

fn from(err: CreateInstanceProfileError) -> Self

Converts to this type from the input type.
source§

impl From<CreateLoginProfileError> for Error

source§

fn from(err: CreateLoginProfileError) -> Self

Converts to this type from the input type.
source§

impl From<CreateOpenIDConnectProviderError> for Error

source§

fn from(err: CreateOpenIDConnectProviderError) -> Self

Converts to this type from the input type.
source§

impl From<CreatePolicyError> for Error

source§

fn from(err: CreatePolicyError) -> Self

Converts to this type from the input type.
source§

impl From<CreatePolicyVersionError> for Error

source§

fn from(err: CreatePolicyVersionError) -> Self

Converts to this type from the input type.
source§

impl From<CreateRoleError> for Error

source§

fn from(err: CreateRoleError) -> Self

Converts to this type from the input type.
source§

impl From<CreateSAMLProviderError> for Error

source§

fn from(err: CreateSAMLProviderError) -> Self

Converts to this type from the input type.
source§

impl From<CreateServiceLinkedRoleError> for Error

source§

fn from(err: CreateServiceLinkedRoleError) -> Self

Converts to this type from the input type.
source§

impl From<CreateServiceSpecificCredentialError> for Error

source§

fn from(err: CreateServiceSpecificCredentialError) -> Self

Converts to this type from the input type.
source§

impl From<CreateUserError> for Error

source§

fn from(err: CreateUserError) -> Self

Converts to this type from the input type.
source§

impl From<CreateVirtualMFADeviceError> for Error

source§

fn from(err: CreateVirtualMFADeviceError) -> Self

Converts to this type from the input type.
source§

impl From<DeactivateMFADeviceError> for Error

source§

fn from(err: DeactivateMFADeviceError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteAccessKeyError> for Error

source§

fn from(err: DeleteAccessKeyError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteAccountAliasError> for Error

source§

fn from(err: DeleteAccountAliasError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteAccountPasswordPolicyError> for Error

source§

fn from(err: DeleteAccountPasswordPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteGroupError> for Error

source§

fn from(err: DeleteGroupError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteGroupPolicyError> for Error

source§

fn from(err: DeleteGroupPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteInstanceProfileError> for Error

source§

fn from(err: DeleteInstanceProfileError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteLoginProfileError> for Error

source§

fn from(err: DeleteLoginProfileError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteOpenIDConnectProviderError> for Error

source§

fn from(err: DeleteOpenIDConnectProviderError) -> Self

Converts to this type from the input type.
source§

impl From<DeletePolicyError> for Error

source§

fn from(err: DeletePolicyError) -> Self

Converts to this type from the input type.
source§

impl From<DeletePolicyVersionError> for Error

source§

fn from(err: DeletePolicyVersionError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteRoleError> for Error

source§

fn from(err: DeleteRoleError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteRolePermissionsBoundaryError> for Error

source§

fn from(err: DeleteRolePermissionsBoundaryError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteRolePolicyError> for Error

source§

fn from(err: DeleteRolePolicyError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteSAMLProviderError> for Error

source§

fn from(err: DeleteSAMLProviderError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteSSHPublicKeyError> for Error

source§

fn from(err: DeleteSSHPublicKeyError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteServerCertificateError> for Error

source§

fn from(err: DeleteServerCertificateError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteServiceLinkedRoleError> for Error

source§

fn from(err: DeleteServiceLinkedRoleError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteServiceSpecificCredentialError> for Error

source§

fn from(err: DeleteServiceSpecificCredentialError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteSigningCertificateError> for Error

source§

fn from(err: DeleteSigningCertificateError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteUserError> for Error

source§

fn from(err: DeleteUserError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteUserPermissionsBoundaryError> for Error

source§

fn from(err: DeleteUserPermissionsBoundaryError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteUserPolicyError> for Error

source§

fn from(err: DeleteUserPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteVirtualMFADeviceError> for Error

source§

fn from(err: DeleteVirtualMFADeviceError) -> Self

Converts to this type from the input type.
source§

impl From<DetachGroupPolicyError> for Error

source§

fn from(err: DetachGroupPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<DetachRolePolicyError> for Error

source§

fn from(err: DetachRolePolicyError) -> Self

Converts to this type from the input type.
source§

impl From<DetachUserPolicyError> for Error

source§

fn from(err: DetachUserPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<EnableMFADeviceError> for Error

source§

fn from(err: EnableMFADeviceError) -> Self

Converts to this type from the input type.
source§

impl From<GenerateCredentialReportError> for Error

source§

fn from(err: GenerateCredentialReportError) -> Self

Converts to this type from the input type.
source§

impl From<GenerateOrganizationsAccessReportError> for Error

source§

fn from(err: GenerateOrganizationsAccessReportError) -> Self

Converts to this type from the input type.
source§

impl From<GenerateServiceLastAccessedDetailsError> for Error

source§

fn from(err: GenerateServiceLastAccessedDetailsError) -> Self

Converts to this type from the input type.
source§

impl From<GetAccessKeyLastUsedError> for Error

source§

fn from(err: GetAccessKeyLastUsedError) -> Self

Converts to this type from the input type.
source§

impl From<GetAccountAuthorizationDetailsError> for Error

source§

fn from(err: GetAccountAuthorizationDetailsError) -> Self

Converts to this type from the input type.
source§

impl From<GetAccountPasswordPolicyError> for Error

source§

fn from(err: GetAccountPasswordPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<GetAccountSummaryError> for Error

source§

fn from(err: GetAccountSummaryError) -> Self

Converts to this type from the input type.
source§

impl From<GetContextKeysForCustomPolicyError> for Error

source§

fn from(err: GetContextKeysForCustomPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<GetContextKeysForPrincipalPolicyError> for Error

source§

fn from(err: GetContextKeysForPrincipalPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<GetCredentialReportError> for Error

source§

fn from(err: GetCredentialReportError) -> Self

Converts to this type from the input type.
source§

impl From<GetGroupError> for Error

source§

fn from(err: GetGroupError) -> Self

Converts to this type from the input type.
source§

impl From<GetGroupPolicyError> for Error

source§

fn from(err: GetGroupPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<GetInstanceProfileError> for Error

source§

fn from(err: GetInstanceProfileError) -> Self

Converts to this type from the input type.
source§

impl From<GetLoginProfileError> for Error

source§

fn from(err: GetLoginProfileError) -> Self

Converts to this type from the input type.
source§

impl From<GetMFADeviceError> for Error

source§

fn from(err: GetMFADeviceError) -> Self

Converts to this type from the input type.
source§

impl From<GetOpenIDConnectProviderError> for Error

source§

fn from(err: GetOpenIDConnectProviderError) -> Self

Converts to this type from the input type.
source§

impl From<GetOrganizationsAccessReportError> for Error

source§

fn from(err: GetOrganizationsAccessReportError) -> Self

Converts to this type from the input type.
source§

impl From<GetPolicyError> for Error

source§

fn from(err: GetPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<GetPolicyVersionError> for Error

source§

fn from(err: GetPolicyVersionError) -> Self

Converts to this type from the input type.
source§

impl From<GetRoleError> for Error

source§

fn from(err: GetRoleError) -> Self

Converts to this type from the input type.
source§

impl From<GetRolePolicyError> for Error

source§

fn from(err: GetRolePolicyError) -> Self

Converts to this type from the input type.
source§

impl From<GetSAMLProviderError> for Error

source§

fn from(err: GetSAMLProviderError) -> Self

Converts to this type from the input type.
source§

impl From<GetSSHPublicKeyError> for Error

source§

fn from(err: GetSSHPublicKeyError) -> Self

Converts to this type from the input type.
source§

impl From<GetServerCertificateError> for Error

source§

fn from(err: GetServerCertificateError) -> Self

Converts to this type from the input type.
source§

impl From<GetServiceLastAccessedDetailsError> for Error

source§

fn from(err: GetServiceLastAccessedDetailsError) -> Self

Converts to this type from the input type.
source§

impl From<GetServiceLastAccessedDetailsWithEntitiesError> for Error

source§

fn from(err: GetServiceLastAccessedDetailsWithEntitiesError) -> Self

Converts to this type from the input type.
source§

impl From<GetServiceLinkedRoleDeletionStatusError> for Error

source§

fn from(err: GetServiceLinkedRoleDeletionStatusError) -> Self

Converts to this type from the input type.
source§

impl From<GetUserError> for Error

source§

fn from(err: GetUserError) -> Self

Converts to this type from the input type.
source§

impl From<GetUserPolicyError> for Error

source§

fn from(err: GetUserPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<ListAccessKeysError> for Error

source§

fn from(err: ListAccessKeysError) -> Self

Converts to this type from the input type.
source§

impl From<ListAccountAliasesError> for Error

source§

fn from(err: ListAccountAliasesError) -> Self

Converts to this type from the input type.
source§

impl From<ListAttachedGroupPoliciesError> for Error

source§

fn from(err: ListAttachedGroupPoliciesError) -> Self

Converts to this type from the input type.
source§

impl From<ListAttachedRolePoliciesError> for Error

source§

fn from(err: ListAttachedRolePoliciesError) -> Self

Converts to this type from the input type.
source§

impl From<ListAttachedUserPoliciesError> for Error

source§

fn from(err: ListAttachedUserPoliciesError) -> Self

Converts to this type from the input type.
source§

impl From<ListEntitiesForPolicyError> for Error

source§

fn from(err: ListEntitiesForPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<ListGroupPoliciesError> for Error

source§

fn from(err: ListGroupPoliciesError) -> Self

Converts to this type from the input type.
source§

impl From<ListGroupsError> for Error

source§

fn from(err: ListGroupsError) -> Self

Converts to this type from the input type.
source§

impl From<ListGroupsForUserError> for Error

source§

fn from(err: ListGroupsForUserError) -> Self

Converts to this type from the input type.
source§

impl From<ListInstanceProfileTagsError> for Error

source§

fn from(err: ListInstanceProfileTagsError) -> Self

Converts to this type from the input type.
source§

impl From<ListInstanceProfilesError> for Error

source§

fn from(err: ListInstanceProfilesError) -> Self

Converts to this type from the input type.
source§

impl From<ListInstanceProfilesForRoleError> for Error

source§

fn from(err: ListInstanceProfilesForRoleError) -> Self

Converts to this type from the input type.
source§

impl From<ListMFADeviceTagsError> for Error

source§

fn from(err: ListMFADeviceTagsError) -> Self

Converts to this type from the input type.
source§

impl From<ListMFADevicesError> for Error

source§

fn from(err: ListMFADevicesError) -> Self

Converts to this type from the input type.
source§

impl From<ListOpenIDConnectProviderTagsError> for Error

source§

fn from(err: ListOpenIDConnectProviderTagsError) -> Self

Converts to this type from the input type.
source§

impl From<ListOpenIDConnectProvidersError> for Error

source§

fn from(err: ListOpenIDConnectProvidersError) -> Self

Converts to this type from the input type.
source§

impl From<ListPoliciesError> for Error

source§

fn from(err: ListPoliciesError) -> Self

Converts to this type from the input type.
source§

impl From<ListPoliciesGrantingServiceAccessError> for Error

source§

fn from(err: ListPoliciesGrantingServiceAccessError) -> Self

Converts to this type from the input type.
source§

impl From<ListPolicyTagsError> for Error

source§

fn from(err: ListPolicyTagsError) -> Self

Converts to this type from the input type.
source§

impl From<ListPolicyVersionsError> for Error

source§

fn from(err: ListPolicyVersionsError) -> Self

Converts to this type from the input type.
source§

impl From<ListRolePoliciesError> for Error

source§

fn from(err: ListRolePoliciesError) -> Self

Converts to this type from the input type.
source§

impl From<ListRoleTagsError> for Error

source§

fn from(err: ListRoleTagsError) -> Self

Converts to this type from the input type.
source§

impl From<ListRolesError> for Error

source§

fn from(err: ListRolesError) -> Self

Converts to this type from the input type.
source§

impl From<ListSAMLProviderTagsError> for Error

source§

fn from(err: ListSAMLProviderTagsError) -> Self

Converts to this type from the input type.
source§

impl From<ListSAMLProvidersError> for Error

source§

fn from(err: ListSAMLProvidersError) -> Self

Converts to this type from the input type.
source§

impl From<ListSSHPublicKeysError> for Error

source§

fn from(err: ListSSHPublicKeysError) -> Self

Converts to this type from the input type.
source§

impl From<ListServerCertificateTagsError> for Error

source§

fn from(err: ListServerCertificateTagsError) -> Self

Converts to this type from the input type.
source§

impl From<ListServerCertificatesError> for Error

source§

fn from(err: ListServerCertificatesError) -> Self

Converts to this type from the input type.
source§

impl From<ListServiceSpecificCredentialsError> for Error

source§

fn from(err: ListServiceSpecificCredentialsError) -> Self

Converts to this type from the input type.
source§

impl From<ListSigningCertificatesError> for Error

source§

fn from(err: ListSigningCertificatesError) -> Self

Converts to this type from the input type.
source§

impl From<ListUserPoliciesError> for Error

source§

fn from(err: ListUserPoliciesError) -> Self

Converts to this type from the input type.
source§

impl From<ListUserTagsError> for Error

source§

fn from(err: ListUserTagsError) -> Self

Converts to this type from the input type.
source§

impl From<ListUsersError> for Error

source§

fn from(err: ListUsersError) -> Self

Converts to this type from the input type.
source§

impl From<ListVirtualMFADevicesError> for Error

source§

fn from(err: ListVirtualMFADevicesError) -> Self

Converts to this type from the input type.
source§

impl From<PutGroupPolicyError> for Error

source§

fn from(err: PutGroupPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<PutRolePermissionsBoundaryError> for Error

source§

fn from(err: PutRolePermissionsBoundaryError) -> Self

Converts to this type from the input type.
source§

impl From<PutRolePolicyError> for Error

source§

fn from(err: PutRolePolicyError) -> Self

Converts to this type from the input type.
source§

impl From<PutUserPermissionsBoundaryError> for Error

source§

fn from(err: PutUserPermissionsBoundaryError) -> Self

Converts to this type from the input type.
source§

impl From<PutUserPolicyError> for Error

source§

fn from(err: PutUserPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<RemoveClientIDFromOpenIDConnectProviderError> for Error

source§

fn from(err: RemoveClientIDFromOpenIDConnectProviderError) -> Self

Converts to this type from the input type.
source§

impl From<RemoveRoleFromInstanceProfileError> for Error

source§

fn from(err: RemoveRoleFromInstanceProfileError) -> Self

Converts to this type from the input type.
source§

impl From<RemoveUserFromGroupError> for Error

source§

fn from(err: RemoveUserFromGroupError) -> Self

Converts to this type from the input type.
source§

impl From<ResetServiceSpecificCredentialError> for Error

source§

fn from(err: ResetServiceSpecificCredentialError) -> Self

Converts to this type from the input type.
source§

impl From<ResyncMFADeviceError> for Error

source§

fn from(err: ResyncMFADeviceError) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<AddClientIDToOpenIDConnectProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<AddClientIDToOpenIDConnectProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<AddRoleToInstanceProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<AddRoleToInstanceProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<AddUserToGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<AddUserToGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<AttachGroupPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<AttachGroupPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<AttachRolePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<AttachRolePolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<AttachUserPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<AttachUserPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ChangePasswordError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ChangePasswordError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateAccessKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateAccessKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateAccountAliasError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateAccountAliasError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateInstanceProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateInstanceProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateLoginProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateLoginProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateOpenIDConnectProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateOpenIDConnectProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreatePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreatePolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreatePolicyVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreatePolicyVersionError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateSAMLProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateSAMLProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateServiceLinkedRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateServiceLinkedRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateServiceSpecificCredentialError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateServiceSpecificCredentialError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateUserError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateUserError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateVirtualMFADeviceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateVirtualMFADeviceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeactivateMFADeviceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeactivateMFADeviceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteAccessKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteAccessKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteAccountAliasError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteAccountAliasError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteAccountPasswordPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteAccountPasswordPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteGroupPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteGroupPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteInstanceProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteInstanceProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteLoginProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteLoginProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteOpenIDConnectProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteOpenIDConnectProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeletePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeletePolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeletePolicyVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeletePolicyVersionError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteRolePermissionsBoundaryError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteRolePermissionsBoundaryError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteRolePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteRolePolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteSAMLProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteSAMLProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteSSHPublicKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteSSHPublicKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteServerCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteServerCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteServiceLinkedRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteServiceLinkedRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteServiceSpecificCredentialError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteServiceSpecificCredentialError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteSigningCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteSigningCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteUserError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteUserError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteUserPermissionsBoundaryError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteUserPermissionsBoundaryError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteUserPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteUserPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteVirtualMFADeviceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteVirtualMFADeviceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DetachGroupPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DetachGroupPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DetachRolePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DetachRolePolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DetachUserPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DetachUserPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<EnableMFADeviceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<EnableMFADeviceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GenerateCredentialReportError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GenerateCredentialReportError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GenerateOrganizationsAccessReportError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GenerateOrganizationsAccessReportError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GenerateServiceLastAccessedDetailsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GenerateServiceLastAccessedDetailsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetAccessKeyLastUsedError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetAccessKeyLastUsedError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetAccountAuthorizationDetailsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetAccountAuthorizationDetailsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetAccountPasswordPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetAccountPasswordPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetAccountSummaryError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetAccountSummaryError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetContextKeysForCustomPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetContextKeysForCustomPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetContextKeysForPrincipalPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetContextKeysForPrincipalPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetCredentialReportError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetCredentialReportError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetGroupPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetGroupPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetInstanceProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetInstanceProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetLoginProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetLoginProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetMFADeviceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetMFADeviceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetOpenIDConnectProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetOpenIDConnectProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetOrganizationsAccessReportError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetOrganizationsAccessReportError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetPolicyVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetPolicyVersionError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetRolePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetRolePolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetSAMLProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetSAMLProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetSSHPublicKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetSSHPublicKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetServerCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetServerCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetServiceLastAccessedDetailsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetServiceLastAccessedDetailsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetServiceLastAccessedDetailsWithEntitiesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from( err: SdkError<GetServiceLastAccessedDetailsWithEntitiesError, R>, ) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetServiceLinkedRoleDeletionStatusError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetServiceLinkedRoleDeletionStatusError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetUserError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetUserError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetUserPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetUserPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListAccessKeysError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListAccessKeysError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListAccountAliasesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListAccountAliasesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListAttachedGroupPoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListAttachedGroupPoliciesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListAttachedRolePoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListAttachedRolePoliciesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListAttachedUserPoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListAttachedUserPoliciesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListEntitiesForPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListEntitiesForPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListGroupPoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListGroupPoliciesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListGroupsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListGroupsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListGroupsForUserError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListGroupsForUserError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListInstanceProfileTagsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListInstanceProfileTagsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListInstanceProfilesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListInstanceProfilesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListInstanceProfilesForRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListInstanceProfilesForRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListMFADeviceTagsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListMFADeviceTagsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListMFADevicesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListMFADevicesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListOpenIDConnectProviderTagsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListOpenIDConnectProviderTagsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListOpenIDConnectProvidersError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListOpenIDConnectProvidersError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListPoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListPoliciesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListPoliciesGrantingServiceAccessError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListPoliciesGrantingServiceAccessError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListPolicyTagsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListPolicyTagsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListPolicyVersionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListPolicyVersionsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListRolePoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListRolePoliciesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListRoleTagsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListRoleTagsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListRolesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListRolesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListSAMLProviderTagsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListSAMLProviderTagsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListSAMLProvidersError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListSAMLProvidersError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListSSHPublicKeysError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListSSHPublicKeysError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListServerCertificateTagsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListServerCertificateTagsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListServerCertificatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListServerCertificatesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListServiceSpecificCredentialsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListServiceSpecificCredentialsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListSigningCertificatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListSigningCertificatesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListUserPoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListUserPoliciesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListUserTagsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListUserTagsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListUsersError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListUsersError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListVirtualMFADevicesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListVirtualMFADevicesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PutGroupPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PutGroupPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PutRolePermissionsBoundaryError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PutRolePermissionsBoundaryError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PutRolePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PutRolePolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PutUserPermissionsBoundaryError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PutUserPermissionsBoundaryError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PutUserPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PutUserPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<RemoveClientIDFromOpenIDConnectProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<RemoveClientIDFromOpenIDConnectProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<RemoveRoleFromInstanceProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<RemoveRoleFromInstanceProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<RemoveUserFromGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<RemoveUserFromGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ResetServiceSpecificCredentialError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ResetServiceSpecificCredentialError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ResyncMFADeviceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ResyncMFADeviceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<SetDefaultPolicyVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<SetDefaultPolicyVersionError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<SetSecurityTokenServicePreferencesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<SetSecurityTokenServicePreferencesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<SimulateCustomPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<SimulateCustomPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<SimulatePrincipalPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<SimulatePrincipalPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagInstanceProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagInstanceProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagMFADeviceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagMFADeviceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagOpenIDConnectProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagOpenIDConnectProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagSAMLProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagSAMLProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagServerCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagServerCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagUserError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagUserError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagInstanceProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagInstanceProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagMFADeviceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagMFADeviceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagOpenIDConnectProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagOpenIDConnectProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagSAMLProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagSAMLProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagServerCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagServerCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagUserError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagUserError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateAccessKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateAccessKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateAccountPasswordPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateAccountPasswordPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateAssumeRolePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateAssumeRolePolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateLoginProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateLoginProfileError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateOpenIDConnectProviderThumbprintError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateOpenIDConnectProviderThumbprintError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateRoleDescriptionError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateRoleDescriptionError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateRoleError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateRoleError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateSAMLProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateSAMLProviderError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateSSHPublicKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateSSHPublicKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateServerCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateServerCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateServiceSpecificCredentialError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateServiceSpecificCredentialError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateSigningCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateSigningCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateUserError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateUserError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UploadSSHPublicKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UploadSSHPublicKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UploadServerCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UploadServerCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UploadSigningCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UploadSigningCertificateError, R>) -> Self

Converts to this type from the input type.
source§

impl From<SetDefaultPolicyVersionError> for Error

source§

fn from(err: SetDefaultPolicyVersionError) -> Self

Converts to this type from the input type.
source§

impl From<SetSecurityTokenServicePreferencesError> for Error

source§

fn from(err: SetSecurityTokenServicePreferencesError) -> Self

Converts to this type from the input type.
source§

impl From<SimulateCustomPolicyError> for Error

source§

fn from(err: SimulateCustomPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<SimulatePrincipalPolicyError> for Error

source§

fn from(err: SimulatePrincipalPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<TagInstanceProfileError> for Error

source§

fn from(err: TagInstanceProfileError) -> Self

Converts to this type from the input type.
source§

impl From<TagMFADeviceError> for Error

source§

fn from(err: TagMFADeviceError) -> Self

Converts to this type from the input type.
source§

impl From<TagOpenIDConnectProviderError> for Error

source§

fn from(err: TagOpenIDConnectProviderError) -> Self

Converts to this type from the input type.
source§

impl From<TagPolicyError> for Error

source§

fn from(err: TagPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<TagRoleError> for Error

source§

fn from(err: TagRoleError) -> Self

Converts to this type from the input type.
source§

impl From<TagSAMLProviderError> for Error

source§

fn from(err: TagSAMLProviderError) -> Self

Converts to this type from the input type.
source§

impl From<TagServerCertificateError> for Error

source§

fn from(err: TagServerCertificateError) -> Self

Converts to this type from the input type.
source§

impl From<TagUserError> for Error

source§

fn from(err: TagUserError) -> Self

Converts to this type from the input type.
source§

impl From<UntagInstanceProfileError> for Error

source§

fn from(err: UntagInstanceProfileError) -> Self

Converts to this type from the input type.
source§

impl From<UntagMFADeviceError> for Error

source§

fn from(err: UntagMFADeviceError) -> Self

Converts to this type from the input type.
source§

impl From<UntagOpenIDConnectProviderError> for Error

source§

fn from(err: UntagOpenIDConnectProviderError) -> Self

Converts to this type from the input type.
source§

impl From<UntagPolicyError> for Error

source§

fn from(err: UntagPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<UntagRoleError> for Error

source§

fn from(err: UntagRoleError) -> Self

Converts to this type from the input type.
source§

impl From<UntagSAMLProviderError> for Error

source§

fn from(err: UntagSAMLProviderError) -> Self

Converts to this type from the input type.
source§

impl From<UntagServerCertificateError> for Error

source§

fn from(err: UntagServerCertificateError) -> Self

Converts to this type from the input type.
source§

impl From<UntagUserError> for Error

source§

fn from(err: UntagUserError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateAccessKeyError> for Error

source§

fn from(err: UpdateAccessKeyError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateAccountPasswordPolicyError> for Error

source§

fn from(err: UpdateAccountPasswordPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateAssumeRolePolicyError> for Error

source§

fn from(err: UpdateAssumeRolePolicyError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateGroupError> for Error

source§

fn from(err: UpdateGroupError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateLoginProfileError> for Error

source§

fn from(err: UpdateLoginProfileError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateOpenIDConnectProviderThumbprintError> for Error

source§

fn from(err: UpdateOpenIDConnectProviderThumbprintError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateRoleDescriptionError> for Error

source§

fn from(err: UpdateRoleDescriptionError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateRoleError> for Error

source§

fn from(err: UpdateRoleError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateSAMLProviderError> for Error

source§

fn from(err: UpdateSAMLProviderError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateSSHPublicKeyError> for Error

source§

fn from(err: UpdateSSHPublicKeyError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateServerCertificateError> for Error

source§

fn from(err: UpdateServerCertificateError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateServiceSpecificCredentialError> for Error

source§

fn from(err: UpdateServiceSpecificCredentialError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateSigningCertificateError> for Error

source§

fn from(err: UpdateSigningCertificateError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateUserError> for Error

source§

fn from(err: UpdateUserError) -> Self

Converts to this type from the input type.
source§

impl From<UploadSSHPublicKeyError> for Error

source§

fn from(err: UploadSSHPublicKeyError) -> Self

Converts to this type from the input type.
source§

impl From<UploadServerCertificateError> for Error

source§

fn from(err: UploadServerCertificateError) -> Self

Converts to this type from the input type.
source§

impl From<UploadSigningCertificateError> for Error

source§

fn from(err: UploadSigningCertificateError) -> Self

Converts to this type from the input type.
source§

impl<O, E> From<WaiterError<O, E>> for Error
where O: Debug + Send + Sync + 'static, E: Error + Send + Sync + 'static,

source§

fn from(err: WaiterError<O, E>) -> Self

Converts to this type from the input type.
source§

impl ProvideErrorMetadata for Error

source§

fn meta(&self) -> &ErrorMetadata

Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
source§

fn code(&self) -> Option<&str>

Returns the error code if it’s available.
source§

fn message(&self) -> Option<&str>

Returns the error message, if there is one.
source§

impl RequestId for Error

source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more