module Network.AWS.KMS.Types
(
kMS
, _InvalidMarkerException
, _KMSInvalidStateException
, _InvalidKeyUsageException
, _MalformedPolicyDocumentException
, _UnsupportedOperationException
, _DisabledException
, _KeyUnavailableException
, _KMSInternalException
, _NotFoundException
, _InvalidAliasNameException
, _InvalidGrantIdException
, _InvalidGrantTokenException
, _InvalidARNException
, _DependencyTimeoutException
, _InvalidCiphertextException
, _AlreadyExistsException
, _LimitExceededException
, DataKeySpec (..)
, GrantOperation (..)
, KeyState (..)
, KeyUsageType (..)
, AliasListEntry
, aliasListEntry
, aleTargetKeyId
, aleAliasName
, aleAliasARN
, GrantConstraints
, grantConstraints
, gcEncryptionContextEquals
, gcEncryptionContextSubset
, GrantListEntry
, grantListEntry
, gleKeyId
, gleRetiringPrincipal
, gleIssuingAccount
, gleGrantId
, gleConstraints
, gleGranteePrincipal
, gleName
, gleCreationDate
, gleOperations
, KeyListEntry
, keyListEntry
, kleKeyId
, kleKeyARN
, KeyMetadata
, keyMetadata
, kmEnabled
, kmARN
, kmKeyState
, kmAWSAccountId
, kmKeyUsage
, kmCreationDate
, kmDeletionDate
, kmDescription
, kmKeyId
, ListGrantsResponse
, listGrantsResponse
, lgTruncated
, lgGrants
, lgNextMarker
) where
import Network.AWS.KMS.Types.Product
import Network.AWS.KMS.Types.Sum
import Network.AWS.Prelude
import Network.AWS.Sign.V4
kMS :: Service
kMS =
Service
{ _svcAbbrev = "KMS"
, _svcSigner = v4
, _svcPrefix = "kms"
, _svcVersion = "2014-11-01"
, _svcEndpoint = defaultEndpoint kMS
, _svcTimeout = Just 70
, _svcCheck = statusSuccess
, _svcError = parseJSONError
, _svcRetry = retry
}
where
retry =
Exponential
{ _retryBase = 5.0e-2
, _retryGrowth = 2
, _retryAttempts = 5
, _retryCheck = check
}
check e
| has (hasCode "ThrottlingException" . hasStatus 400) e =
Just "throttling_exception"
| has (hasCode "Throttling" . hasStatus 400) e = Just "throttling"
| has (hasStatus 503) e = Just "service_unavailable"
| has (hasStatus 500) e = Just "general_server_error"
| has (hasStatus 509) e = Just "limit_exceeded"
| otherwise = Nothing
_InvalidMarkerException :: AsError a => Getting (First ServiceError) a ServiceError
_InvalidMarkerException =
_ServiceError . hasStatus 400 . hasCode "InvalidMarker"
_KMSInvalidStateException :: AsError a => Getting (First ServiceError) a ServiceError
_KMSInvalidStateException =
_ServiceError . hasStatus 409 . hasCode "KMSInvalidStateException"
_InvalidKeyUsageException :: AsError a => Getting (First ServiceError) a ServiceError
_InvalidKeyUsageException =
_ServiceError . hasStatus 400 . hasCode "InvalidKeyUsage"
_MalformedPolicyDocumentException :: AsError a => Getting (First ServiceError) a ServiceError
_MalformedPolicyDocumentException =
_ServiceError . hasStatus 400 . hasCode "MalformedPolicyDocument"
_UnsupportedOperationException :: AsError a => Getting (First ServiceError) a ServiceError
_UnsupportedOperationException =
_ServiceError . hasStatus 400 . hasCode "UnsupportedOperation"
_DisabledException :: AsError a => Getting (First ServiceError) a ServiceError
_DisabledException = _ServiceError . hasStatus 409 . hasCode "Disabled"
_KeyUnavailableException :: AsError a => Getting (First ServiceError) a ServiceError
_KeyUnavailableException =
_ServiceError . hasStatus 500 . hasCode "KeyUnavailable"
_KMSInternalException :: AsError a => Getting (First ServiceError) a ServiceError
_KMSInternalException = _ServiceError . hasStatus 500 . hasCode "KMSInternal"
_NotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
_NotFoundException = _ServiceError . hasStatus 404 . hasCode "NotFound"
_InvalidAliasNameException :: AsError a => Getting (First ServiceError) a ServiceError
_InvalidAliasNameException =
_ServiceError . hasStatus 400 . hasCode "InvalidAliasName"
_InvalidGrantIdException :: AsError a => Getting (First ServiceError) a ServiceError
_InvalidGrantIdException =
_ServiceError . hasStatus 400 . hasCode "InvalidGrantId"
_InvalidGrantTokenException :: AsError a => Getting (First ServiceError) a ServiceError
_InvalidGrantTokenException =
_ServiceError . hasStatus 400 . hasCode "InvalidGrantToken"
_InvalidARNException :: AsError a => Getting (First ServiceError) a ServiceError
_InvalidARNException = _ServiceError . hasStatus 400 . hasCode "InvalidArn"
_DependencyTimeoutException :: AsError a => Getting (First ServiceError) a ServiceError
_DependencyTimeoutException =
_ServiceError . hasStatus 503 . hasCode "DependencyTimeout"
_InvalidCiphertextException :: AsError a => Getting (First ServiceError) a ServiceError
_InvalidCiphertextException =
_ServiceError . hasStatus 400 . hasCode "InvalidCiphertext"
_AlreadyExistsException :: AsError a => Getting (First ServiceError) a ServiceError
_AlreadyExistsException =
_ServiceError . hasStatus 400 . hasCode "AlreadyExists"
_LimitExceededException :: AsError a => Getting (First ServiceError) a ServiceError
_LimitExceededException =
_ServiceError . hasStatus 400 . hasCode "LimitExceeded"