#[non_exhaustive]
pub enum Error {
Show 28 variants AlreadyExistsException(AlreadyExistsException), CfnRegistryException(CfnRegistryException), ChangeSetNotFoundException(ChangeSetNotFoundException), ConcurrentResourcesLimitExceededException(ConcurrentResourcesLimitExceededException), CreatedButModifiedException(CreatedButModifiedException), GeneratedTemplateNotFoundException(GeneratedTemplateNotFoundException), InsufficientCapabilitiesException(InsufficientCapabilitiesException), InvalidChangeSetStatusException(InvalidChangeSetStatusException), InvalidOperationException(InvalidOperationException), InvalidStateTransitionException(InvalidStateTransitionException), LimitExceededException(LimitExceededException), NameAlreadyExistsException(NameAlreadyExistsException), OperationIdAlreadyExistsException(OperationIdAlreadyExistsException), OperationInProgressException(OperationInProgressException), OperationNotFoundException(OperationNotFoundException), OperationStatusCheckFailedException(OperationStatusCheckFailedException), ResourceScanInProgressException(ResourceScanInProgressException), ResourceScanLimitExceededException(ResourceScanLimitExceededException), ResourceScanNotFoundException(ResourceScanNotFoundException), StackInstanceNotFoundException(StackInstanceNotFoundException), StackNotFoundException(StackNotFoundException), StackSetNotEmptyException(StackSetNotEmptyException), StackSetNotFoundException(StackSetNotFoundException), StaleRequestException(StaleRequestException), TokenAlreadyExistsException(TokenAlreadyExistsException), TypeConfigurationNotFoundException(TypeConfigurationNotFoundException), TypeNotFoundException(TypeNotFoundException), Unhandled(Unhandled),
}
Expand description

All possible error types for this service.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

AlreadyExistsException(AlreadyExistsException)

The resource with the name requested already exists.

§

CfnRegistryException(CfnRegistryException)

An error occurred during a CloudFormation registry operation.

§

ChangeSetNotFoundException(ChangeSetNotFoundException)

The specified change set name or ID doesn't exit. To view valid change sets for a stack, use the ListChangeSets operation.

§

ConcurrentResourcesLimitExceededException(ConcurrentResourcesLimitExceededException)

No more than 5 generated templates can be in an InProgress or Pending status at one time. This error is also returned if a generated template that is in an InProgress or Pending status is attempted to be updated or deleted.

§

CreatedButModifiedException(CreatedButModifiedException)

The specified resource exists, but has been changed.

§

GeneratedTemplateNotFoundException(GeneratedTemplateNotFoundException)

The generated template was not found.

§

InsufficientCapabilitiesException(InsufficientCapabilitiesException)

The template contains resources with capabilities that weren't specified in the Capabilities parameter.

§

InvalidChangeSetStatusException(InvalidChangeSetStatusException)

The specified change set can't be used to update the stack. For example, the change set status might be CREATE_IN_PROGRESS, or the stack status might be UPDATE_IN_PROGRESS.

§

InvalidOperationException(InvalidOperationException)

The specified operation isn't valid.

§

InvalidStateTransitionException(InvalidStateTransitionException)

Error reserved for use by the CloudFormation CLI. CloudFormation doesn't return this error to users.

§

LimitExceededException(LimitExceededException)

The quota for the resource has already been reached.

For information about resource and stack limitations, see CloudFormation quotas in the CloudFormation User Guide.

§

NameAlreadyExistsException(NameAlreadyExistsException)

The specified name is already in use.

§

OperationIdAlreadyExistsException(OperationIdAlreadyExistsException)

The specified operation ID already exists.

§

OperationInProgressException(OperationInProgressException)

Another operation is currently in progress for this stack set. Only one operation can be performed for a stack set at a given time.

§

OperationNotFoundException(OperationNotFoundException)

The specified ID refers to an operation that doesn't exist.

§

OperationStatusCheckFailedException(OperationStatusCheckFailedException)

Error reserved for use by the CloudFormation CLI. CloudFormation doesn't return this error to users.

§

ResourceScanInProgressException(ResourceScanInProgressException)

