File: //opt/go/pkg/mod/github.com/aws/
[email protected]/service/greengrassv2/errors.go
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package greengrassv2
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeAccessDeniedException for service response error code
// "AccessDeniedException".
//
// You don't have permission to perform the action.
ErrCodeAccessDeniedException = "AccessDeniedException"
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// Your request has conflicting operations. This can occur if you're trying
// to perform more than one operation on the same resource at the same time.
ErrCodeConflictException = "ConflictException"
// ErrCodeInternalServerException for service response error code
// "InternalServerException".
//
// IoT Greengrass can't process your request right now. Try again later.
ErrCodeInternalServerException = "InternalServerException"
// ErrCodeRequestAlreadyInProgressException for service response error code
// "RequestAlreadyInProgressException".
//
// The request is already in progress. This exception occurs when you use a
// client token for multiple requests while IoT Greengrass is still processing
// an earlier request that uses the same client token.
ErrCodeRequestAlreadyInProgressException = "RequestAlreadyInProgressException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The requested resource can't be found.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceQuotaExceededException for service response error code
// "ServiceQuotaExceededException".
//
// Your request exceeds a service quota. For example, you might have the maximum
// number of components that you can create.
ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException"
// ErrCodeThrottlingException for service response error code
// "ThrottlingException".
//
// Your request exceeded a request rate quota. For example, you might have exceeded
// the amount of times that you can retrieve device or deployment status per
// second.
ErrCodeThrottlingException = "ThrottlingException"
// ErrCodeValidationException for service response error code
// "ValidationException".
//
// The request isn't valid. This can occur if your request contains malformed
// JSON or unsupported characters.
ErrCodeValidationException = "ValidationException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"AccessDeniedException": newErrorAccessDeniedException,
"ConflictException": newErrorConflictException,
"InternalServerException": newErrorInternalServerException,
"RequestAlreadyInProgressException": newErrorRequestAlreadyInProgressException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ServiceQuotaExceededException": newErrorServiceQuotaExceededException,
"ThrottlingException": newErrorThrottlingException,
"ValidationException": newErrorValidationException,
}