{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.KMS.ReEncrypt -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Decrypts ciphertext and then reencrypts it entirely within KMS. You can -- use this operation to change the KMS key under which data is encrypted, -- such as when you -- -- a KMS key or change the KMS key that protects a ciphertext. You can also -- use it to reencrypt ciphertext under the same KMS key, such as to change -- the -- -- of a ciphertext. -- -- The @ReEncrypt@ operation can decrypt ciphertext that was encrypted by -- using a KMS key in an KMS operation, such as Encrypt or GenerateDataKey. -- It can also decrypt ciphertext that was encrypted by using the public -- key of an -- -- outside of KMS. However, it cannot decrypt ciphertext produced by other -- libraries, such as the -- -- or -- . -- These libraries return a ciphertext format that is incompatible with -- KMS. -- -- When you use the @ReEncrypt@ operation, you need to provide information -- for the decrypt operation and the subsequent encrypt operation. -- -- - If your ciphertext was encrypted under an asymmetric KMS key, you -- must use the @SourceKeyId@ parameter to identify the KMS key that -- encrypted the ciphertext. You must also supply the encryption -- algorithm that was used. This information is required to decrypt the -- data. -- -- - If your ciphertext was encrypted under a symmetric encryption KMS -- key, the @SourceKeyId@ parameter is optional. KMS can get this -- information from metadata that it adds to the symmetric ciphertext -- blob. This feature adds durability to your implementation by -- ensuring that authorized users can decrypt ciphertext decades after -- it was encrypted, even if they\'ve lost track of the key ID. -- However, specifying the source KMS key is always recommended as a -- best practice. When you use the @SourceKeyId@ parameter to specify a -- KMS key, KMS uses only the KMS key you specify. If the ciphertext -- was encrypted under a different KMS key, the @ReEncrypt@ operation -- fails. This practice ensures that you use the KMS key that you -- intend. -- -- - To reencrypt the data, you must use the @DestinationKeyId@ parameter -- to specify the KMS key that re-encrypts the data after it is -- decrypted. If the destination KMS key is an asymmetric KMS key, you -- must also provide the encryption algorithm. The algorithm that you -- choose must be compatible with the KMS key. -- -- When you use an asymmetric KMS key to encrypt or reencrypt data, be -- sure to record the KMS key and encryption algorithm that you choose. -- You will be required to provide the same KMS key and encryption -- algorithm when you decrypt the data. If the KMS key and algorithm do -- not match the values used to encrypt the data, the decrypt operation -- fails. -- -- You are not required to supply the key ID and encryption algorithm -- when you decrypt with symmetric encryption KMS keys because KMS -- stores this information in the ciphertext blob. KMS cannot store -- metadata in ciphertext generated with asymmetric keys. The standard -- format for asymmetric key ciphertext does not include configurable -- fields. -- -- The KMS key that you use for this operation must be in a compatible key -- state. For details, see -- -- in the /Key Management Service Developer Guide/. -- -- __Cross-account use__: Yes. The source KMS key and destination KMS key -- can be in different Amazon Web Services accounts. Either or both KMS -- keys can be in a different account than the caller. To specify a KMS key -- in a different account, you must use its key ARN or alias ARN. -- -- __Required permissions__: -- -- - -- permission on the source KMS key (key policy) -- -- - -- permission on the destination KMS key (key policy) -- -- To permit reencryption from or to a KMS key, include the -- @\"kms:ReEncrypt*\"@ permission in your -- . -- This permission is automatically included in the key policy when you use -- the console to create a KMS key. But you must include it manually when -- you create a KMS key programmatically or when you use the PutKeyPolicy -- operation to set a key policy. -- -- __Related operations:__ -- -- - Decrypt -- -- - Encrypt -- -- - GenerateDataKey -- -- - GenerateDataKeyPair module Amazonka.KMS.ReEncrypt ( -- * Creating a Request ReEncrypt (..), newReEncrypt, -- * Request Lenses reEncrypt_destinationEncryptionAlgorithm, reEncrypt_destinationEncryptionContext, reEncrypt_grantTokens, reEncrypt_sourceEncryptionAlgorithm, reEncrypt_sourceEncryptionContext, reEncrypt_sourceKeyId, reEncrypt_ciphertextBlob, reEncrypt_destinationKeyId, -- * Destructuring the Response ReEncryptResponse (..), newReEncryptResponse, -- * Response Lenses reEncryptResponse_ciphertextBlob, reEncryptResponse_destinationEncryptionAlgorithm, reEncryptResponse_keyId, reEncryptResponse_sourceEncryptionAlgorithm, reEncryptResponse_sourceKeyId, reEncryptResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.KMS.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newReEncrypt' smart constructor. data ReEncrypt = ReEncrypt' { -- | Specifies the encryption algorithm that KMS will use to reecrypt the -- data after it has decrypted it. The default value, @SYMMETRIC_DEFAULT@, -- represents the encryption algorithm used for symmetric encryption KMS -- keys. -- -- This parameter is required only when the destination KMS key is an -- asymmetric KMS key. destinationEncryptionAlgorithm :: Prelude.Maybe EncryptionAlgorithmSpec, -- | Specifies that encryption context to use when the reencrypting the data. -- -- A destination encryption context is valid only when the destination KMS -- key is a symmetric encryption KMS key. The standard ciphertext format -- for asymmetric KMS keys does not include fields for metadata. -- -- An /encryption context/ is a collection of non-secret key-value pairs -- that represent additional authenticated data. When you use an encryption -- context to encrypt data, you must specify the same (an exact -- case-sensitive match) encryption context to decrypt the data. An -- encryption context is supported only on operations with symmetric -- encryption KMS keys. On operations with symmetric encryption KMS keys, -- an encryption context is optional, but it is strongly recommended. -- -- For more information, see -- -- in the /Key Management Service Developer Guide/. destinationEncryptionContext :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text), -- | A list of grant tokens. -- -- Use a grant token when your permission to call this operation comes from -- a new grant that has not yet achieved /eventual consistency/. For more -- information, see -- -- and -- -- in the /Key Management Service Developer Guide/. grantTokens :: Prelude.Maybe [Prelude.Text], -- | Specifies the encryption algorithm that KMS will use to decrypt the -- ciphertext before it is reencrypted. The default value, -- @SYMMETRIC_DEFAULT@, represents the algorithm used for symmetric -- encryption KMS keys. -- -- Specify the same algorithm that was used to encrypt the ciphertext. If -- you specify a different algorithm, the decrypt attempt fails. -- -- This parameter is required only when the ciphertext was encrypted under -- an asymmetric KMS key. sourceEncryptionAlgorithm :: Prelude.Maybe EncryptionAlgorithmSpec, -- | Specifies the encryption context to use to decrypt the ciphertext. Enter -- the same encryption context that was used to encrypt the ciphertext. -- -- An /encryption context/ is a collection of non-secret key-value pairs -- that represent additional authenticated data. When you use an encryption -- context to encrypt data, you must specify the same (an exact -- case-sensitive match) encryption context to decrypt the data. An -- encryption context is supported only on operations with symmetric -- encryption KMS keys. On operations with symmetric encryption KMS keys, -- an encryption context is optional, but it is strongly recommended. -- -- For more information, see -- -- in the /Key Management Service Developer Guide/. sourceEncryptionContext :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text), -- | Specifies the KMS key that KMS will use to decrypt the ciphertext before -- it is re-encrypted. -- -- Enter a key ID of the KMS key that was used to encrypt the ciphertext. -- If you identify a different KMS key, the @ReEncrypt@ operation throws an -- @IncorrectKeyException@. -- -- This parameter is required only when the ciphertext was encrypted under -- an asymmetric KMS key. If you used a symmetric encryption KMS key, KMS -- can get the KMS key from metadata that it adds to the symmetric -- ciphertext blob. However, it is always recommended as a best practice. -- This practice ensures that you use the KMS key that you intend. -- -- To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. -- When using an alias name, prefix it with @\"alias\/\"@. To specify a KMS -- key in a different Amazon Web Services account, you must use the key ARN -- or alias ARN. -- -- For example: -- -- - Key ID: @1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Key ARN: -- @arn:aws:kms:us-east-2:111122223333:key\/1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Alias name: @alias\/ExampleAlias@ -- -- - Alias ARN: @arn:aws:kms:us-east-2:111122223333:alias\/ExampleAlias@ -- -- To get the key ID and key ARN for a KMS key, use ListKeys or -- DescribeKey. To get the alias name and alias ARN, use ListAliases. sourceKeyId :: Prelude.Maybe Prelude.Text, -- | Ciphertext of the data to reencrypt. ciphertextBlob :: Data.Base64, -- | A unique identifier for the KMS key that is used to reencrypt the data. -- Specify a symmetric encryption KMS key or an asymmetric KMS key with a -- @KeyUsage@ value of @ENCRYPT_DECRYPT@. To find the @KeyUsage@ value of a -- KMS key, use the DescribeKey operation. -- -- To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. -- When using an alias name, prefix it with @\"alias\/\"@. To specify a KMS -- key in a different Amazon Web Services account, you must use the key ARN -- or alias ARN. -- -- For example: -- -- - Key ID: @1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Key ARN: -- @arn:aws:kms:us-east-2:111122223333:key\/1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Alias name: @alias\/ExampleAlias@ -- -- - Alias ARN: @arn:aws:kms:us-east-2:111122223333:alias\/ExampleAlias@ -- -- To get the key ID and key ARN for a KMS key, use ListKeys or -- DescribeKey. To get the alias name and alias ARN, use ListAliases. destinationKeyId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ReEncrypt' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'destinationEncryptionAlgorithm', 'reEncrypt_destinationEncryptionAlgorithm' - Specifies the encryption algorithm that KMS will use to reecrypt the -- data after it has decrypted it. The default value, @SYMMETRIC_DEFAULT@, -- represents the encryption algorithm used for symmetric encryption KMS -- keys. -- -- This parameter is required only when the destination KMS key is an -- asymmetric KMS key. -- -- 'destinationEncryptionContext', 'reEncrypt_destinationEncryptionContext' - Specifies that encryption context to use when the reencrypting the data. -- -- A destination encryption context is valid only when the destination KMS -- key is a symmetric encryption KMS key. The standard ciphertext format -- for asymmetric KMS keys does not include fields for metadata. -- -- An /encryption context/ is a collection of non-secret key-value pairs -- that represent additional authenticated data. When you use an encryption -- context to encrypt data, you must specify the same (an exact -- case-sensitive match) encryption context to decrypt the data. An -- encryption context is supported only on operations with symmetric -- encryption KMS keys. On operations with symmetric encryption KMS keys, -- an encryption context is optional, but it is strongly recommended. -- -- For more information, see -- -- in the /Key Management Service Developer Guide/. -- -- 'grantTokens', 'reEncrypt_grantTokens' - A list of grant tokens. -- -- Use a grant token when your permission to call this operation comes from -- a new grant that has not yet achieved /eventual consistency/. For more -- information, see -- -- and -- -- in the /Key Management Service Developer Guide/. -- -- 'sourceEncryptionAlgorithm', 'reEncrypt_sourceEncryptionAlgorithm' - Specifies the encryption algorithm that KMS will use to decrypt the -- ciphertext before it is reencrypted. The default value, -- @SYMMETRIC_DEFAULT@, represents the algorithm used for symmetric -- encryption KMS keys. -- -- Specify the same algorithm that was used to encrypt the ciphertext. If -- you specify a different algorithm, the decrypt attempt fails. -- -- This parameter is required only when the ciphertext was encrypted under -- an asymmetric KMS key. -- -- 'sourceEncryptionContext', 'reEncrypt_sourceEncryptionContext' - Specifies the encryption context to use to decrypt the ciphertext. Enter -- the same encryption context that was used to encrypt the ciphertext. -- -- An /encryption context/ is a collection of non-secret key-value pairs -- that represent additional authenticated data. When you use an encryption -- context to encrypt data, you must specify the same (an exact -- case-sensitive match) encryption context to decrypt the data. An -- encryption context is supported only on operations with symmetric -- encryption KMS keys. On operations with symmetric encryption KMS keys, -- an encryption context is optional, but it is strongly recommended. -- -- For more information, see -- -- in the /Key Management Service Developer Guide/. -- -- 'sourceKeyId', 'reEncrypt_sourceKeyId' - Specifies the KMS key that KMS will use to decrypt the ciphertext before -- it is re-encrypted. -- -- Enter a key ID of the KMS key that was used to encrypt the ciphertext. -- If you identify a different KMS key, the @ReEncrypt@ operation throws an -- @IncorrectKeyException@. -- -- This parameter is required only when the ciphertext was encrypted under -- an asymmetric KMS key. If you used a symmetric encryption KMS key, KMS -- can get the KMS key from metadata that it adds to the symmetric -- ciphertext blob. However, it is always recommended as a best practice. -- This practice ensures that you use the KMS key that you intend. -- -- To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. -- When using an alias name, prefix it with @\"alias\/\"@. To specify a KMS -- key in a different Amazon Web Services account, you must use the key ARN -- or alias ARN. -- -- For example: -- -- - Key ID: @1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Key ARN: -- @arn:aws:kms:us-east-2:111122223333:key\/1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Alias name: @alias\/ExampleAlias@ -- -- - Alias ARN: @arn:aws:kms:us-east-2:111122223333:alias\/ExampleAlias@ -- -- To get the key ID and key ARN for a KMS key, use ListKeys or -- DescribeKey. To get the alias name and alias ARN, use ListAliases. -- -- 'ciphertextBlob', 'reEncrypt_ciphertextBlob' - Ciphertext of the data to reencrypt.-- -- -- /Note:/ This 'Lens' automatically encodes and decodes Base64 data. -- -- 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. -- -- 'destinationKeyId', 'reEncrypt_destinationKeyId' - A unique identifier for the KMS key that is used to reencrypt the data. -- Specify a symmetric encryption KMS key or an asymmetric KMS key with a -- @KeyUsage@ value of @ENCRYPT_DECRYPT@. To find the @KeyUsage@ value of a -- KMS key, use the DescribeKey operation. -- -- To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. -- When using an alias name, prefix it with @\"alias\/\"@. To specify a KMS -- key in a different Amazon Web Services account, you must use the key ARN -- or alias ARN. -- -- For example: -- -- - Key ID: @1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Key ARN: -- @arn:aws:kms:us-east-2:111122223333:key\/1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Alias name: @alias\/ExampleAlias@ -- -- - Alias ARN: @arn:aws:kms:us-east-2:111122223333:alias\/ExampleAlias@ -- -- To get the key ID and key ARN for a KMS key, use ListKeys or -- DescribeKey. To get the alias name and alias ARN, use ListAliases. newReEncrypt :: -- | 'ciphertextBlob' Prelude.ByteString -> -- | 'destinationKeyId' Prelude.Text -> ReEncrypt newReEncrypt pCiphertextBlob_ pDestinationKeyId_ = ReEncrypt' { destinationEncryptionAlgorithm = Prelude.Nothing, destinationEncryptionContext = Prelude.Nothing, grantTokens = Prelude.Nothing, sourceEncryptionAlgorithm = Prelude.Nothing, sourceEncryptionContext = Prelude.Nothing, sourceKeyId = Prelude.Nothing, ciphertextBlob = Data._Base64 Lens.# pCiphertextBlob_, destinationKeyId = pDestinationKeyId_ } -- | Specifies the encryption algorithm that KMS will use to reecrypt the -- data after it has decrypted it. The default value, @SYMMETRIC_DEFAULT@, -- represents the encryption algorithm used for symmetric encryption KMS -- keys. -- -- This parameter is required only when the destination KMS key is an -- asymmetric KMS key. reEncrypt_destinationEncryptionAlgorithm :: Lens.Lens' ReEncrypt (Prelude.Maybe EncryptionAlgorithmSpec) reEncrypt_destinationEncryptionAlgorithm = Lens.lens (\ReEncrypt' {destinationEncryptionAlgorithm} -> destinationEncryptionAlgorithm) (\s@ReEncrypt' {} a -> s {destinationEncryptionAlgorithm = a} :: ReEncrypt) -- | Specifies that encryption context to use when the reencrypting the data. -- -- A destination encryption context is valid only when the destination KMS -- key is a symmetric encryption KMS key. The standard ciphertext format -- for asymmetric KMS keys does not include fields for metadata. -- -- An /encryption context/ is a collection of non-secret key-value pairs -- that represent additional authenticated data. When you use an encryption -- context to encrypt data, you must specify the same (an exact -- case-sensitive match) encryption context to decrypt the data. An -- encryption context is supported only on operations with symmetric -- encryption KMS keys. On operations with symmetric encryption KMS keys, -- an encryption context is optional, but it is strongly recommended. -- -- For more information, see -- -- in the /Key Management Service Developer Guide/. reEncrypt_destinationEncryptionContext :: Lens.Lens' ReEncrypt (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) reEncrypt_destinationEncryptionContext = Lens.lens (\ReEncrypt' {destinationEncryptionContext} -> destinationEncryptionContext) (\s@ReEncrypt' {} a -> s {destinationEncryptionContext = a} :: ReEncrypt) Prelude.. Lens.mapping Lens.coerced -- | A list of grant tokens. -- -- Use a grant token when your permission to call this operation comes from -- a new grant that has not yet achieved /eventual consistency/. For more -- information, see -- -- and -- -- in the /Key Management Service Developer Guide/. reEncrypt_grantTokens :: Lens.Lens' ReEncrypt (Prelude.Maybe [Prelude.Text]) reEncrypt_grantTokens = Lens.lens (\ReEncrypt' {grantTokens} -> grantTokens) (\s@ReEncrypt' {} a -> s {grantTokens = a} :: ReEncrypt) Prelude.. Lens.mapping Lens.coerced -- | Specifies the encryption algorithm that KMS will use to decrypt the -- ciphertext before it is reencrypted. The default value, -- @SYMMETRIC_DEFAULT@, represents the algorithm used for symmetric -- encryption KMS keys. -- -- Specify the same algorithm that was used to encrypt the ciphertext. If -- you specify a different algorithm, the decrypt attempt fails. -- -- This parameter is required only when the ciphertext was encrypted under -- an asymmetric KMS key. reEncrypt_sourceEncryptionAlgorithm :: Lens.Lens' ReEncrypt (Prelude.Maybe EncryptionAlgorithmSpec) reEncrypt_sourceEncryptionAlgorithm = Lens.lens (\ReEncrypt' {sourceEncryptionAlgorithm} -> sourceEncryptionAlgorithm) (\s@ReEncrypt' {} a -> s {sourceEncryptionAlgorithm = a} :: ReEncrypt) -- | Specifies the encryption context to use to decrypt the ciphertext. Enter -- the same encryption context that was used to encrypt the ciphertext. -- -- An /encryption context/ is a collection of non-secret key-value pairs -- that represent additional authenticated data. When you use an encryption -- context to encrypt data, you must specify the same (an exact -- case-sensitive match) encryption context to decrypt the data. An -- encryption context is supported only on operations with symmetric -- encryption KMS keys. On operations with symmetric encryption KMS keys, -- an encryption context is optional, but it is strongly recommended. -- -- For more information, see -- -- in the /Key Management Service Developer Guide/. reEncrypt_sourceEncryptionContext :: Lens.Lens' ReEncrypt (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) reEncrypt_sourceEncryptionContext = Lens.lens (\ReEncrypt' {sourceEncryptionContext} -> sourceEncryptionContext) (\s@ReEncrypt' {} a -> s {sourceEncryptionContext = a} :: ReEncrypt) Prelude.. Lens.mapping Lens.coerced -- | Specifies the KMS key that KMS will use to decrypt the ciphertext before -- it is re-encrypted. -- -- Enter a key ID of the KMS key that was used to encrypt the ciphertext. -- If you identify a different KMS key, the @ReEncrypt@ operation throws an -- @IncorrectKeyException@. -- -- This parameter is required only when the ciphertext was encrypted under -- an asymmetric KMS key. If you used a symmetric encryption KMS key, KMS -- can get the KMS key from metadata that it adds to the symmetric -- ciphertext blob. However, it is always recommended as a best practice. -- This practice ensures that you use the KMS key that you intend. -- -- To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. -- When using an alias name, prefix it with @\"alias\/\"@. To specify a KMS -- key in a different Amazon Web Services account, you must use the key ARN -- or alias ARN. -- -- For example: -- -- - Key ID: @1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Key ARN: -- @arn:aws:kms:us-east-2:111122223333:key\/1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Alias name: @alias\/ExampleAlias@ -- -- - Alias ARN: @arn:aws:kms:us-east-2:111122223333:alias\/ExampleAlias@ -- -- To get the key ID and key ARN for a KMS key, use ListKeys or -- DescribeKey. To get the alias name and alias ARN, use ListAliases. reEncrypt_sourceKeyId :: Lens.Lens' ReEncrypt (Prelude.Maybe Prelude.Text) reEncrypt_sourceKeyId = Lens.lens (\ReEncrypt' {sourceKeyId} -> sourceKeyId) (\s@ReEncrypt' {} a -> s {sourceKeyId = a} :: ReEncrypt) -- | Ciphertext of the data to reencrypt.-- -- -- /Note:/ This 'Lens' automatically encodes and decodes Base64 data. -- -- 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. reEncrypt_ciphertextBlob :: Lens.Lens' ReEncrypt Prelude.ByteString reEncrypt_ciphertextBlob = Lens.lens (\ReEncrypt' {ciphertextBlob} -> ciphertextBlob) (\s@ReEncrypt' {} a -> s {ciphertextBlob = a} :: ReEncrypt) Prelude.. Data._Base64 -- | A unique identifier for the KMS key that is used to reencrypt the data. -- Specify a symmetric encryption KMS key or an asymmetric KMS key with a -- @KeyUsage@ value of @ENCRYPT_DECRYPT@. To find the @KeyUsage@ value of a -- KMS key, use the DescribeKey operation. -- -- To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. -- When using an alias name, prefix it with @\"alias\/\"@. To specify a KMS -- key in a different Amazon Web Services account, you must use the key ARN -- or alias ARN. -- -- For example: -- -- - Key ID: @1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Key ARN: -- @arn:aws:kms:us-east-2:111122223333:key\/1234abcd-12ab-34cd-56ef-1234567890ab@ -- -- - Alias name: @alias\/ExampleAlias@ -- -- - Alias ARN: @arn:aws:kms:us-east-2:111122223333:alias\/ExampleAlias@ -- -- To get the key ID and key ARN for a KMS key, use ListKeys or -- DescribeKey. To get the alias name and alias ARN, use ListAliases. reEncrypt_destinationKeyId :: Lens.Lens' ReEncrypt Prelude.Text reEncrypt_destinationKeyId = Lens.lens (\ReEncrypt' {destinationKeyId} -> destinationKeyId) (\s@ReEncrypt' {} a -> s {destinationKeyId = a} :: ReEncrypt) instance Core.AWSRequest ReEncrypt where type AWSResponse ReEncrypt = ReEncryptResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> ReEncryptResponse' Prelude.<$> (x Data..?> "CiphertextBlob") Prelude.<*> (x Data..?> "DestinationEncryptionAlgorithm") Prelude.<*> (x Data..?> "KeyId") Prelude.<*> (x Data..?> "SourceEncryptionAlgorithm") Prelude.<*> (x Data..?> "SourceKeyId") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ReEncrypt where hashWithSalt _salt ReEncrypt' {..} = _salt `Prelude.hashWithSalt` destinationEncryptionAlgorithm `Prelude.hashWithSalt` destinationEncryptionContext `Prelude.hashWithSalt` grantTokens `Prelude.hashWithSalt` sourceEncryptionAlgorithm `Prelude.hashWithSalt` sourceEncryptionContext `Prelude.hashWithSalt` sourceKeyId `Prelude.hashWithSalt` ciphertextBlob `Prelude.hashWithSalt` destinationKeyId instance Prelude.NFData ReEncrypt where rnf ReEncrypt' {..} = Prelude.rnf destinationEncryptionAlgorithm `Prelude.seq` Prelude.rnf destinationEncryptionContext `Prelude.seq` Prelude.rnf grantTokens `Prelude.seq` Prelude.rnf sourceEncryptionAlgorithm `Prelude.seq` Prelude.rnf sourceEncryptionContext `Prelude.seq` Prelude.rnf sourceKeyId `Prelude.seq` Prelude.rnf ciphertextBlob `Prelude.seq` Prelude.rnf destinationKeyId instance Data.ToHeaders ReEncrypt where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ("TrentService.ReEncrypt" :: Prelude.ByteString), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON ReEncrypt where toJSON ReEncrypt' {..} = Data.object ( Prelude.catMaybes [ ("DestinationEncryptionAlgorithm" Data..=) Prelude.<$> destinationEncryptionAlgorithm, ("DestinationEncryptionContext" Data..=) Prelude.<$> destinationEncryptionContext, ("GrantTokens" Data..=) Prelude.<$> grantTokens, ("SourceEncryptionAlgorithm" Data..=) Prelude.<$> sourceEncryptionAlgorithm, ("SourceEncryptionContext" Data..=) Prelude.<$> sourceEncryptionContext, ("SourceKeyId" Data..=) Prelude.<$> sourceKeyId, Prelude.Just ("CiphertextBlob" Data..= ciphertextBlob), Prelude.Just ("DestinationKeyId" Data..= destinationKeyId) ] ) instance Data.ToPath ReEncrypt where toPath = Prelude.const "/" instance Data.ToQuery ReEncrypt where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newReEncryptResponse' smart constructor. data ReEncryptResponse = ReEncryptResponse' { -- | The reencrypted data. When you use the HTTP API or the Amazon Web -- Services CLI, the value is Base64-encoded. Otherwise, it is not -- Base64-encoded. ciphertextBlob :: Prelude.Maybe Data.Base64, -- | The encryption algorithm that was used to reencrypt the data. destinationEncryptionAlgorithm :: Prelude.Maybe EncryptionAlgorithmSpec, -- | The Amazon Resource Name -- () -- of the KMS key that was used to reencrypt the data. keyId :: Prelude.Maybe Prelude.Text, -- | The encryption algorithm that was used to decrypt the ciphertext before -- it was reencrypted. sourceEncryptionAlgorithm :: Prelude.Maybe EncryptionAlgorithmSpec, -- | Unique identifier of the KMS key used to originally encrypt the data. sourceKeyId :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ReEncryptResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'ciphertextBlob', 'reEncryptResponse_ciphertextBlob' - The reencrypted data. When you use the HTTP API or the Amazon Web -- Services CLI, the value is Base64-encoded. Otherwise, it is not -- Base64-encoded.-- -- -- /Note:/ This 'Lens' automatically encodes and decodes Base64 data. -- -- 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. -- -- 'destinationEncryptionAlgorithm', 'reEncryptResponse_destinationEncryptionAlgorithm' - The encryption algorithm that was used to reencrypt the data. -- -- 'keyId', 'reEncryptResponse_keyId' - The Amazon Resource Name -- () -- of the KMS key that was used to reencrypt the data. -- -- 'sourceEncryptionAlgorithm', 'reEncryptResponse_sourceEncryptionAlgorithm' - The encryption algorithm that was used to decrypt the ciphertext before -- it was reencrypted. -- -- 'sourceKeyId', 'reEncryptResponse_sourceKeyId' - Unique identifier of the KMS key used to originally encrypt the data. -- -- 'httpStatus', 'reEncryptResponse_httpStatus' - The response's http status code. newReEncryptResponse :: -- | 'httpStatus' Prelude.Int -> ReEncryptResponse newReEncryptResponse pHttpStatus_ = ReEncryptResponse' { ciphertextBlob = Prelude.Nothing, destinationEncryptionAlgorithm = Prelude.Nothing, keyId = Prelude.Nothing, sourceEncryptionAlgorithm = Prelude.Nothing, sourceKeyId = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The reencrypted data. When you use the HTTP API or the Amazon Web -- Services CLI, the value is Base64-encoded. Otherwise, it is not -- Base64-encoded.-- -- -- /Note:/ This 'Lens' automatically encodes and decodes Base64 data. -- -- 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. reEncryptResponse_ciphertextBlob :: Lens.Lens' ReEncryptResponse (Prelude.Maybe Prelude.ByteString) reEncryptResponse_ciphertextBlob = Lens.lens (\ReEncryptResponse' {ciphertextBlob} -> ciphertextBlob) (\s@ReEncryptResponse' {} a -> s {ciphertextBlob = a} :: ReEncryptResponse) Prelude.. Lens.mapping Data._Base64 -- | The encryption algorithm that was used to reencrypt the data. reEncryptResponse_destinationEncryptionAlgorithm :: Lens.Lens' ReEncryptResponse (Prelude.Maybe EncryptionAlgorithmSpec) reEncryptResponse_destinationEncryptionAlgorithm = Lens.lens (\ReEncryptResponse' {destinationEncryptionAlgorithm} -> destinationEncryptionAlgorithm) (\s@ReEncryptResponse' {} a -> s {destinationEncryptionAlgorithm = a} :: ReEncryptResponse) -- | The Amazon Resource Name -- () -- of the KMS key that was used to reencrypt the data. reEncryptResponse_keyId :: Lens.Lens' ReEncryptResponse (Prelude.Maybe Prelude.Text) reEncryptResponse_keyId = Lens.lens (\ReEncryptResponse' {keyId} -> keyId) (\s@ReEncryptResponse' {} a -> s {keyId = a} :: ReEncryptResponse) -- | The encryption algorithm that was used to decrypt the ciphertext before -- it was reencrypted. reEncryptResponse_sourceEncryptionAlgorithm :: Lens.Lens' ReEncryptResponse (Prelude.Maybe EncryptionAlgorithmSpec) reEncryptResponse_sourceEncryptionAlgorithm = Lens.lens (\ReEncryptResponse' {sourceEncryptionAlgorithm} -> sourceEncryptionAlgorithm) (\s@ReEncryptResponse' {} a -> s {sourceEncryptionAlgorithm = a} :: ReEncryptResponse) -- | Unique identifier of the KMS key used to originally encrypt the data. reEncryptResponse_sourceKeyId :: Lens.Lens' ReEncryptResponse (Prelude.Maybe Prelude.Text) reEncryptResponse_sourceKeyId = Lens.lens (\ReEncryptResponse' {sourceKeyId} -> sourceKeyId) (\s@ReEncryptResponse' {} a -> s {sourceKeyId = a} :: ReEncryptResponse) -- | The response's http status code. reEncryptResponse_httpStatus :: Lens.Lens' ReEncryptResponse Prelude.Int reEncryptResponse_httpStatus = Lens.lens (\ReEncryptResponse' {httpStatus} -> httpStatus) (\s@ReEncryptResponse' {} a -> s {httpStatus = a} :: ReEncryptResponse) instance Prelude.NFData ReEncryptResponse where rnf ReEncryptResponse' {..} = Prelude.rnf ciphertextBlob `Prelude.seq` Prelude.rnf destinationEncryptionAlgorithm `Prelude.seq` Prelude.rnf keyId `Prelude.seq` Prelude.rnf sourceEncryptionAlgorithm `Prelude.seq` Prelude.rnf sourceKeyId `Prelude.seq` Prelude.rnf httpStatus