Enum aws_sdk_lambda::error::UpdateFunctionCodeErrorKind [−][src]
#[non_exhaustive]
pub enum UpdateFunctionCodeErrorKind {
CodeSigningConfigNotFoundException(CodeSigningConfigNotFoundException),
CodeStorageExceededException(CodeStorageExceededException),
CodeVerificationFailedException(CodeVerificationFailedException),
InvalidCodeSignatureException(InvalidCodeSignatureException),
InvalidParameterValueException(InvalidParameterValueException),
PreconditionFailedException(PreconditionFailedException),
ResourceConflictException(ResourceConflictException),
ResourceNotFoundException(ResourceNotFoundException),
ServiceException(ServiceException),
TooManyRequestsException(TooManyRequestsException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the UpdateFunctionCode
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
CodeSigningConfigNotFoundException(CodeSigningConfigNotFoundException)
The specified code signing configuration does not exist.
Tuple Fields of CodeSigningConfigNotFoundException
CodeStorageExceededException(CodeStorageExceededException)
You have exceeded your maximum total code size per account. Learn more
Tuple Fields of CodeStorageExceededException
CodeVerificationFailedException(CodeVerificationFailedException)
The code signature failed one or more of the validation checks for signature mismatch or expiry, and the code signing policy is set to ENFORCE. Lambda blocks the deployment.
Tuple Fields of CodeVerificationFailedException
InvalidCodeSignatureException(InvalidCodeSignatureException)
The code signature failed the integrity check. Lambda always blocks deployment if the integrity check fails, even if code signing policy is set to WARN.
Tuple Fields of InvalidCodeSignatureException
InvalidParameterValueException(InvalidParameterValueException)
One of the parameters in the request is invalid.
Tuple Fields of InvalidParameterValueException
PreconditionFailedException(PreconditionFailedException)
The RevisionId provided does not match the latest RevisionId for the Lambda function or alias. Call the
GetFunction
or the GetAlias
API to retrieve the latest RevisionId for your
resource.
Tuple Fields of PreconditionFailedException
ResourceConflictException(ResourceConflictException)
The resource already exists, or another operation is in progress.
Tuple Fields of ResourceConflictException
ResourceNotFoundException(ResourceNotFoundException)
The resource specified in the request does not exist.
Tuple Fields of ResourceNotFoundException
ServiceException(ServiceException)
The Lambda service encountered an internal error.
Tuple Fields of ServiceException
TooManyRequestsException(TooManyRequestsException)
The request throughput limit was exceeded.
Tuple Fields of TooManyRequestsException
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for UpdateFunctionCodeErrorKind
impl Send for UpdateFunctionCodeErrorKind
impl Sync for UpdateFunctionCodeErrorKind
impl Unpin for UpdateFunctionCodeErrorKind
impl !UnwindSafe for UpdateFunctionCodeErrorKind
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