A resource scan is currently in progress. Only one can be run at a time for an account in a Region.

§

ResourceScanLimitExceededException(ResourceScanLimitExceededException)

The limit on resource scans has been exceeded. Reasons include:

  • Exceeded the daily quota for resource scans.

  • A resource scan recently failed. You must wait 10 minutes before starting a new resource scan.

  • The last resource scan failed after exceeding 100,000 resources. When this happens, you must wait 24 hours before starting a new resource scan.

§

ResourceScanNotFoundException(ResourceScanNotFoundException)

The resource scan was not found.

§

StackInstanceNotFoundException(StackInstanceNotFoundException)

The specified stack instance doesn't exist.

§

StackNotFoundException(StackNotFoundException)

The specified stack ARN doesn't exist or stack doesn't exist corresponding to the ARN in input.

§

StackSetNotEmptyException(StackSetNotEmptyException)

You can't yet delete this stack set, because it still contains one or more stack instances. Delete all stack instances from the stack set before deleting the stack set.

§

StackSetNotFoundException(StackSetNotFoundException)

The specified stack set doesn't exist.

§

StaleRequestException(StaleRequestException)

Another operation has been performed on this stack set since the specified operation was performed.

§

TokenAlreadyExistsException(TokenAlreadyExistsException)

A client request token already exists.

§

TypeConfigurationNotFoundException(TypeConfigurationNotFoundException)

The specified extension configuration can't be found.

§

TypeNotFoundException(TypeNotFoundException)

The specified extension doesn't exist in the CloudFormation registry.

§

Unhandled(Unhandled)

👎Deprecated: Matching Unhandled directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code():    err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ } See ProvideErrorMetadata for what information is available for the error.

An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<ActivateOrganizationsAccessError> for Error

source§

fn from(err: ActivateOrganizationsAccessError) -> Self

Converts to this type from the input type.
source§

impl From<ActivateTypeError> for Error

source§

fn from(err: ActivateTypeError) -> Self

Converts to this type from the input type.
source§

impl From<BatchDescribeTypeConfigurationsError> for Error

source§

fn from(err: BatchDescribeTypeConfigurationsError) -> Self

Converts to this type from the input type.
source§

impl From<BuildError> for Error

source§

fn from(value: BuildError) -> Self

Converts to this type from the input type.
source§

impl From<CancelUpdateStackError> for Error

source§

fn from(err: CancelUpdateStackError) -> Self

Converts to this type from the input type.
source§

impl From<ContinueUpdateRollbackError> for Error

source§

fn from(err: ContinueUpdateRollbackError) -> Self

Converts to this type from the input type.
source§

impl From<CreateChangeSetError> for Error

source§

fn from(err: CreateChangeSetError) -> Self

Converts to this type from the input type.
source§

impl From<CreateGeneratedTemplateError> for Error

source§

fn from(err: CreateGeneratedTemplateError) -> Self

Converts to this type from the input type.
source§

impl From<CreateStackError> for Error

source§

fn from(err: CreateStackError) -> Self

Converts to this type from the input type.
source§

impl From<CreateStackInstancesError> for Error

source§

fn from(err: CreateStackInstancesError) -> Self

Converts to this type from the input type.
source§

impl From<CreateStackSetError> for Error

source§

fn from(err: CreateStackSetError) -> Self

Converts to this type from the input type.
source§

impl From<DeactivateOrganizationsAccessError> for Error

source§

fn from(err: DeactivateOrganizationsAccessError) -> Self

Converts to this type from the input type.
source§

impl From<DeactivateTypeError> for Error

source§

