#[non_exhaustive]pub enum CreateResourceShareError {
Show 13 variants
IdempotentParameterMismatchException(IdempotentParameterMismatchException),
InvalidClientTokenException(InvalidClientTokenException),
InvalidParameterException(InvalidParameterException),
InvalidStateTransitionException(InvalidStateTransitionException),
MalformedArnException(MalformedArnException),
OperationNotPermittedException(OperationNotPermittedException),
ResourceShareLimitExceededException(ResourceShareLimitExceededException),
ServerInternalException(ServerInternalException),
ServiceUnavailableException(ServiceUnavailableException),
TagLimitExceededException(TagLimitExceededException),
TagPolicyViolationException(TagPolicyViolationException),
UnknownResourceException(UnknownResourceException),
Unhandled(Unhandled),
}
Expand description
Error type for the CreateResourceShareError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
IdempotentParameterMismatchException(IdempotentParameterMismatchException)
The operation failed because the client token input parameter matched one that was used with a previous call to the operation, but at least one of the other input parameters is different from the previous call.
InvalidClientTokenException(InvalidClientTokenException)
The operation failed because the specified client token isn't valid.
InvalidParameterException(InvalidParameterException)
The operation failed because a parameter you specified isn't valid.
InvalidStateTransitionException(InvalidStateTransitionException)
The operation failed because the requested operation isn't valid for the resource share in its current state.
MalformedArnException(MalformedArnException)
The operation failed because the specified Amazon Resource Name (ARN) has a format that isn't valid.
OperationNotPermittedException(OperationNotPermittedException)
The operation failed because the requested operation isn't permitted.
The operation failed because it would exceed the limit for resource shares for your account. To view the limits for your Amazon Web Services account, see the RAM page in the Service Quotas console.
ServerInternalException(ServerInternalException)
The operation failed because the service could not respond to the request due to an internal problem. Try again later.
The operation failed because the service isn't available. Try again later.
TagLimitExceededException(TagLimitExceededException)
The operation failed because it would exceed the limit for tags for your Amazon Web Services account.
TagPolicyViolationException(TagPolicyViolationException)
The operation failed because the specified tag key is a reserved word and can't be used.
UnknownResourceException(UnknownResourceException)
The operation failed because a specified resource couldn't be found.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the CreateResourceShareError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the CreateResourceShareError::Unhandled
variant from a ::aws_smithy_types::error::ErrorMetadata
.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_idempotent_parameter_mismatch_exception(&self) -> bool
pub fn is_idempotent_parameter_mismatch_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::IdempotentParameterMismatchException
.
sourcepub fn is_invalid_client_token_exception(&self) -> bool
pub fn is_invalid_client_token_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::InvalidClientTokenException
.
sourcepub fn is_invalid_parameter_exception(&self) -> bool
pub fn is_invalid_parameter_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::InvalidParameterException
.
sourcepub fn is_invalid_state_transition_exception(&self) -> bool
pub fn is_invalid_state_transition_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::InvalidStateTransitionException
.
sourcepub fn is_malformed_arn_exception(&self) -> bool
pub fn is_malformed_arn_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::MalformedArnException
.
sourcepub fn is_operation_not_permitted_exception(&self) -> bool
pub fn is_operation_not_permitted_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::OperationNotPermittedException
.
Returns true
if the error kind is CreateResourceShareError::ResourceShareLimitExceededException
.
sourcepub fn is_server_internal_exception(&self) -> bool
pub fn is_server_internal_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::ServerInternalException
.
Returns true
if the error kind is CreateResourceShareError::ServiceUnavailableException
.
sourcepub fn is_tag_limit_exceeded_exception(&self) -> bool
pub fn is_tag_limit_exceeded_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::TagLimitExceededException
.
sourcepub fn is_tag_policy_violation_exception(&self) -> bool
pub fn is_tag_policy_violation_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::TagPolicyViolationException
.
sourcepub fn is_unknown_resource_exception(&self) -> bool
pub fn is_unknown_resource_exception(&self) -> bool
Returns true
if the error kind is CreateResourceShareError::UnknownResourceException
.
Trait Implementations§
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata> ) -> Self
source
and error metadata.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§fn from(err: CreateResourceShareError) -> Self
fn from(err: CreateResourceShareError) -> Self
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.