pub type CreateCloudFormationTemplateErrorKind = CreateCloudFormationTemplateError;
👎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 CreateCloudFormationTemplateErrorKind {
    BadRequestException(BadRequestException),
    ForbiddenException(ForbiddenException),
    InternalServerErrorException(InternalServerErrorException),
    NotFoundException(NotFoundException),
    TooManyRequestsException(TooManyRequestsException),
    Unhandled(Unhandled),
}

Variants§

§

BadRequestException(BadRequestException)

One of the parameters in the request is invalid.

§

ForbiddenException(ForbiddenException)

The client is not authenticated.

§

InternalServerErrorException(InternalServerErrorException)

The AWS Serverless Application Repository service encountered an internal error.

§

NotFoundException(NotFoundException)

The resource (for example, an access policy statement) specified in the request doesn't exist.

§

TooManyRequestsException(TooManyRequestsException)

The client is sending more than the allowed number of requests per unit of time.

§

Unhandled(Unhandled)

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