Enum aws_sdk_lambda::Error
source · [−]#[non_exhaustive]
pub enum Error {
Show 35 variants
CodeSigningConfigNotFoundException(CodeSigningConfigNotFoundException),
CodeStorageExceededException(CodeStorageExceededException),
CodeVerificationFailedException(CodeVerificationFailedException),
Ec2AccessDeniedException(Ec2AccessDeniedException),
Ec2ThrottledException(Ec2ThrottledException),
Ec2UnexpectedException(Ec2UnexpectedException),
EfsioException(EfsioException),
EfsMountConnectivityException(EfsMountConnectivityException),
EfsMountFailureException(EfsMountFailureException),
EfsMountTimeoutException(EfsMountTimeoutException),
EniLimitReachedException(EniLimitReachedException),
InvalidCodeSignatureException(InvalidCodeSignatureException),
InvalidParameterValueException(InvalidParameterValueException),
InvalidRequestContentException(InvalidRequestContentException),
InvalidRuntimeException(InvalidRuntimeException),
InvalidSecurityGroupIdException(InvalidSecurityGroupIdException),
InvalidSubnetIdException(InvalidSubnetIdException),
InvalidZipFileException(InvalidZipFileException),
KmsAccessDeniedException(KmsAccessDeniedException),
KmsDisabledException(KmsDisabledException),
KmsInvalidStateException(KmsInvalidStateException),
KmsNotFoundException(KmsNotFoundException),
PolicyLengthExceededException(PolicyLengthExceededException),
PreconditionFailedException(PreconditionFailedException),
ProvisionedConcurrencyConfigNotFoundException(ProvisionedConcurrencyConfigNotFoundException),
RequestTooLargeException(RequestTooLargeException),
ResourceConflictException(ResourceConflictException),
ResourceInUseException(ResourceInUseException),
ResourceNotFoundException(ResourceNotFoundException),
ResourceNotReadyException(ResourceNotReadyException),
ServiceException(ServiceException),
SubnetIpAddressLimitReachedException(SubnetIpAddressLimitReachedException),
TooManyRequestsException(TooManyRequestsException),
UnsupportedMediaTypeException(UnsupportedMediaTypeException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
All possible error types for this service.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
CodeSigningConfigNotFoundException(CodeSigningConfigNotFoundException)
The specified code signing configuration does not exist.
CodeStorageExceededException(CodeStorageExceededException)
You have exceeded your maximum total code size per account. Learn more
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.
Ec2AccessDeniedException(Ec2AccessDeniedException)
Need additional permissions to configure VPC settings.
Ec2ThrottledException(Ec2ThrottledException)
Lambda was throttled by Amazon EC2 during Lambda function initialization using the execution role provided for the Lambda function.
Ec2UnexpectedException(Ec2UnexpectedException)
Lambda received an unexpected EC2 client exception while setting up for the Lambda function.
EfsioException(EfsioException)
An error occurred when reading from or writing to a connected file system.
EfsMountConnectivityException(EfsMountConnectivityException)
The function couldn't make a network connection to the configured file system.
EfsMountFailureException(EfsMountFailureException)
The function couldn't mount the configured file system due to a permission or configuration issue.
EfsMountTimeoutException(EfsMountTimeoutException)
The function was able to make a network connection to the configured file system, but the mount operation timed out.
EniLimitReachedException(EniLimitReachedException)
Lambda was not able to create an elastic network interface in the VPC, specified as part of Lambda function configuration, because the limit for network interfaces has been reached.
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.
InvalidParameterValueException(InvalidParameterValueException)
One of the parameters in the request is invalid.
InvalidRequestContentException(InvalidRequestContentException)
The request body could not be parsed as JSON.
InvalidRuntimeException(InvalidRuntimeException)
The runtime or runtime version specified is not supported.
InvalidSecurityGroupIdException(InvalidSecurityGroupIdException)
The Security Group ID provided in the Lambda function VPC configuration is invalid.
InvalidSubnetIdException(InvalidSubnetIdException)
The Subnet ID provided in the Lambda function VPC configuration is invalid.
InvalidZipFileException(InvalidZipFileException)
Lambda could not unzip the deployment package.
KmsAccessDeniedException(KmsAccessDeniedException)
Lambda was unable to decrypt the environment variables because KMS access was denied. Check the Lambda function's KMS permissions.
KmsDisabledException(KmsDisabledException)
Lambda was unable to decrypt the environment variables because the KMS key used is disabled. Check the Lambda function's KMS key settings.
KmsInvalidStateException(KmsInvalidStateException)
Lambda was unable to decrypt the environment variables because the KMS key used is in an invalid state for Decrypt. Check the function's KMS key settings.
KmsNotFoundException(KmsNotFoundException)
Lambda was unable to decrypt the environment variables because the KMS key was not found. Check the function's KMS key settings.
PolicyLengthExceededException(PolicyLengthExceededException)
The permissions policy for the resource is too large. Learn more
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.
ProvisionedConcurrencyConfigNotFoundException(ProvisionedConcurrencyConfigNotFoundException)
The specified configuration does not exist.
RequestTooLargeException(RequestTooLargeException)
The request payload exceeded the Invoke
request body JSON input limit. For more information, see Limits.
ResourceConflictException(ResourceConflictException)
The resource already exists, or another operation is in progress.
ResourceInUseException(ResourceInUseException)
The operation conflicts with the resource's availability. For example, you attempted to update an EventSource Mapping in CREATING, or tried to delete a EventSource mapping currently in the UPDATING state.
ResourceNotFoundException(ResourceNotFoundException)
The resource specified in the request does not exist.
ResourceNotReadyException(ResourceNotReadyException)
The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.
ServiceException(ServiceException)
The Lambda service encountered an internal error.
SubnetIpAddressLimitReachedException(SubnetIpAddressLimitReachedException)
Lambda was not able to set up VPC access for the Lambda function because one or more configured subnets has no available IP addresses.
TooManyRequestsException(TooManyRequestsException)
The request throughput limit was exceeded.
UnsupportedMediaTypeException(UnsupportedMediaTypeException)
The content type of the Invoke
request body is not JSON.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unhandled error occurred.
Trait Implementations
sourceimpl Error for Error
impl Error for Error
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl<R> From<SdkError<AddLayerVersionPermissionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<AddLayerVersionPermissionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<AddLayerVersionPermissionError, R>) -> Self
fn from(err: SdkError<AddLayerVersionPermissionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<AddPermissionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<AddPermissionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<AddPermissionError, R>) -> Self
fn from(err: SdkError<AddPermissionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<CreateAliasError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateAliasError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateAliasError, R>) -> Self
fn from(err: SdkError<CreateAliasError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<CreateCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateCodeSigningConfigError, R>) -> Self
fn from(err: SdkError<CreateCodeSigningConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<CreateEventSourceMappingError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateEventSourceMappingError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateEventSourceMappingError, R>) -> Self
fn from(err: SdkError<CreateEventSourceMappingError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<CreateFunctionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateFunctionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateFunctionError, R>) -> Self
fn from(err: SdkError<CreateFunctionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<CreateFunctionUrlConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateFunctionUrlConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateFunctionUrlConfigError, R>) -> Self
fn from(err: SdkError<CreateFunctionUrlConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteAliasError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteAliasError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteAliasError, R>) -> Self
fn from(err: SdkError<DeleteAliasError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteCodeSigningConfigError, R>) -> Self
fn from(err: SdkError<DeleteCodeSigningConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteEventSourceMappingError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteEventSourceMappingError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteEventSourceMappingError, R>) -> Self
fn from(err: SdkError<DeleteEventSourceMappingError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteFunctionCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteFunctionCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteFunctionCodeSigningConfigError, R>) -> Self
fn from(err: SdkError<DeleteFunctionCodeSigningConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteFunctionConcurrencyError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteFunctionConcurrencyError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteFunctionConcurrencyError, R>) -> Self
fn from(err: SdkError<DeleteFunctionConcurrencyError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteFunctionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteFunctionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteFunctionError, R>) -> Self
fn from(err: SdkError<DeleteFunctionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteFunctionEventInvokeConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteFunctionEventInvokeConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteFunctionEventInvokeConfigError, R>) -> Self
fn from(err: SdkError<DeleteFunctionEventInvokeConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteFunctionUrlConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteFunctionUrlConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteFunctionUrlConfigError, R>) -> Self
fn from(err: SdkError<DeleteFunctionUrlConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteLayerVersionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteLayerVersionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteLayerVersionError, R>) -> Self
fn from(err: SdkError<DeleteLayerVersionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteProvisionedConcurrencyConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteProvisionedConcurrencyConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteProvisionedConcurrencyConfigError, R>) -> Self
fn from(err: SdkError<DeleteProvisionedConcurrencyConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetAccountSettingsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetAccountSettingsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetAccountSettingsError, R>) -> Self
fn from(err: SdkError<GetAccountSettingsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetAliasError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetAliasError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetAliasError, R>) -> Self
fn from(err: SdkError<GetAliasError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetCodeSigningConfigError, R>) -> Self
fn from(err: SdkError<GetCodeSigningConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetEventSourceMappingError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetEventSourceMappingError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetEventSourceMappingError, R>) -> Self
fn from(err: SdkError<GetEventSourceMappingError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetFunctionCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetFunctionCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetFunctionCodeSigningConfigError, R>) -> Self
fn from(err: SdkError<GetFunctionCodeSigningConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetFunctionConcurrencyError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetFunctionConcurrencyError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetFunctionConcurrencyError, R>) -> Self
fn from(err: SdkError<GetFunctionConcurrencyError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetFunctionConfigurationError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetFunctionConfigurationError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetFunctionConfigurationError, R>) -> Self
fn from(err: SdkError<GetFunctionConfigurationError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetFunctionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetFunctionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetFunctionError, R>) -> Self
fn from(err: SdkError<GetFunctionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetFunctionEventInvokeConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetFunctionEventInvokeConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetFunctionEventInvokeConfigError, R>) -> Self
fn from(err: SdkError<GetFunctionEventInvokeConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetFunctionUrlConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetFunctionUrlConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetFunctionUrlConfigError, R>) -> Self
fn from(err: SdkError<GetFunctionUrlConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetLayerVersionByArnError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetLayerVersionByArnError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetLayerVersionByArnError, R>) -> Self
fn from(err: SdkError<GetLayerVersionByArnError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetLayerVersionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetLayerVersionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetLayerVersionError, R>) -> Self
fn from(err: SdkError<GetLayerVersionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetLayerVersionPolicyError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetLayerVersionPolicyError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetLayerVersionPolicyError, R>) -> Self
fn from(err: SdkError<GetLayerVersionPolicyError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetPolicyError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetPolicyError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetPolicyError, R>) -> Self
fn from(err: SdkError<GetPolicyError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<GetProvisionedConcurrencyConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<GetProvisionedConcurrencyConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<GetProvisionedConcurrencyConfigError, R>) -> Self
fn from(err: SdkError<GetProvisionedConcurrencyConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<InvokeAsyncError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<InvokeAsyncError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<InvokeAsyncError, R>) -> Self
fn from(err: SdkError<InvokeAsyncError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<InvokeError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<InvokeError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<InvokeError, R>) -> Self
fn from(err: SdkError<InvokeError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListAliasesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListAliasesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListAliasesError, R>) -> Self
fn from(err: SdkError<ListAliasesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListCodeSigningConfigsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListCodeSigningConfigsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListCodeSigningConfigsError, R>) -> Self
fn from(err: SdkError<ListCodeSigningConfigsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListEventSourceMappingsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListEventSourceMappingsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListEventSourceMappingsError, R>) -> Self
fn from(err: SdkError<ListEventSourceMappingsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListFunctionEventInvokeConfigsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListFunctionEventInvokeConfigsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListFunctionEventInvokeConfigsError, R>) -> Self
fn from(err: SdkError<ListFunctionEventInvokeConfigsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListFunctionUrlConfigsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListFunctionUrlConfigsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListFunctionUrlConfigsError, R>) -> Self
fn from(err: SdkError<ListFunctionUrlConfigsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListFunctionsByCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListFunctionsByCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListFunctionsByCodeSigningConfigError, R>) -> Self
fn from(err: SdkError<ListFunctionsByCodeSigningConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListFunctionsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListFunctionsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListFunctionsError, R>) -> Self
fn from(err: SdkError<ListFunctionsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListLayerVersionsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListLayerVersionsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListLayerVersionsError, R>) -> Self
fn from(err: SdkError<ListLayerVersionsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListLayersError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListLayersError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListLayersError, R>) -> Self
fn from(err: SdkError<ListLayersError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListProvisionedConcurrencyConfigsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListProvisionedConcurrencyConfigsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListProvisionedConcurrencyConfigsError, R>) -> Self
fn from(err: SdkError<ListProvisionedConcurrencyConfigsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListTagsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListTagsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListTagsError, R>) -> Self
fn from(err: SdkError<ListTagsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListVersionsByFunctionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListVersionsByFunctionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListVersionsByFunctionError, R>) -> Self
fn from(err: SdkError<ListVersionsByFunctionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PublishLayerVersionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PublishLayerVersionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PublishLayerVersionError, R>) -> Self
fn from(err: SdkError<PublishLayerVersionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PublishVersionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PublishVersionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PublishVersionError, R>) -> Self
fn from(err: SdkError<PublishVersionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PutFunctionCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PutFunctionCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PutFunctionCodeSigningConfigError, R>) -> Self
fn from(err: SdkError<PutFunctionCodeSigningConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PutFunctionConcurrencyError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PutFunctionConcurrencyError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PutFunctionConcurrencyError, R>) -> Self
fn from(err: SdkError<PutFunctionConcurrencyError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PutFunctionEventInvokeConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PutFunctionEventInvokeConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PutFunctionEventInvokeConfigError, R>) -> Self
fn from(err: SdkError<PutFunctionEventInvokeConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PutProvisionedConcurrencyConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PutProvisionedConcurrencyConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PutProvisionedConcurrencyConfigError, R>) -> Self
fn from(err: SdkError<PutProvisionedConcurrencyConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<RemoveLayerVersionPermissionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<RemoveLayerVersionPermissionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<RemoveLayerVersionPermissionError, R>) -> Self
fn from(err: SdkError<RemoveLayerVersionPermissionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<RemovePermissionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<RemovePermissionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<RemovePermissionError, R>) -> Self
fn from(err: SdkError<RemovePermissionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<TagResourceError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<TagResourceError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<TagResourceError, R>) -> Self
fn from(err: SdkError<TagResourceError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UntagResourceError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UntagResourceError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UntagResourceError, R>) -> Self
fn from(err: SdkError<UntagResourceError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateAliasError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateAliasError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateAliasError, R>) -> Self
fn from(err: SdkError<UpdateAliasError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateCodeSigningConfigError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateCodeSigningConfigError, R>) -> Self
fn from(err: SdkError<UpdateCodeSigningConfigError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateEventSourceMappingError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateEventSourceMappingError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateEventSourceMappingError, R>) -> Self
fn from(err: SdkError<UpdateEventSourceMappingError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateFunctionCodeError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateFunctionCodeError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateFunctionCodeError, R>) -> Self
fn from(err: SdkError<UpdateFunctionCodeError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateFunctionConfigurationError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateFunctionConfigurationError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateFunctionConfigurationError, R>) -> Self
fn from(err: SdkError<UpdateFunctionConfigurationError, R>) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more