amazonka-kms-1.4.1: gen/Network/AWS/KMS/GenerateDataKeyWithoutPlaintext.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.GenerateDataKeyWithoutPlaintext
-- Copyright : (c) 2013-2016 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)
--
-- Returns a data key encrypted by a customer master key without the
-- plaintext copy of that key. Otherwise, this API functions exactly like
-- < GenerateDataKey>. You can use this API to, for example, satisfy an
-- audit requirement that an encrypted key be made available without
-- exposing the plaintext copy of that key.
module Network.AWS.KMS.GenerateDataKeyWithoutPlaintext
(
-- * Creating a Request
generateDataKeyWithoutPlaintext
, GenerateDataKeyWithoutPlaintext
-- * Request Lenses
, gdkwpKeySpec
, gdkwpEncryptionContext
, gdkwpNumberOfBytes
, gdkwpGrantTokens
, gdkwpKeyId
-- * Destructuring the Response
, generateDataKeyWithoutPlaintextResponse
, GenerateDataKeyWithoutPlaintextResponse
-- * Response Lenses
, gdkwprsKeyId
, gdkwprsCiphertextBlob
, gdkwprsResponseStatus
) where
import Network.AWS.KMS.Types
import Network.AWS.KMS.Types.Product
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'generateDataKeyWithoutPlaintext' smart constructor.
data GenerateDataKeyWithoutPlaintext = GenerateDataKeyWithoutPlaintext'
{ _gdkwpKeySpec :: !(Maybe DataKeySpec)
, _gdkwpEncryptionContext :: !(Maybe (Map Text Text))
, _gdkwpNumberOfBytes :: !(Maybe Nat)
, _gdkwpGrantTokens :: !(Maybe [Text])
, _gdkwpKeyId :: !Text
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'GenerateDataKeyWithoutPlaintext' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gdkwpKeySpec'
--
-- * 'gdkwpEncryptionContext'
--
-- * 'gdkwpNumberOfBytes'
--
-- * 'gdkwpGrantTokens'
--
-- * 'gdkwpKeyId'
generateDataKeyWithoutPlaintext
:: Text -- ^ 'gdkwpKeyId'
-> GenerateDataKeyWithoutPlaintext
generateDataKeyWithoutPlaintext pKeyId_ =
GenerateDataKeyWithoutPlaintext'
{ _gdkwpKeySpec = Nothing
, _gdkwpEncryptionContext = Nothing
, _gdkwpNumberOfBytes = Nothing
, _gdkwpGrantTokens = Nothing
, _gdkwpKeyId = pKeyId_
}
-- | Value that identifies the encryption algorithm and key size. Currently
-- this can be AES_128 or AES_256.
gdkwpKeySpec :: Lens' GenerateDataKeyWithoutPlaintext (Maybe DataKeySpec)
gdkwpKeySpec = lens _gdkwpKeySpec (\ s a -> s{_gdkwpKeySpec = a});
-- | Name:value pair that contains additional data to be authenticated during
-- the encryption and decryption processes.
gdkwpEncryptionContext :: Lens' GenerateDataKeyWithoutPlaintext (HashMap Text Text)
gdkwpEncryptionContext = lens _gdkwpEncryptionContext (\ s a -> s{_gdkwpEncryptionContext = a}) . _Default . _Map;
-- | Integer that contains the number of bytes to generate. Common values are
-- 128, 256, 512, 1024 and so on. We recommend that you use the 'KeySpec'
-- parameter instead.
gdkwpNumberOfBytes :: Lens' GenerateDataKeyWithoutPlaintext (Maybe Natural)
gdkwpNumberOfBytes = lens _gdkwpNumberOfBytes (\ s a -> s{_gdkwpNumberOfBytes = a}) . mapping _Nat;
-- | A list of grant tokens.
--
-- For more information, go to
-- <http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token Grant Tokens>
-- in the /AWS Key Management Service Developer Guide/.
gdkwpGrantTokens :: Lens' GenerateDataKeyWithoutPlaintext [Text]
gdkwpGrantTokens = lens _gdkwpGrantTokens (\ s a -> s{_gdkwpGrantTokens = a}) . _Default . _Coerce;
-- | A unique identifier for the customer master key. This value can be a
-- globally unique identifier, a fully specified ARN to either an alias or
-- a key, or an alias name prefixed by \"alias\/\".
--
-- - Key ARN Example -
-- arn:aws:kms:us-east-1:123456789012:key\/12345678-1234-1234-1234-123456789012
-- - Alias ARN Example -
-- arn:aws:kms:us-east-1:123456789012:alias\/MyAliasName
-- - Globally Unique Key ID Example -
-- 12345678-1234-1234-1234-123456789012
-- - Alias Name Example - alias\/MyAliasName
gdkwpKeyId :: Lens' GenerateDataKeyWithoutPlaintext Text
gdkwpKeyId = lens _gdkwpKeyId (\ s a -> s{_gdkwpKeyId = a});
instance AWSRequest GenerateDataKeyWithoutPlaintext
where
type Rs GenerateDataKeyWithoutPlaintext =
GenerateDataKeyWithoutPlaintextResponse
request = postJSON kms
response
= receiveJSON
(\ s h x ->
GenerateDataKeyWithoutPlaintextResponse' <$>
(x .?> "KeyId") <*> (x .?> "CiphertextBlob") <*>
(pure (fromEnum s)))
instance Hashable GenerateDataKeyWithoutPlaintext
instance NFData GenerateDataKeyWithoutPlaintext
instance ToHeaders GenerateDataKeyWithoutPlaintext
where
toHeaders
= const
(mconcat
["X-Amz-Target" =#
("TrentService.GenerateDataKeyWithoutPlaintext" ::
ByteString),
"Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToJSON GenerateDataKeyWithoutPlaintext where
toJSON GenerateDataKeyWithoutPlaintext'{..}
= object
(catMaybes
[("KeySpec" .=) <$> _gdkwpKeySpec,
("EncryptionContext" .=) <$> _gdkwpEncryptionContext,
("NumberOfBytes" .=) <$> _gdkwpNumberOfBytes,
("GrantTokens" .=) <$> _gdkwpGrantTokens,
Just ("KeyId" .= _gdkwpKeyId)])
instance ToPath GenerateDataKeyWithoutPlaintext where
toPath = const "/"
instance ToQuery GenerateDataKeyWithoutPlaintext
where
toQuery = const mempty
-- | /See:/ 'generateDataKeyWithoutPlaintextResponse' smart constructor.
data GenerateDataKeyWithoutPlaintextResponse = GenerateDataKeyWithoutPlaintextResponse'
{ _gdkwprsKeyId :: !(Maybe Text)
, _gdkwprsCiphertextBlob :: !(Maybe Base64)
, _gdkwprsResponseStatus :: !Int
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'GenerateDataKeyWithoutPlaintextResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gdkwprsKeyId'
--
-- * 'gdkwprsCiphertextBlob'
--
-- * 'gdkwprsResponseStatus'
generateDataKeyWithoutPlaintextResponse
:: Int -- ^ 'gdkwprsResponseStatus'
-> GenerateDataKeyWithoutPlaintextResponse
generateDataKeyWithoutPlaintextResponse pResponseStatus_ =
GenerateDataKeyWithoutPlaintextResponse'
{ _gdkwprsKeyId = Nothing
, _gdkwprsCiphertextBlob = Nothing
, _gdkwprsResponseStatus = pResponseStatus_
}
-- | System generated unique identifier of the key to be used to decrypt the
-- encrypted copy of the data key.
gdkwprsKeyId :: Lens' GenerateDataKeyWithoutPlaintextResponse (Maybe Text)
gdkwprsKeyId = lens _gdkwprsKeyId (\ s a -> s{_gdkwprsKeyId = a});
-- | Ciphertext that contains the wrapped data key. You must store the blob
-- and encryption context so that the key can be used in a future decrypt
-- operation.
--
-- If you are using the CLI, the value is Base64 encoded. Otherwise, it is
-- not encoded.
--
-- /Note:/ This 'Lens' automatically encodes and decodes Base64 data,
-- despite what the AWS documentation might say.
-- The underlying isomorphism will encode to Base64 representation during
-- serialisation, and decode from Base64 representation during deserialisation.
-- This 'Lens' accepts and returns only raw unencoded data.
gdkwprsCiphertextBlob :: Lens' GenerateDataKeyWithoutPlaintextResponse (Maybe ByteString)
gdkwprsCiphertextBlob = lens _gdkwprsCiphertextBlob (\ s a -> s{_gdkwprsCiphertextBlob = a}) . mapping _Base64;
-- | The response status code.
gdkwprsResponseStatus :: Lens' GenerateDataKeyWithoutPlaintextResponse Int
gdkwprsResponseStatus = lens _gdkwprsResponseStatus (\ s a -> s{_gdkwprsResponseStatus = a});
instance NFData
GenerateDataKeyWithoutPlaintextResponse