Enum aws_sdk_ecs::Error
source · [−]#[non_exhaustive]
pub enum Error {
Show 25 variants
AccessDeniedException(AccessDeniedException),
AttributeLimitExceededException(AttributeLimitExceededException),
BlockedException(BlockedException),
ClientException(ClientException),
ClusterContainsContainerInstancesException(ClusterContainsContainerInstancesException),
ClusterContainsServicesException(ClusterContainsServicesException),
ClusterContainsTasksException(ClusterContainsTasksException),
ClusterNotFoundException(ClusterNotFoundException),
InvalidParameterException(InvalidParameterException),
LimitExceededException(LimitExceededException),
MissingVersionException(MissingVersionException),
NoUpdateAvailableException(NoUpdateAvailableException),
PlatformTaskDefinitionIncompatibilityException(PlatformTaskDefinitionIncompatibilityException),
PlatformUnknownException(PlatformUnknownException),
ResourceInUseException(ResourceInUseException),
ResourceNotFoundException(ResourceNotFoundException),
ServerException(ServerException),
ServiceNotActiveException(ServiceNotActiveException),
ServiceNotFoundException(ServiceNotFoundException),
TargetNotConnectedException(TargetNotConnectedException),
TargetNotFoundException(TargetNotFoundException),
TaskSetNotFoundException(TaskSetNotFoundException),
UnsupportedFeatureException(UnsupportedFeatureException),
UpdateInProgressException(UpdateInProgressException),
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
AccessDeniedException(AccessDeniedException)
You don't have authorization to perform the requested action.
AttributeLimitExceededException(AttributeLimitExceededException)
You can apply up to 10 custom attributes for each resource. You can view the attributes of a resource with ListAttributes
. You can remove existing attributes on a resource with DeleteAttributes
.
BlockedException(BlockedException)
Your Amazon Web Services account was blocked. For more information, contact Amazon Web Services Support.
ClientException(ClientException)
These errors are usually caused by a client action. This client action might be using an action or resource on behalf of a user that doesn't have permissions to use the action or resource,. Or, it might be specifying an identifier that isn't valid.
ClusterContainsContainerInstancesException(ClusterContainsContainerInstancesException)
You can't delete a cluster that has registered container instances. First, deregister the container instances before you can delete the cluster. For more information, see DeregisterContainerInstance
.
ClusterContainsServicesException(ClusterContainsServicesException)
You can't delete a cluster that contains services. First, update the service to reduce its desired task count to 0, and then delete the service. For more information, see UpdateService
and DeleteService
.
ClusterContainsTasksException(ClusterContainsTasksException)
You can't delete a cluster that has active tasks.
ClusterNotFoundException(ClusterNotFoundException)
The specified cluster wasn't found. You can view your available clusters with ListClusters
. Amazon ECS clusters are Region specific.
InvalidParameterException(InvalidParameterException)
The specified parameter isn't valid. Review the available parameters for the API request.
LimitExceededException(LimitExceededException)
The limit for the resource was exceeded.
MissingVersionException(MissingVersionException)
Amazon ECS can't determine the current version of the Amazon ECS container agent on the container instance and doesn't have enough information to proceed with an update. This could be because the agent running on the container instance is a previous or custom version that doesn't use our version information.
NoUpdateAvailableException(NoUpdateAvailableException)
There's no update available for this Amazon ECS container agent. This might be because the agent is already running the latest version or because it's so old that there's no update path to the current version.
PlatformTaskDefinitionIncompatibilityException(PlatformTaskDefinitionIncompatibilityException)
The specified platform version doesn't satisfy the required capabilities of the task definition.
PlatformUnknownException(PlatformUnknownException)
The specified platform version doesn't exist.
ResourceInUseException(ResourceInUseException)
The specified resource is in-use and can't be removed.
ResourceNotFoundException(ResourceNotFoundException)
The specified resource wasn't found.
ServerException(ServerException)
These errors are usually caused by a server issue.
ServiceNotActiveException(ServiceNotActiveException)
The specified service isn't active. You can't update a service that's inactive. If you have previously deleted a service, you can re-create it with CreateService
.
ServiceNotFoundException(ServiceNotFoundException)
The specified service wasn't found. You can view your available services with ListServices
. Amazon ECS services are cluster specific and Region specific.
TargetNotConnectedException(TargetNotConnectedException)
The execute command cannot run. This error can be caused by any of the following configuration issues:
-
Incorrect IAM permissions
-
The SSM agent is not installed or is not running
-
There is an interface Amazon VPC endpoint for Amazon ECS, but there is not one for for Systems Manager Session Manager
For information about how to troubleshoot the issues, see Troubleshooting issues with ECS Exec in the Amazon Elastic Container Service Developer Guide.
TargetNotFoundException(TargetNotFoundException)
The specified target wasn't found. You can view your available container instances with ListContainerInstances
. Amazon ECS container instances are cluster-specific and Region-specific.
TaskSetNotFoundException(TaskSetNotFoundException)
The specified task set wasn't found. You can view your available task sets with DescribeTaskSets
. Task sets are specific to each cluster, service and Region.
UnsupportedFeatureException(UnsupportedFeatureException)
The specified task isn't supported in this Region.
UpdateInProgressException(UpdateInProgressException)
There's already a current Amazon ECS container agent update in progress on the container instance that's specified. If the container agent becomes disconnected while it's in a transitional stage, such as PENDING
or STAGING
, the update process can get stuck in that state. However, when the agent reconnects, it resumes where it stopped previously.
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<CreateCapacityProviderError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateCapacityProviderError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateCapacityProviderError, R>) -> Self
fn from(err: SdkError<CreateCapacityProviderError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<CreateClusterError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateClusterError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateClusterError, R>) -> Self
fn from(err: SdkError<CreateClusterError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<CreateServiceError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateServiceError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateServiceError, R>) -> Self
fn from(err: SdkError<CreateServiceError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<CreateTaskSetError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<CreateTaskSetError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<CreateTaskSetError, R>) -> Self
fn from(err: SdkError<CreateTaskSetError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteAccountSettingError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteAccountSettingError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteAccountSettingError, R>) -> Self
fn from(err: SdkError<DeleteAccountSettingError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteAttributesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteAttributesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteAttributesError, R>) -> Self
fn from(err: SdkError<DeleteAttributesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteCapacityProviderError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteCapacityProviderError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteCapacityProviderError, R>) -> Self
fn from(err: SdkError<DeleteCapacityProviderError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteClusterError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteClusterError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteClusterError, R>) -> Self
fn from(err: SdkError<DeleteClusterError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteServiceError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteServiceError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteServiceError, R>) -> Self
fn from(err: SdkError<DeleteServiceError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeleteTaskSetError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeleteTaskSetError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeleteTaskSetError, R>) -> Self
fn from(err: SdkError<DeleteTaskSetError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeregisterContainerInstanceError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeregisterContainerInstanceError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeregisterContainerInstanceError, R>) -> Self
fn from(err: SdkError<DeregisterContainerInstanceError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DeregisterTaskDefinitionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DeregisterTaskDefinitionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DeregisterTaskDefinitionError, R>) -> Self
fn from(err: SdkError<DeregisterTaskDefinitionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DescribeCapacityProvidersError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DescribeCapacityProvidersError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DescribeCapacityProvidersError, R>) -> Self
fn from(err: SdkError<DescribeCapacityProvidersError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DescribeClustersError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DescribeClustersError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DescribeClustersError, R>) -> Self
fn from(err: SdkError<DescribeClustersError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DescribeContainerInstancesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DescribeContainerInstancesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DescribeContainerInstancesError, R>) -> Self
fn from(err: SdkError<DescribeContainerInstancesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DescribeServicesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DescribeServicesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DescribeServicesError, R>) -> Self
fn from(err: SdkError<DescribeServicesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DescribeTaskDefinitionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DescribeTaskDefinitionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DescribeTaskDefinitionError, R>) -> Self
fn from(err: SdkError<DescribeTaskDefinitionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DescribeTaskSetsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DescribeTaskSetsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DescribeTaskSetsError, R>) -> Self
fn from(err: SdkError<DescribeTaskSetsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DescribeTasksError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DescribeTasksError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DescribeTasksError, R>) -> Self
fn from(err: SdkError<DescribeTasksError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<DiscoverPollEndpointError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<DiscoverPollEndpointError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<DiscoverPollEndpointError, R>) -> Self
fn from(err: SdkError<DiscoverPollEndpointError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ExecuteCommandError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ExecuteCommandError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ExecuteCommandError, R>) -> Self
fn from(err: SdkError<ExecuteCommandError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListAccountSettingsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListAccountSettingsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListAccountSettingsError, R>) -> Self
fn from(err: SdkError<ListAccountSettingsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListAttributesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListAttributesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListAttributesError, R>) -> Self
fn from(err: SdkError<ListAttributesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListClustersError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListClustersError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListClustersError, R>) -> Self
fn from(err: SdkError<ListClustersError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListContainerInstancesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListContainerInstancesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListContainerInstancesError, R>) -> Self
fn from(err: SdkError<ListContainerInstancesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListServicesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListServicesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListServicesError, R>) -> Self
fn from(err: SdkError<ListServicesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListTagsForResourceError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListTagsForResourceError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListTagsForResourceError, R>) -> Self
fn from(err: SdkError<ListTagsForResourceError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListTaskDefinitionFamiliesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListTaskDefinitionFamiliesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListTaskDefinitionFamiliesError, R>) -> Self
fn from(err: SdkError<ListTaskDefinitionFamiliesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListTaskDefinitionsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListTaskDefinitionsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListTaskDefinitionsError, R>) -> Self
fn from(err: SdkError<ListTaskDefinitionsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<ListTasksError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<ListTasksError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<ListTasksError, R>) -> Self
fn from(err: SdkError<ListTasksError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PutAccountSettingDefaultError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PutAccountSettingDefaultError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PutAccountSettingDefaultError, R>) -> Self
fn from(err: SdkError<PutAccountSettingDefaultError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PutAccountSettingError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PutAccountSettingError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PutAccountSettingError, R>) -> Self
fn from(err: SdkError<PutAccountSettingError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PutAttributesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PutAttributesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PutAttributesError, R>) -> Self
fn from(err: SdkError<PutAttributesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<PutClusterCapacityProvidersError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<PutClusterCapacityProvidersError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<PutClusterCapacityProvidersError, R>) -> Self
fn from(err: SdkError<PutClusterCapacityProvidersError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<RegisterContainerInstanceError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<RegisterContainerInstanceError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<RegisterContainerInstanceError, R>) -> Self
fn from(err: SdkError<RegisterContainerInstanceError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<RegisterTaskDefinitionError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<RegisterTaskDefinitionError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<RegisterTaskDefinitionError, R>) -> Self
fn from(err: SdkError<RegisterTaskDefinitionError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<RunTaskError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<RunTaskError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<RunTaskError, R>) -> Self
fn from(err: SdkError<RunTaskError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<StartTaskError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<StartTaskError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<StartTaskError, R>) -> Self
fn from(err: SdkError<StartTaskError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<StopTaskError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<StopTaskError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<StopTaskError, R>) -> Self
fn from(err: SdkError<StopTaskError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<SubmitAttachmentStateChangesError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<SubmitAttachmentStateChangesError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<SubmitAttachmentStateChangesError, R>) -> Self
fn from(err: SdkError<SubmitAttachmentStateChangesError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<SubmitContainerStateChangeError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<SubmitContainerStateChangeError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<SubmitContainerStateChangeError, R>) -> Self
fn from(err: SdkError<SubmitContainerStateChangeError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<SubmitTaskStateChangeError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<SubmitTaskStateChangeError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<SubmitTaskStateChangeError, R>) -> Self
fn from(err: SdkError<SubmitTaskStateChangeError, 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<UpdateCapacityProviderError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateCapacityProviderError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateCapacityProviderError, R>) -> Self
fn from(err: SdkError<UpdateCapacityProviderError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateClusterError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateClusterError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateClusterError, R>) -> Self
fn from(err: SdkError<UpdateClusterError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateClusterSettingsError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateClusterSettingsError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateClusterSettingsError, R>) -> Self
fn from(err: SdkError<UpdateClusterSettingsError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateContainerAgentError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateContainerAgentError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateContainerAgentError, R>) -> Self
fn from(err: SdkError<UpdateContainerAgentError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateContainerInstancesStateError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateContainerInstancesStateError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateContainerInstancesStateError, R>) -> Self
fn from(err: SdkError<UpdateContainerInstancesStateError, R>) -> Self
Converts to this type from the input type.
sourceimpl<R> From<SdkError<UpdateServiceError, R>> for Error where
R: Send + Sync + Debug + 'static,
impl<R> From<SdkError<UpdateServiceError, R>> for Error where
R: Send + Sync + Debug + 'static,
sourcefn from(err: SdkError<UpdateServiceError, R>) -> Self
fn from(err: SdkError<UpdateServiceError, 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