pub type DescribeComponentErrorKind = DescribeComponentError;
👎Deprecated: Operation *Error/*ErrorKind types were combined into a single *Error enum. The .kind field on *Error no longer exists and isn’t needed anymore (you can just match on the error directly since it’s an enum now).
Expand description

Do not use this.

Operation *Error/*ErrorKind types were combined into a single *Error enum. The .kind field on *Error no longer exists and isn’t needed anymore (you can just match on the error directly since it’s an enum now).

Aliased Type§

enum DescribeComponentErrorKind {
    InternalServerException(InternalServerException),
    ResourceNotFoundException(ResourceNotFoundException),
    ValidationException(ValidationException),
    Unhandled(Unhandled),
}

Variants§

§

InternalServerException(InternalServerException)

The server encountered an internal error and is unable to complete the request.

§

ResourceNotFoundException(ResourceNotFoundException)

The resource does not exist in the customer account.

§

ValidationException(ValidationException)

The parameter is not valid.

§

Unhandled(Unhandled)

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