1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package managedblockchain
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeAccessDeniedException for service response error code
// "AccessDeniedException".
//
// You don't have sufficient access to perform this action.
ErrCodeAccessDeniedException = "AccessDeniedException"
// ErrCodeIllegalActionException for service response error code
// "IllegalActionException".
ErrCodeIllegalActionException = "IllegalActionException"
// ErrCodeInternalServiceErrorException for service response error code
// "InternalServiceErrorException".
//
// The request processing has failed because of an unknown error, exception
// or failure.
ErrCodeInternalServiceErrorException = "InternalServiceErrorException"
// ErrCodeInvalidRequestException for service response error code
// "InvalidRequestException".
//
// The action or operation requested is invalid. Verify that the action is typed
// correctly.
ErrCodeInvalidRequestException = "InvalidRequestException"
// ErrCodeResourceAlreadyExistsException for service response error code
// "ResourceAlreadyExistsException".
//
// A resource request is issued for a resource that already exists.
ErrCodeResourceAlreadyExistsException = "ResourceAlreadyExistsException"
// ErrCodeResourceLimitExceededException for service response error code
// "ResourceLimitExceededException".
//
// The maximum number of resources of that type already exist. Ensure the resources
// requested are within the boundaries of the service edition and your account
// limits.
ErrCodeResourceLimitExceededException = "ResourceLimitExceededException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// A requested resource doesn't exist. It may have been deleted or referenced
// incorrectly.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeResourceNotReadyException for service response error code
// "ResourceNotReadyException".
//
// The requested resource exists but isn't in a status that can complete the
// operation.
ErrCodeResourceNotReadyException = "ResourceNotReadyException"
// ErrCodeThrottlingException for service response error code
// "ThrottlingException".
//
// The request or operation couldn't be performed because a service is throttling
// requests. The most common source of throttling errors is creating resources
// that exceed your service limit for this resource type. Request a limit increase
// or delete unused resources if possible.
ErrCodeThrottlingException = "ThrottlingException"
// ErrCodeTooManyTagsException for service response error code
// "TooManyTagsException".
ErrCodeTooManyTagsException = "TooManyTagsException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"AccessDeniedException": newErrorAccessDeniedException,
"IllegalActionException": newErrorIllegalActionException,
"InternalServiceErrorException": newErrorInternalServiceErrorException,
"InvalidRequestException": newErrorInvalidRequestException,
"ResourceAlreadyExistsException": newErrorResourceAlreadyExistsException,
"ResourceLimitExceededException": newErrorResourceLimitExceededException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ResourceNotReadyException": newErrorResourceNotReadyException,
"ThrottlingException": newErrorThrottlingException,
"TooManyTagsException": newErrorTooManyTagsException,
}
|