Enum aws_sdk_secretsmanager::error::DeleteSecretErrorKind [−][src]
#[non_exhaustive]
pub enum DeleteSecretErrorKind {
InternalServiceError(InternalServiceError),
InvalidParameterException(InvalidParameterException),
InvalidRequestException(InvalidRequestException),
ResourceNotFoundException(ResourceNotFoundException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the DeleteSecret operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
InternalServiceError(InternalServiceError)
Tuple Fields
An error occurred on the server side.
InvalidParameterException(InvalidParameterException)
Tuple Fields
You provided an invalid value for a parameter.
InvalidRequestException(InvalidRequestException)
Tuple Fields
You provided a parameter value that is not valid for the current state of the resource.
Possible causes:
-
You tried to perform the operation on a secret that's currently marked deleted.
-
You tried to enable rotation on a secret that doesn't already have a Lambda function ARN configured and you didn't include such an ARN as a parameter in this call.
ResourceNotFoundException(ResourceNotFoundException)
Tuple Fields
We can't find the resource that you asked for.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for DeleteSecretErrorKind
impl Send for DeleteSecretErrorKind
impl Sync for DeleteSecretErrorKind
impl Unpin for DeleteSecretErrorKind
impl !UnwindSafe for DeleteSecretErrorKind
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