Enum aws_sdk_sns::operation::publish::PublishError
source · #[non_exhaustive]
pub enum PublishError {
Show 16 variants
AuthorizationErrorException(AuthorizationErrorException),
EndpointDisabledException(EndpointDisabledException),
InternalErrorException(InternalErrorException),
InvalidParameterException(InvalidParameterException),
InvalidParameterValueException(InvalidParameterValueException),
InvalidSecurityException(InvalidSecurityException),
KmsAccessDeniedException(KmsAccessDeniedException),
KmsDisabledException(KmsDisabledException),
KmsInvalidStateException(KmsInvalidStateException),
KmsNotFoundException(KmsNotFoundException),
KmsOptInRequired(KmsOptInRequired),
KmsThrottlingException(KmsThrottlingException),
NotFoundException(NotFoundException),
PlatformApplicationDisabledException(PlatformApplicationDisabledException),
ValidationException(ValidationException),
Unhandled(Unhandled),
}
Expand description
Error type for the PublishError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AuthorizationErrorException(AuthorizationErrorException)
Indicates that the user has been denied access to the requested resource.
EndpointDisabledException(EndpointDisabledException)
Exception error indicating endpoint disabled.
InternalErrorException(InternalErrorException)
Indicates an internal service error.
InvalidParameterException(InvalidParameterException)
Indicates that a request parameter does not comply with the associated constraints.
InvalidParameterValueException(InvalidParameterValueException)
Indicates that a request parameter does not comply with the associated constraints.
InvalidSecurityException(InvalidSecurityException)
The credential signature isn't valid. You must use an HTTPS endpoint and sign your request using Signature Version 4.
KmsAccessDeniedException(KmsAccessDeniedException)
The ciphertext references a key that doesn't exist or that you don't have access to.
KmsDisabledException(KmsDisabledException)
The request was rejected because the specified customer master key (CMK) isn't enabled.
KmsInvalidStateException(KmsInvalidStateException)
The request was rejected because the state of the specified resource isn't valid for this request. For more information, see How Key State Affects Use of a Customer Master Key in the Key Management Service Developer Guide.
KmsNotFoundException(KmsNotFoundException)
The request was rejected because the specified entity or resource can't be found.
KmsOptInRequired(KmsOptInRequired)
The Amazon Web Services access key ID needs a subscription for the service.
KmsThrottlingException(KmsThrottlingException)
The request was denied due to request throttling. For more information about throttling, see Limits in the Key Management Service Developer Guide.
NotFoundException(NotFoundException)
Indicates that the requested resource does not exist.
PlatformApplicationDisabledException(PlatformApplicationDisabledException)
Exception error indicating platform application disabled.
ValidationException(ValidationException)
Indicates that a parameter in the request is invalid.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl PublishError
impl PublishError
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 PublishError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the PublishError::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.
Returns true
if the error kind is PublishError::AuthorizationErrorException
.
sourcepub fn is_endpoint_disabled_exception(&self) -> bool
pub fn is_endpoint_disabled_exception(&self) -> bool
Returns true
if the error kind is PublishError::EndpointDisabledException
.
sourcepub fn is_internal_error_exception(&self) -> bool
pub fn is_internal_error_exception(&self) -> bool
Returns true
if the error kind is PublishError::InternalErrorException
.
sourcepub fn is_invalid_parameter_exception(&self) -> bool
pub fn is_invalid_parameter_exception(&self) -> bool
Returns true
if the error kind is PublishError::InvalidParameterException
.
sourcepub fn is_invalid_parameter_value_exception(&self) -> bool
pub fn is_invalid_parameter_value_exception(&self) -> bool
Returns true
if the error kind is PublishError::InvalidParameterValueException
.
sourcepub fn is_invalid_security_exception(&self) -> bool
pub fn is_invalid_security_exception(&self) -> bool
Returns true
if the error kind is PublishError::InvalidSecurityException
.
sourcepub fn is_kms_access_denied_exception(&self) -> bool
pub fn is_kms_access_denied_exception(&self) -> bool
Returns true
if the error kind is PublishError::KmsAccessDeniedException
.
sourcepub fn is_kms_disabled_exception(&self) -> bool
pub fn is_kms_disabled_exception(&self) -> bool
Returns true
if the error kind is PublishError::KmsDisabledException
.
sourcepub fn is_kms_invalid_state_exception(&self) -> bool
pub fn is_kms_invalid_state_exception(&self) -> bool
Returns true
if the error kind is PublishError::KmsInvalidStateException
.
sourcepub fn is_kms_not_found_exception(&self) -> bool
pub fn is_kms_not_found_exception(&self) -> bool
Returns true
if the error kind is PublishError::KmsNotFoundException
.
sourcepub fn is_kms_opt_in_required(&self) -> bool
pub fn is_kms_opt_in_required(&self) -> bool
Returns true
if the error kind is PublishError::KmsOptInRequired
.
sourcepub fn is_kms_throttling_exception(&self) -> bool
pub fn is_kms_throttling_exception(&self) -> bool
Returns true
if the error kind is PublishError::KmsThrottlingException
.
sourcepub fn is_not_found_exception(&self) -> bool
pub fn is_not_found_exception(&self) -> bool
Returns true
if the error kind is PublishError::NotFoundException
.
sourcepub fn is_platform_application_disabled_exception(&self) -> bool
pub fn is_platform_application_disabled_exception(&self) -> bool
Returns true
if the error kind is PublishError::PlatformApplicationDisabledException
.
sourcepub fn is_validation_exception(&self) -> bool
pub fn is_validation_exception(&self) -> bool
Returns true
if the error kind is PublishError::ValidationException
.
Trait Implementations§
source§impl CreateUnhandledError for PublishError
impl CreateUnhandledError for PublishError
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 PublishError
impl Debug for PublishError
source§impl Display for PublishError
impl Display for PublishError
source§impl Error for PublishError
impl Error for PublishError
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<PublishError> for Error
impl From<PublishError> for Error
source§fn from(err: PublishError) -> Self
fn from(err: PublishError) -> Self
source§impl ProvideErrorKind for PublishError
impl ProvideErrorKind for PublishError
source§impl ProvideErrorMetadata for PublishError
impl ProvideErrorMetadata for PublishError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for PublishError
impl RequestId for PublishError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.