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
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package detective
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// The request attempted an invalid action.
ErrCodeConflictException = "ConflictException"
// ErrCodeInternalServerException for service response error code
// "InternalServerException".
//
// The request was valid but failed because of a problem with the service.
ErrCodeInternalServerException = "InternalServerException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The request refers to a nonexistent resource.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceQuotaExceededException for service response error code
// "ServiceQuotaExceededException".
//
// This request cannot be completed for one of the following reasons.
//
// * The request would cause the number of member accounts in the behavior
// graph to exceed the maximum allowed. A behavior graph cannot have more
// than 1000 member accounts.
//
// * The request would cause the data rate for the behavior graph to exceed
// the maximum allowed.
//
// * Detective is unable to verify the data rate for the member account.
// This is usually because the member account is not enrolled in Amazon GuardDuty.
ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException"
// ErrCodeValidationException for service response error code
// "ValidationException".
//
// The request parameters are invalid.
ErrCodeValidationException = "ValidationException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"ConflictException": newErrorConflictException,
"InternalServerException": newErrorInternalServerException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ServiceQuotaExceededException": newErrorServiceQuotaExceededException,
"ValidationException": newErrorValidationException,
}
|