Enum aws_sdk_detective::operation::update_datasource_packages::UpdateDatasourcePackagesError
source · #[non_exhaustive]pub enum UpdateDatasourcePackagesError {
AccessDeniedException(AccessDeniedException),
InternalServerException(InternalServerException),
ResourceNotFoundException(ResourceNotFoundException),
ServiceQuotaExceededException(ServiceQuotaExceededException),
ValidationException(ValidationException),
Unhandled(Unhandled),
}
Expand description
Error type for the UpdateDatasourcePackagesError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AccessDeniedException(AccessDeniedException)
The request issuer does not have permission to access this resource or perform this operation.
InternalServerException(InternalServerException)
The request was valid but failed because of a problem with the service.
ResourceNotFoundException(ResourceNotFoundException)
The request refers to a nonexistent resource.
ServiceQuotaExceededException(ServiceQuotaExceededException)
This request cannot be completed for one of the following reasons.
-
This request cannot be completed if it would cause the number of member accounts in the behavior graph to exceed the maximum allowed. A behavior graph cannot have more than 1,200 member accounts.
-
This request cannot be completed if the current volume ingested is above the limit of 10 TB per day. Detective will not allow you to add additional member accounts.
ValidationException(ValidationException)
The request parameters are invalid.
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 UpdateDatasourcePackagesError
impl UpdateDatasourcePackagesError
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 UpdateDatasourcePackagesError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the UpdateDatasourcePackagesError::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_access_denied_exception(&self) -> bool
pub fn is_access_denied_exception(&self) -> bool
Returns true
if the error kind is UpdateDatasourcePackagesError::AccessDeniedException
.
sourcepub fn is_internal_server_exception(&self) -> bool
pub fn is_internal_server_exception(&self) -> bool
Returns true
if the error kind is UpdateDatasourcePackagesError::InternalServerException
.
sourcepub fn is_resource_not_found_exception(&self) -> bool
pub fn is_resource_not_found_exception(&self) -> bool
Returns true
if the error kind is UpdateDatasourcePackagesError::ResourceNotFoundException
.
sourcepub fn is_service_quota_exceeded_exception(&self) -> bool
pub fn is_service_quota_exceeded_exception(&self) -> bool
Returns true
if the error kind is UpdateDatasourcePackagesError::ServiceQuotaExceededException
.
sourcepub fn is_validation_exception(&self) -> bool
pub fn is_validation_exception(&self) -> bool
Returns true
if the error kind is UpdateDatasourcePackagesError::ValidationException
.
Trait Implementations§
source§impl CreateUnhandledError for UpdateDatasourcePackagesError
impl CreateUnhandledError for UpdateDatasourcePackagesError
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 UpdateDatasourcePackagesError
impl Error for UpdateDatasourcePackagesError
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<UpdateDatasourcePackagesError> for Error
impl From<UpdateDatasourcePackagesError> for Error
source§fn from(err: UpdateDatasourcePackagesError) -> Self
fn from(err: UpdateDatasourcePackagesError) -> Self
source§impl ProvideErrorMetadata for UpdateDatasourcePackagesError
impl ProvideErrorMetadata for UpdateDatasourcePackagesError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for UpdateDatasourcePackagesError
impl RequestId for UpdateDatasourcePackagesError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.