Enum aws_sdk_cloudcontrol::error::DeleteResourceErrorKind [−][src]
#[non_exhaustive]
pub enum DeleteResourceErrorKind {
Show 20 variants
AlreadyExistsException(AlreadyExistsException),
ClientTokenConflictException(ClientTokenConflictException),
ConcurrentOperationException(ConcurrentOperationException),
GeneralServiceException(GeneralServiceException),
HandlerFailureException(HandlerFailureException),
HandlerInternalFailureException(HandlerInternalFailureException),
InvalidCredentialsException(InvalidCredentialsException),
InvalidRequestException(InvalidRequestException),
NetworkFailureException(NetworkFailureException),
NotStabilizedException(NotStabilizedException),
NotUpdatableException(NotUpdatableException),
PrivateTypeException(PrivateTypeException),
ResourceConflictException(ResourceConflictException),
ResourceNotFoundException(ResourceNotFoundException),
ServiceInternalErrorException(ServiceInternalErrorException),
ServiceLimitExceededException(ServiceLimitExceededException),
ThrottlingException(ThrottlingException),
TypeNotFoundException(TypeNotFoundException),
UnsupportedActionException(UnsupportedActionException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the DeleteResource operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AlreadyExistsException(AlreadyExistsException)The resource with the name requested already exists.
Tuple Fields of AlreadyExistsException
ClientTokenConflictException(ClientTokenConflictException)The specified client token has already been used in another resource request.
It is best practice for client tokens to be unique for each resource operation request. However, client token expire after 36 hours.
Tuple Fields of ClientTokenConflictException
ConcurrentOperationException(ConcurrentOperationException)Another resource operation is currently being performed on this resource.
Tuple Fields of ConcurrentOperationException
GeneralServiceException(GeneralServiceException)The resource handler has returned that the downstream service generated an error that does not map to any other handler error code.
Tuple Fields of GeneralServiceException
HandlerFailureException(HandlerFailureException)The resource handler has failed without a returning a more specific error code. This can include timeouts.
Tuple Fields of HandlerFailureException
HandlerInternalFailureException(HandlerInternalFailureException)The resource handler has returned that an unexpected error occurred within the resource handler.
Tuple Fields of HandlerInternalFailureException
InvalidCredentialsException(InvalidCredentialsException)The resource handler has returned that the credentials provided by the user are invalid.
Tuple Fields of InvalidCredentialsException
InvalidRequestException(InvalidRequestException)The resource handler has returned that invalid input from the user has generated a generic exception.
Tuple Fields of InvalidRequestException
NetworkFailureException(NetworkFailureException)The resource handler has returned that the request could not be completed due to networking issues, such as a failure to receive a response from the server.
Tuple Fields of NetworkFailureException
NotStabilizedException(NotStabilizedException)The resource handler has returned that the downstream resource failed to complete all of its ready-state checks.
Tuple Fields of NotStabilizedException
NotUpdatableException(NotUpdatableException)One or more properties included in this resource operation are defined as create-only, and therefore cannot be updated.
Tuple Fields of NotUpdatableException
PrivateTypeException(PrivateTypeException)Cloud Control API has not received a valid response from the resource handler, due to a configuration error. This includes issues such as the resource handler returning an invalid response, or timing out.
Tuple Fields of PrivateTypeException
ResourceConflictException(ResourceConflictException)The resource is temporarily unavailable to be acted upon. For example, if the resource is currently undergoing an operation and cannot be acted upon until that operation is finished.
Tuple Fields of ResourceConflictException
ResourceNotFoundException(ResourceNotFoundException)A resource with the specified identifier cannot be found.
Tuple Fields of ResourceNotFoundException
ServiceInternalErrorException(ServiceInternalErrorException)The resource handler has returned that the downstream service returned an internal error,
typically with a 5XX HTTP status code.
Tuple Fields of ServiceInternalErrorException
ServiceLimitExceededException(ServiceLimitExceededException)The resource handler has returned that a non-transient resource limit was reached on the service side.
Tuple Fields of ServiceLimitExceededException
ThrottlingException(ThrottlingException)The request was denied due to request throttling.
Tuple Fields of ThrottlingException
TypeNotFoundException(TypeNotFoundException)The specified extension does not exist in the CloudFormation registry.
Tuple Fields of TypeNotFoundException
UnsupportedActionException(UnsupportedActionException)The specified resource does not support this resource operation.
Tuple Fields of UnsupportedActionException
An unexpected error, eg. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for DeleteResourceErrorKind
impl Send for DeleteResourceErrorKind
impl Sync for DeleteResourceErrorKind
impl Unpin for DeleteResourceErrorKind
impl !UnwindSafe for DeleteResourceErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more