fn from(err: DeactivateTypeError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteChangeSetError> for Error

source§

fn from(err: DeleteChangeSetError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteGeneratedTemplateError> for Error

source§

fn from(err: DeleteGeneratedTemplateError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteStackError> for Error

source§

fn from(err: DeleteStackError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteStackInstancesError> for Error

source§

fn from(err: DeleteStackInstancesError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteStackSetError> for Error

source§

fn from(err: DeleteStackSetError) -> Self

Converts to this type from the input type.
source§

impl From<DeregisterTypeError> for Error

source§

fn from(err: DeregisterTypeError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeAccountLimitsError> for Error

source§

fn from(err: DescribeAccountLimitsError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeChangeSetError> for Error

source§

fn from(err: DescribeChangeSetError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeChangeSetHooksError> for Error

source§

fn from(err: DescribeChangeSetHooksError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeGeneratedTemplateError> for Error

source§

fn from(err: DescribeGeneratedTemplateError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeOrganizationsAccessError> for Error

source§

fn from(err: DescribeOrganizationsAccessError) -> Self

Converts to this type from the input type.
source§

impl From<DescribePublisherError> for Error

source§

fn from(err: DescribePublisherError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeResourceScanError> for Error

source§

fn from(err: DescribeResourceScanError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStackDriftDetectionStatusError> for Error

source§

fn from(err: DescribeStackDriftDetectionStatusError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStackEventsError> for Error

source§

fn from(err: DescribeStackEventsError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStackInstanceError> for Error

source§

fn from(err: DescribeStackInstanceError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStackResourceDriftsError> for Error

source§

fn from(err: DescribeStackResourceDriftsError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStackResourceError> for Error

source§

fn from(err: DescribeStackResourceError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStackResourcesError> for Error

source§

fn from(err: DescribeStackResourcesError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStackSetError> for Error

source§

fn from(err: DescribeStackSetError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStackSetOperationError> for Error

source§

fn from(err: DescribeStackSetOperationError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeStacksError> for Error

source§

fn from(err: DescribeStacksError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeTypeError> for Error

source§

fn from(err: DescribeTypeError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeTypeRegistrationError> for Error

source§

fn from(err: DescribeTypeRegistrationError) -> Self

Converts to this type from the input type.
source§

impl From<DetectStackDriftError> for Error

source§

fn from(err: DetectStackDriftError) -> Self

Converts to this type from the input type.
source§

impl From<DetectStackResourceDriftError> for Error

source§

fn from(err: DetectStackResourceDriftError) -> Self

Converts to this type from the input type.
source§

impl From<DetectStackSetDriftError> for Error

source§

fn from(err: DetectStackSetDriftError) -> Self

Converts to this type from the input type.
source§

impl From<EstimateTemplateCostError> for Error

source§

fn from(err: EstimateTemplateCostError) -> Self

Converts to this type from the input type.
source§

impl From<ExecuteChangeSetError> for Error

source§

fn from(err: ExecuteChangeSetError) -> Self

Converts to this type from the input type.
source§

impl From<GetGeneratedTemplateError> for Error

source§

fn from(err: GetGeneratedTemplateError) -> Self

Converts to this type from the input type.
source§

impl From<GetStackPolicyError> for Error

source§

fn from(err: GetStackPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<GetTemplateError> for Error

source§

fn from(err: GetTemplateError) -> Self

Converts to this type from the input type.
source§

impl From<GetTemplateSummaryError> for Error

source§

fn from(err: GetTemplateSummaryError) -> Self

Converts to this type from the input type.
source§

impl From<ImportStacksToStackSetError> for Error

source§

fn from(err: ImportStacksToStackSetError) -> Self

Converts to this type from the input type.
source§

impl From<ListChangeSetsError> for Error

source§

fn from(err: ListChangeSetsError) -> Self

Converts to this type from the input type.
source§

impl From<ListExportsError> for Error

source§

fn from(err: ListExportsError) -> Self

Converts to this type from the input type.
source§

impl From<ListGeneratedTemplatesError> for Error

source§

fn from(err: ListGeneratedTemplatesError) -> Self

Converts to this type from the input type.
source§

impl From<ListImportsError> for Error

source§

fn from(err: ListImportsError) -> Self

Converts to this type from the input type.
source§

impl From<ListResourceScanRelatedResourcesError> for Error

source§

fn from(err: ListResourceScanRelatedResourcesError) -> Self

Converts to this type from the input type.
source§

impl From<ListResourceScanResourcesError> for Error

source§

fn from(err: ListResourceScanResourcesError) -> Self

Converts to this type from the input type.
source§

impl From<ListResourceScansError> for Error

source§

fn from(err: ListResourceScansError) -> Self

Converts to this type from the input type.
source§

impl From<ListStackInstanceResourceDriftsError> for Error

source§

fn from(err: ListStackInstanceResourceDriftsError) -> Self

Converts to this type from the input type.
source§

impl From<ListStackInstancesError> for Error

source§

fn from(err: ListStackInstancesError) -> Self

Converts to this type from the input type.
source§

impl From<ListStackResourcesError> for Error

source§

fn from(err: ListStackResourcesError) -> Self

Converts to this type from the input type.
source§

impl From<ListStackSetAutoDeploymentTargetsError> for Error

source§

fn from(err: ListStackSetAutoDeploymentTargetsError) -> Self

Converts to this type from the input type.
source§

impl From<ListStackSetOperationResultsError> for Error

source§

fn from(err: ListStackSetOperationResultsError) -> Self

Converts to this type from the input type.
source§

impl From<ListStackSetOperationsError> for Error

source§

fn from(err: ListStackSetOperationsError) -> Self

Converts to this type from the input type.
source§

impl From<ListStackSetsError> for Error

source§

fn from(err: ListStackSetsError) -> Self

Converts to this type from the input type.
source§

impl From<ListStacksError> for Error

source§

fn from(err: ListStacksError) -> Self

Converts to this type from the input type.
source§

impl From<ListTypeRegistrationsError> for Error

source§

fn from(err: ListTypeRegistrationsError) -> Self

Converts to this type from the input type.
source§

impl From<ListTypeVersionsError> for Error

source§

fn from(err: ListTypeVersionsError) -> Self

Converts to this type from the input type.
source§

impl From<ListTypesError> for Error

source§

fn from(err: ListTypesError) -> Self

Converts to this type from the input type.
source§

impl From<PublishTypeError> for Error

source§

fn from(err: PublishTypeError) -> Self

Converts to this type from the input type.
source§

impl From<RecordHandlerProgressError> for Error

source§

fn from(err: RecordHandlerProgressError) -> Self

Converts to this type from the input type.
source§

impl From<RegisterPublisherError> for Error

source§

fn from(err: RegisterPublisherError) -> Self

Converts to this type from the input type.
source§

impl From<RegisterTypeError> for Error

source§

fn from(err: RegisterTypeError) -> Self

Converts to this type from the input type.
source§

impl From<RollbackStackError> for Error

source§

fn from(err: RollbackStackError) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ActivateOrganizationsAccessError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ActivateOrganizationsAccessError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ActivateTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ActivateTypeError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<BatchDescribeTypeConfigurationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<BatchDescribeTypeConfigurationsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CancelUpdateStackError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CancelUpdateStackError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ContinueUpdateRollbackError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ContinueUpdateRollbackError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateChangeSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateChangeSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateGeneratedTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateGeneratedTemplateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateStackError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateStackError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateStackInstancesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateStackInstancesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateStackSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateStackSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeactivateOrganizationsAccessError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeactivateOrganizationsAccessError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeactivateTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeactivateTypeError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteChangeSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteChangeSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteGeneratedTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteGeneratedTemplateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteStackError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteStackError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteStackInstancesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteStackInstancesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteStackSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteStackSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeregisterTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeregisterTypeError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeAccountLimitsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeAccountLimitsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeChangeSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeChangeSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeChangeSetHooksError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeChangeSetHooksError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeGeneratedTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeGeneratedTemplateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeOrganizationsAccessError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeOrganizationsAccessError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribePublisherError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribePublisherError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeResourceScanError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeResourceScanError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStackDriftDetectionStatusError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStackDriftDetectionStatusError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStackEventsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStackEventsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStackInstanceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStackInstanceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStackResourceDriftsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStackResourceDriftsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStackResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStackResourceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStackResourcesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStackResourcesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStackSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStackSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStackSetOperationError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStackSetOperationError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeStacksError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeStacksError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeTypeError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeTypeRegistrationError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeTypeRegistrationError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DetectStackDriftError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DetectStackDriftError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DetectStackResourceDriftError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DetectStackResourceDriftError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DetectStackSetDriftError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DetectStackSetDriftError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<EstimateTemplateCostError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<EstimateTemplateCostError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ExecuteChangeSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ExecuteChangeSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetGeneratedTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetGeneratedTemplateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetStackPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetStackPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetTemplateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetTemplateSummaryError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetTemplateSummaryError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ImportStacksToStackSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ImportStacksToStackSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListChangeSetsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListChangeSetsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListExportsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListExportsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListGeneratedTemplatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListGeneratedTemplatesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListImportsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListImportsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListResourceScanRelatedResourcesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListResourceScanRelatedResourcesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListResourceScanResourcesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListResourceScanResourcesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListResourceScansError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListResourceScansError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListStackInstanceResourceDriftsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListStackInstanceResourceDriftsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListStackInstancesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListStackInstancesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListStackResourcesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListStackResourcesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListStackSetAutoDeploymentTargetsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListStackSetAutoDeploymentTargetsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListStackSetOperationResultsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListStackSetOperationResultsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListStackSetOperationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListStackSetOperationsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListStackSetsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListStackSetsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListStacksError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListStacksError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListTypeRegistrationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListTypeRegistrationsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListTypeVersionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListTypeVersionsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListTypesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListTypesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PublishTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PublishTypeError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<RecordHandlerProgressError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<RecordHandlerProgressError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<RegisterPublisherError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<RegisterPublisherError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<RegisterTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<RegisterTypeError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<RollbackStackError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<RollbackStackError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<SetStackPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<SetStackPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<SetTypeConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<SetTypeConfigurationError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<SetTypeDefaultVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<SetTypeDefaultVersionError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<SignalResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<SignalResourceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<StartResourceScanError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<StartResourceScanError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<StopStackSetOperationError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<StopStackSetOperationError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TestTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TestTypeError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateGeneratedTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateGeneratedTemplateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateStackError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateStackError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateStackInstancesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateStackInstancesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateStackSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateStackSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateTerminationProtectionError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateTerminationProtectionError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ValidateTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ValidateTemplateError, R>) -> Self

Converts to this type from the input type.
source§

impl From<SetStackPolicyError> for Error

source§

fn from(err: SetStackPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<SetTypeConfigurationError> for Error

source§

fn from(err: SetTypeConfigurationError) -> Self

Converts to this type from the input type.
source§

impl From<SetTypeDefaultVersionError> for Error

source§

fn from(err: SetTypeDefaultVersionError) -> Self

Converts to this type from the input type.
source§

impl From<SignalResourceError> for Error

source§

fn from(err: SignalResourceError) -> Self

Converts to this type from the input type.
source§

impl From<StartResourceScanError> for Error

source§

fn from(err: StartResourceScanError) -> Self

Converts to this type from the input type.
source§

impl From<StopStackSetOperationError> for Error

source§

fn from(err: StopStackSetOperationError) -> Self

Converts to this type from the input type.
source§

impl From<TestTypeError> for Error

source§

fn from(err: TestTypeError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateGeneratedTemplateError> for Error

source§

fn from(err: UpdateGeneratedTemplateError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateStackError> for Error

source§

fn from(err: UpdateStackError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateStackInstancesError> for Error

source§

fn from(err: UpdateStackInstancesError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateStackSetError> for Error

source§

fn from(err: UpdateStackSetError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateTerminationProtectionError> for Error

source§

fn from(err: UpdateTerminationProtectionError) -> Self

Converts to this type from the input type.
source§

impl From<ValidateTemplateError> for Error

source§

fn from(err: ValidateTemplateError) -> Self

Converts to this type from the input type.
source§

impl ProvideErrorMetadata for Error

source§

fn meta(&self) -> &ErrorMetadata

Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
source§

fn code(&self) -> Option<&str>

Returns the error code if it’s available.
source§

fn message(&self) -> Option<&str>

Returns the error message, if there is one.
source§

impl RequestId for Error

source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.

Auto Trait Implementations§

§

impl Freeze for Error

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more