#[non_exhaustive]pub enum UpdateParallelDataError {
ConcurrentModificationException(ConcurrentModificationException),
ConflictException(ConflictException),
InternalServerException(InternalServerException),
InvalidParameterValueException(InvalidParameterValueException),
InvalidRequestException(InvalidRequestException),
LimitExceededException(LimitExceededException),
ResourceNotFoundException(ResourceNotFoundException),
TooManyRequestsException(TooManyRequestsException),
Unhandled(Unhandled),
}
Expand description
Error type for the UpdateParallelDataError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ConcurrentModificationException(ConcurrentModificationException)
Another modification is being made. That modification must complete before you can make your change.
ConflictException(ConflictException)
There was a conflict processing the request. Try your request again.
InternalServerException(InternalServerException)
An internal server error occurred. Retry your request.
InvalidParameterValueException(InvalidParameterValueException)
The value of the parameter is not valid. Review the value of the parameter you are using to correct it, and then retry your operation.
InvalidRequestException(InvalidRequestException)
The request that you made is not valid. Check your request to determine why it's not valid and then retry the request.
LimitExceededException(LimitExceededException)
The specified limit has been exceeded. Review your request and retry it with a quantity below the stated limit.
ResourceNotFoundException(ResourceNotFoundException)
The resource you are looking for has not been found. Review the resource you're looking for and see if a different resource will accomplish your needs before retrying the revised request.
TooManyRequestsException(TooManyRequestsException)
You have made too many requests within a short period of time. Wait for a short time and then try your request again.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl UpdateParallelDataError
impl UpdateParallelDataError
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 UpdateParallelDataError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the UpdateParallelDataError::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_concurrent_modification_exception(&self) -> bool
pub fn is_concurrent_modification_exception(&self) -> bool
Returns true
if the error kind is UpdateParallelDataError::ConcurrentModificationException
.
sourcepub fn is_conflict_exception(&self) -> bool
pub fn is_conflict_exception(&self) -> bool
Returns true
if the error kind is UpdateParallelDataError::ConflictException
.
sourcepub fn is_internal_server_exception(&self) -> bool
pub fn is_internal_server_exception(&self) -> bool
Returns true
if the error kind is UpdateParallelDataError::InternalServerException
.
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 UpdateParallelDataError::InvalidParameterValueException
.
sourcepub fn is_invalid_request_exception(&self) -> bool
pub fn is_invalid_request_exception(&self) -> bool
Returns true
if the error kind is UpdateParallelDataError::InvalidRequestException
.
sourcepub fn is_limit_exceeded_exception(&self) -> bool
pub fn is_limit_exceeded_exception(&self) -> bool
Returns true
if the error kind is UpdateParallelDataError::LimitExceededException
.
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 UpdateParallelDataError::ResourceNotFoundException
.
sourcepub fn is_too_many_requests_exception(&self) -> bool
pub fn is_too_many_requests_exception(&self) -> bool
Returns true
if the error kind is UpdateParallelDataError::TooManyRequestsException
.
Trait Implementations§
source§impl CreateUnhandledError for UpdateParallelDataError
impl CreateUnhandledError for UpdateParallelDataError
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 UpdateParallelDataError
impl Debug for UpdateParallelDataError
source§impl Display for UpdateParallelDataError
impl Display for UpdateParallelDataError
source§impl Error for UpdateParallelDataError
impl Error for UpdateParallelDataError
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<UpdateParallelDataError> for Error
impl From<UpdateParallelDataError> for Error
source§fn from(err: UpdateParallelDataError) -> Self
fn from(err: UpdateParallelDataError) -> Self
source§impl ProvideErrorMetadata for UpdateParallelDataError
impl ProvideErrorMetadata for UpdateParallelDataError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for UpdateParallelDataError
impl RequestId for UpdateParallelDataError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.