#[non_exhaustive]
pub enum CreateSecretErrorKind {
EncryptionFailure(EncryptionFailure),
InternalServiceError(InternalServiceError),
InvalidParameterException(InvalidParameterException),
InvalidRequestException(InvalidRequestException),
LimitExceededException(LimitExceededException),
MalformedPolicyDocumentException(MalformedPolicyDocumentException),
PreconditionNotMetException(PreconditionNotMetException),
ResourceExistsException(ResourceExistsException),
ResourceNotFoundException(ResourceNotFoundException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the CreateSecret
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
EncryptionFailure(EncryptionFailure)
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)
An error occurred on the server side.
InvalidParameterException(InvalidParameterException)
The parameter name is invalid value.
InvalidRequestException(InvalidRequestException)
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)
The request failed because it would exceed one of the Secrets Manager quotas.
MalformedPolicyDocumentException(MalformedPolicyDocumentException)
The resource policy has syntax errors.
PreconditionNotMetException(PreconditionNotMetException)
The request failed because you did not complete all the prerequisite steps.
ResourceExistsException(ResourceExistsException)
A resource with the ID you requested already exists.
ResourceNotFoundException(ResourceNotFoundException)
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 CreateSecretErrorKind
impl Send for CreateSecretErrorKind
impl Sync for CreateSecretErrorKind
impl Unpin for CreateSecretErrorKind
impl !UnwindSafe for CreateSecretErrorKind
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