#[non_exhaustive]
pub enum PutSecretValueErrorKind {
EncryptionFailure(EncryptionFailure),
InternalServiceError(InternalServiceError),
InvalidParameterException(InvalidParameterException),
InvalidRequestException(InvalidRequestException),
LimitExceededException(LimitExceededException),
ResourceExistsException(ResourceExistsException),
ResourceNotFoundException(ResourceNotFoundException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the PutSecretValue
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
EncryptionFailure(EncryptionFailure)
Tuple Fields
Secrets Manager can't encrypt the protected secret text using the provided KMS key. Check that the KMS key is available, enabled, and not in an invalid state. For more information, see Key state: Effect on your KMS key.
InternalServiceError(InternalServiceError)
Tuple Fields
An error occurred on the server side.
InvalidParameterException(InvalidParameterException)
Tuple Fields
The parameter name is invalid value.
InvalidRequestException(InvalidRequestException)
Tuple Fields
A parameter value is not valid for the current state of the resource.
Possible causes:
-
The secret is scheduled for deletion.
-
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.
LimitExceededException(LimitExceededException)
Tuple Fields
The request failed because it would exceed one of the Secrets Manager quotas.
ResourceExistsException(ResourceExistsException)
Tuple Fields
A resource with the ID you requested already exists.
ResourceNotFoundException(ResourceNotFoundException)
Tuple Fields
Secrets Manager 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 PutSecretValueErrorKind
impl Send for PutSecretValueErrorKind
impl Sync for PutSecretValueErrorKind
impl Unpin for PutSecretValueErrorKind
impl !UnwindSafe for PutSecretValueErrorKind
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