Enum aws_sdk_ram::operation::enable_sharing_with_aws_organization::EnableSharingWithAwsOrganizationError
source · #[non_exhaustive]pub enum EnableSharingWithAwsOrganizationError {
OperationNotPermittedException(OperationNotPermittedException),
ServerInternalException(ServerInternalException),
ServiceUnavailableException(ServiceUnavailableException),
Unhandled(Unhandled),
}Expand description
Error type for the EnableSharingWithAwsOrganizationError operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
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.
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 EnableSharingWithAwsOrganizationError
impl EnableSharingWithAwsOrganizationError
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 EnableSharingWithAwsOrganizationError::Unhandled variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the EnableSharingWithAwsOrganizationError::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_operation_not_permitted_exception(&self) -> bool
pub fn is_operation_not_permitted_exception(&self) -> bool
Returns true if the error kind is EnableSharingWithAwsOrganizationError::OperationNotPermittedException.
sourcepub fn is_server_internal_exception(&self) -> bool
pub fn is_server_internal_exception(&self) -> bool
Returns true if the error kind is EnableSharingWithAwsOrganizationError::ServerInternalException.
Returns true if the error kind is EnableSharingWithAwsOrganizationError::ServiceUnavailableException.
Trait Implementations§
source§impl CreateUnhandledError for EnableSharingWithAwsOrganizationError
impl CreateUnhandledError for EnableSharingWithAwsOrganizationError
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 Error for EnableSharingWithAwsOrganizationError
impl Error for EnableSharingWithAwsOrganizationError
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<EnableSharingWithAwsOrganizationError> for Error
impl From<EnableSharingWithAwsOrganizationError> for Error
source§fn from(err: EnableSharingWithAwsOrganizationError) -> Self
fn from(err: EnableSharingWithAwsOrganizationError) -> Self
source§impl ProvideErrorMetadata for EnableSharingWithAwsOrganizationError
impl ProvideErrorMetadata for EnableSharingWithAwsOrganizationError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for EnableSharingWithAwsOrganizationError
impl RequestId for EnableSharingWithAwsOrganizationError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.