#[non_exhaustive]
pub enum GetResourceErrorKind {
Show 18 variants AlreadyExistsException(AlreadyExistsException), GeneralServiceException(GeneralServiceException), HandlerFailureException(HandlerFailureException), HandlerInternalFailureException(HandlerInternalFailureException), InvalidCredentialsException(InvalidCredentialsException), InvalidRequestException(InvalidRequestException), NetworkFailureException(NetworkFailureException), NotStabilizedException(NotStabilizedException), NotUpdatableException(NotUpdatableException), PrivateTypeException(PrivateTypeException), ResourceConflictException(ResourceConflictException), ResourceNotFoundException(ResourceNotFoundException), ServiceInternalErrorException(ServiceInternalErrorException), ServiceLimitExceededException(ServiceLimitExceededException), ThrottlingException(ThrottlingException), TypeNotFoundException(TypeNotFoundException), UnsupportedActionException(UnsupportedActionException), Unhandled(Unhandled),
}
Expand description

Types of errors that can occur for the GetResource operation.

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.

§

GeneralServiceException(GeneralServiceException)

The resource handler has returned that the downstream service generated an error that doesn't map to any other handler error code.

§

HandlerFailureException(HandlerFailureException)

The resource handler has failed without a returning a more specific error code. This can include timeouts.

§

HandlerInternalFailureException(HandlerInternalFailureException)

The resource handler has returned that an unexpected error occurred within the resource handler.

§

InvalidCredentialsException(InvalidCredentialsException)

The resource handler has returned that the credentials provided by the user are invalid.

§

InvalidRequestException(InvalidRequestException)

The resource handler has returned that invalid input from the user has generated a generic exception.

§

NetworkFailureException(NetworkFailureException)

The resource handler has returned that the request couldn't be completed due to networking issues, such as a failure to receive a response from the server.

§

NotStabilizedException(NotStabilizedException)

The resource handler has returned that the downstream resource failed to complete all of its ready-state checks.

§

NotUpdatableException(NotUpdatableException)

One or more properties included in this resource operation are defined as create-only, and therefore can't be updated.

§

PrivateTypeException(PrivateTypeException)

Cloud Control API hasn't received a valid response from the resource handler, due to a configuration error. This includes issues such as the resource handler returning an invalid response, or timing out.

§

ResourceConflictException(ResourceConflictException)

The resource is temporarily unavailable to be acted upon. For example, if the resource is currently undergoing an operation and can't be acted upon until that operation is finished.

§

ResourceNotFoundException(ResourceNotFoundException)

A resource with the specified identifier can't be found.

§

ServiceInternalErrorException(ServiceInternalErrorException)

The resource handler has returned that the downstream service returned an internal error, typically with a 5XX HTTP status code.

§

ServiceLimitExceededException(ServiceLimitExceededException)

The resource handler has returned that a non-transient resource limit was reached on the service side.

§

ThrottlingException(ThrottlingException)

The request was denied due to request throttling.

§

TypeNotFoundException(TypeNotFoundException)

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

§

UnsupportedActionException(UnsupportedActionException)

The specified resource doesn't support this resource operation.

§

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.

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

Calls U::from(self).

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

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more