| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
- package appmesh
- const (
- // ErrCodeBadRequestException for service response error code
- // "BadRequestException".
- //
- // The request syntax was malformed. Check your request syntax and try again.
- ErrCodeBadRequestException = "BadRequestException"
- // ErrCodeConflictException for service response error code
- // "ConflictException".
- //
- // The request contains a client token that was used for a previous update resource
- // call with different specifications. Try the request again with a new client
- // token.
- ErrCodeConflictException = "ConflictException"
- // ErrCodeForbiddenException for service response error code
- // "ForbiddenException".
- //
- // You do not have permissions to perform this action.
- ErrCodeForbiddenException = "ForbiddenException"
- // ErrCodeInternalServerErrorException for service response error code
- // "InternalServerErrorException".
- //
- // The request processing has failed because of an unknown error, exception,
- // or failure.
- ErrCodeInternalServerErrorException = "InternalServerErrorException"
- // ErrCodeLimitExceededException for service response error code
- // "LimitExceededException".
- //
- // You have exceeded a service limit for your account. For more information,
- // see Service Limits (https://docs.aws.amazon.com/app-mesh/latest/userguide/service_limits.html)
- // in the AWS App Mesh User Guide.
- ErrCodeLimitExceededException = "LimitExceededException"
- // ErrCodeNotFoundException for service response error code
- // "NotFoundException".
- //
- // The specified resource does not exist. Check your request syntax and try
- // again.
- ErrCodeNotFoundException = "NotFoundException"
- // ErrCodeResourceInUseException for service response error code
- // "ResourceInUseException".
- //
- // You cannot delete the specified resource because it is in use or required
- // by another resource.
- ErrCodeResourceInUseException = "ResourceInUseException"
- // ErrCodeServiceUnavailableException for service response error code
- // "ServiceUnavailableException".
- //
- // The request has failed due to a temporary failure of the service.
- ErrCodeServiceUnavailableException = "ServiceUnavailableException"
- // ErrCodeTooManyRequestsException for service response error code
- // "TooManyRequestsException".
- //
- // The maximum request rate permitted by the App Mesh APIs has been exceeded
- // for your account. For best results, use an increasing or variable sleep interval
- // between requests.
- ErrCodeTooManyRequestsException = "TooManyRequestsException"
- )
|