#[non_exhaustive]pub enum ListPermissionVersionsError {
InvalidNextTokenException(InvalidNextTokenException),
InvalidParameterException(InvalidParameterException),
MalformedArnException(MalformedArnException),
OperationNotPermittedException(OperationNotPermittedException),
ServerInternalException(ServerInternalException),
ServiceUnavailableException(ServiceUnavailableException),
UnknownResourceException(UnknownResourceException),
Unhandled(Unhandled),
}Expand description
Error type for the ListPermissionVersionsError operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InvalidNextTokenException(InvalidNextTokenException)
The operation failed because the specified value for NextToken isn't valid. You must specify a value you received in the NextToken response of a previous call to this operation.
InvalidParameterException(InvalidParameterException)
The operation failed because a parameter you specified isn't valid.
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.
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.
UnknownResourceException(UnknownResourceException)
The operation failed because a specified resource couldn't be found.
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).
Implementations§
source§impl ListPermissionVersionsError
impl ListPermissionVersionsError
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 ListPermissionVersionsError::Unhandled variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the ListPermissionVersionsError::Unhandled variant from an 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_invalid_next_token_exception(&self) -> bool
pub fn is_invalid_next_token_exception(&self) -> bool
Returns true if the error kind is ListPermissionVersionsError::InvalidNextTokenException.
sourcepub fn is_invalid_parameter_exception(&self) -> bool
pub fn is_invalid_parameter_exception(&self) -> bool
Returns true if the error kind is ListPermissionVersionsError::InvalidParameterException.
sourcepub fn is_malformed_arn_exception(&self) -> bool
pub fn is_malformed_arn_exception(&self) -> bool
Returns true if the error kind is ListPermissionVersionsError::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 ListPermissionVersionsError::OperationNotPermittedException.
sourcepub fn is_server_internal_exception(&self) -> bool
pub fn is_server_internal_exception(&self) -> bool
Returns true if the error kind is ListPermissionVersionsError::ServerInternalException.
Returns true if the error kind is ListPermissionVersionsError::ServiceUnavailableException.
sourcepub fn is_unknown_resource_exception(&self) -> bool
pub fn is_unknown_resource_exception(&self) -> bool
Returns true if the error kind is ListPermissionVersionsError::UnknownResourceException.
Trait Implementations§
source§impl CreateUnhandledError for ListPermissionVersionsError
impl CreateUnhandledError for ListPermissionVersionsError
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§impl Debug for ListPermissionVersionsError
impl Debug for ListPermissionVersionsError
source§impl Error for ListPermissionVersionsError
impl Error for ListPermissionVersionsError
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<ListPermissionVersionsError> for Error
impl From<ListPermissionVersionsError> for Error
source§fn from(err: ListPermissionVersionsError) -> Self
fn from(err: ListPermissionVersionsError) -> Self
source§impl ProvideErrorMetadata for ListPermissionVersionsError
impl ProvideErrorMetadata for ListPermissionVersionsError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for ListPermissionVersionsError
impl RequestId for ListPermissionVersionsError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.