Enum aws_sdk_elasticbeanstalk::Error
source · #[non_exhaustive]
pub enum Error {
Show 20 variants
CodeBuildNotInServiceRegionException(CodeBuildNotInServiceRegionException),
ElasticBeanstalkServiceException(ElasticBeanstalkServiceException),
InsufficientPrivilegesException(InsufficientPrivilegesException),
InvalidRequestException(InvalidRequestException),
ManagedActionInvalidStateException(ManagedActionInvalidStateException),
OperationInProgressException(OperationInProgressException),
PlatformVersionStillReferencedException(PlatformVersionStillReferencedException),
ResourceNotFoundException(ResourceNotFoundException),
ResourceTypeNotSupportedException(ResourceTypeNotSupportedException),
S3LocationNotInServiceRegionException(S3LocationNotInServiceRegionException),
S3SubscriptionRequiredException(S3SubscriptionRequiredException),
SourceBundleDeletionException(SourceBundleDeletionException),
TooManyApplicationVersionsException(TooManyApplicationVersionsException),
TooManyApplicationsException(TooManyApplicationsException),
TooManyBucketsException(TooManyBucketsException),
TooManyConfigurationTemplatesException(TooManyConfigurationTemplatesException),
TooManyEnvironmentsException(TooManyEnvironmentsException),
TooManyPlatformsException(TooManyPlatformsException),
TooManyTagsException(TooManyTagsException),
Unhandled(Unhandled),
}
Expand description
All possible error types for this service.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
CodeBuildNotInServiceRegionException(CodeBuildNotInServiceRegionException)
AWS CodeBuild is not available in the specified region.
ElasticBeanstalkServiceException(ElasticBeanstalkServiceException)
A generic service exception has occurred.
InsufficientPrivilegesException(InsufficientPrivilegesException)
The specified account does not have sufficient privileges for one or more AWS services.
InvalidRequestException(InvalidRequestException)
One or more input parameters is not valid. Please correct the input parameters and try the operation again.
ManagedActionInvalidStateException(ManagedActionInvalidStateException)
Cannot modify the managed action in its current state.
OperationInProgressException(OperationInProgressException)
Unable to perform the specified operation because another operation that effects an element in this activity is already in progress.
PlatformVersionStillReferencedException(PlatformVersionStillReferencedException)
You cannot delete the platform version because there are still environments running on it.
ResourceNotFoundException(ResourceNotFoundException)
A resource doesn't exist for the specified Amazon Resource Name (ARN).
ResourceTypeNotSupportedException(ResourceTypeNotSupportedException)
The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.
S3LocationNotInServiceRegionException(S3LocationNotInServiceRegionException)
The specified S3 bucket does not belong to the S3 region in which the service is running. The following regions are supported:
-
IAD/us-east-1
-
PDX/us-west-2
-
DUB/eu-west-1
S3SubscriptionRequiredException(S3SubscriptionRequiredException)
The specified account does not have a subscription to Amazon S3.
SourceBundleDeletionException(SourceBundleDeletionException)
Unable to delete the Amazon S3 source bundle associated with the application version. The application version was deleted successfully.
TooManyApplicationVersionsException(TooManyApplicationVersionsException)
The specified account has reached its limit of application versions.
TooManyApplicationsException(TooManyApplicationsException)
The specified account has reached its limit of applications.
TooManyBucketsException(TooManyBucketsException)
The specified account has reached its limit of Amazon S3 buckets.
TooManyConfigurationTemplatesException(TooManyConfigurationTemplatesException)
The specified account has reached its limit of configuration templates.
TooManyEnvironmentsException(TooManyEnvironmentsException)
The specified account has reached its limit of environments.
TooManyPlatformsException(TooManyPlatformsException)
You have exceeded the maximum number of allowed platforms associated with the account.
TooManyTagsException(TooManyTagsException)
The number of tags in the resource would exceed the number of tags that each resource can have.
To calculate this, the operation considers both the number of tags the resource already has and the tags this operation would add if it succeeded.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext
, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source
for more details about the underlying cause.