amazonka-kms-1.0.0: gen/Network/AWS/KMS/Decrypt.hs
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Network.AWS.KMS.Decrypt
-- Copyright : (c) 2013-2015 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Decrypts ciphertext. Ciphertext is plaintext that has been previously
-- encrypted by using any of the following functions:
--
-- - GenerateDataKey
-- - GenerateDataKeyWithoutPlaintext
-- - Encrypt
--
-- Note that if a caller has been granted access permissions to all keys
-- (through, for example, IAM user policies that grant 'Decrypt' permission
-- on all resources), then ciphertext encrypted by using keys in other
-- accounts where the key grants access to the caller can be decrypted. To
-- remedy this, we recommend that you do not grant 'Decrypt' access in an
-- IAM user policy. Instead grant 'Decrypt' access only in key policies. If
-- you must grant 'Decrypt' access in an IAM user policy, you should scope
-- the resource to specific keys or to specific trusted accounts.
--
-- /See:/ <http://docs.aws.amazon.com/kms/latest/APIReference/API_Decrypt.html AWS API Reference> for Decrypt.
module Network.AWS.KMS.Decrypt
(
-- * Creating a Request
decrypt
, Decrypt
-- * Request Lenses
, dEncryptionContext
, dGrantTokens
, dCiphertextBlob
-- * Destructuring the Response
, decryptResponse
, DecryptResponse
-- * Response Lenses
, drsKeyId
, drsPlaintext
, drsStatus
) where
import Network.AWS.KMS.Types
import Network.AWS.KMS.Types.Product
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'decrypt' smart constructor.
data Decrypt = Decrypt'
{ _dEncryptionContext :: !(Maybe (Map Text Text))
, _dGrantTokens :: !(Maybe [Text])
, _dCiphertextBlob :: !Base64
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'Decrypt' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'dEncryptionContext'
--
-- * 'dGrantTokens'
--
-- * 'dCiphertextBlob'
decrypt
:: ByteString -- ^ 'dCiphertextBlob'
-> Decrypt
decrypt pCiphertextBlob_ =
Decrypt'
{ _dEncryptionContext = Nothing
, _dGrantTokens = Nothing
, _dCiphertextBlob = _Base64 # pCiphertextBlob_
}
-- | The encryption context. If this was specified in the Encrypt function,
-- it must be specified here or the decryption operation will fail. For
-- more information, see
-- <http://docs.aws.amazon.com/kms/latest/developerguide/encrypt-context.html Encryption Context>.
dEncryptionContext :: Lens' Decrypt (HashMap Text Text)
dEncryptionContext = lens _dEncryptionContext (\ s a -> s{_dEncryptionContext = a}) . _Default . _Map;
-- | For more information, see
-- <http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token Grant Tokens>.
dGrantTokens :: Lens' Decrypt [Text]
dGrantTokens = lens _dGrantTokens (\ s a -> s{_dGrantTokens = a}) . _Default . _Coerce;
-- | Ciphertext to be decrypted. The blob includes metadata.
dCiphertextBlob :: Lens' Decrypt ByteString
dCiphertextBlob = lens _dCiphertextBlob (\ s a -> s{_dCiphertextBlob = a}) . _Base64;
instance AWSRequest Decrypt where
type Sv Decrypt = KMS
type Rs Decrypt = DecryptResponse
request = postJSON
response
= receiveJSON
(\ s h x ->
DecryptResponse' <$>
(x .?> "KeyId") <*> (x .?> "Plaintext") <*>
(pure (fromEnum s)))
instance ToHeaders Decrypt where
toHeaders
= const
(mconcat
["X-Amz-Target" =#
("TrentService.Decrypt" :: ByteString),
"Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToJSON Decrypt where
toJSON Decrypt'{..}
= object
["EncryptionContext" .= _dEncryptionContext,
"GrantTokens" .= _dGrantTokens,
"CiphertextBlob" .= _dCiphertextBlob]
instance ToPath Decrypt where
toPath = const "/"
instance ToQuery Decrypt where
toQuery = const mempty
-- | /See:/ 'decryptResponse' smart constructor.
data DecryptResponse = DecryptResponse'
{ _drsKeyId :: !(Maybe Text)
, _drsPlaintext :: !(Maybe (Sensitive Base64))
, _drsStatus :: !Int
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DecryptResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'drsKeyId'
--
-- * 'drsPlaintext'
--
-- * 'drsStatus'
decryptResponse
:: Int -- ^ 'drsStatus'
-> DecryptResponse
decryptResponse pStatus_ =
DecryptResponse'
{ _drsKeyId = Nothing
, _drsPlaintext = Nothing
, _drsStatus = pStatus_
}
-- | ARN of the key used to perform the decryption. This value is returned if
-- no errors are encountered during the operation.
drsKeyId :: Lens' DecryptResponse (Maybe Text)
drsKeyId = lens _drsKeyId (\ s a -> s{_drsKeyId = a});
-- | Decrypted plaintext data. This value may not be returned if the customer
-- master key is not available or if you didn\'t have permission to use it.
drsPlaintext :: Lens' DecryptResponse (Maybe ByteString)
drsPlaintext = lens _drsPlaintext (\ s a -> s{_drsPlaintext = a}) . mapping (_Sensitive . _Base64);
-- | The response status code.
drsStatus :: Lens' DecryptResponse Int
drsStatus = lens _drsStatus (\ s a -> s{_drsStatus = a});