amazonka-redshift-2.0: gen/Amazonka/Redshift/CreateHsmClientCertificate.hs
{-# 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.Redshift.CreateHsmClientCertificate
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Creates an HSM client certificate that an Amazon Redshift cluster will
-- use to connect to the client\'s HSM in order to store and retrieve the
-- keys used to encrypt the cluster databases.
--
-- The command returns a public key, which you must store in the HSM. In
-- addition to creating the HSM certificate, you must create an Amazon
-- Redshift HSM configuration that provides a cluster the information
-- needed to store and use encryption keys in the HSM. For more
-- information, go to
-- <https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html#working-with-HSM Hardware Security Modules>
-- in the /Amazon Redshift Cluster Management Guide/.
module Amazonka.Redshift.CreateHsmClientCertificate
( -- * Creating a Request
CreateHsmClientCertificate (..),
newCreateHsmClientCertificate,
-- * Request Lenses
createHsmClientCertificate_tags,
createHsmClientCertificate_hsmClientCertificateIdentifier,
-- * Destructuring the Response
CreateHsmClientCertificateResponse (..),
newCreateHsmClientCertificateResponse,
-- * Response Lenses
createHsmClientCertificateResponse_hsmClientCertificate,
createHsmClientCertificateResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
import Amazonka.Redshift.Types
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- |
--
-- /See:/ 'newCreateHsmClientCertificate' smart constructor.
data CreateHsmClientCertificate = CreateHsmClientCertificate'
{ -- | A list of tag instances.
tags :: Prelude.Maybe [Tag],
-- | The identifier to be assigned to the new HSM client certificate that the
-- cluster will use to connect to the HSM to use the database encryption
-- keys.
hsmClientCertificateIdentifier :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'CreateHsmClientCertificate' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'tags', 'createHsmClientCertificate_tags' - A list of tag instances.
--
-- 'hsmClientCertificateIdentifier', 'createHsmClientCertificate_hsmClientCertificateIdentifier' - The identifier to be assigned to the new HSM client certificate that the
-- cluster will use to connect to the HSM to use the database encryption
-- keys.
newCreateHsmClientCertificate ::
-- | 'hsmClientCertificateIdentifier'
Prelude.Text ->
CreateHsmClientCertificate
newCreateHsmClientCertificate
pHsmClientCertificateIdentifier_ =
CreateHsmClientCertificate'
{ tags = Prelude.Nothing,
hsmClientCertificateIdentifier =
pHsmClientCertificateIdentifier_
}
-- | A list of tag instances.
createHsmClientCertificate_tags :: Lens.Lens' CreateHsmClientCertificate (Prelude.Maybe [Tag])
createHsmClientCertificate_tags = Lens.lens (\CreateHsmClientCertificate' {tags} -> tags) (\s@CreateHsmClientCertificate' {} a -> s {tags = a} :: CreateHsmClientCertificate) Prelude.. Lens.mapping Lens.coerced
-- | The identifier to be assigned to the new HSM client certificate that the
-- cluster will use to connect to the HSM to use the database encryption
-- keys.
createHsmClientCertificate_hsmClientCertificateIdentifier :: Lens.Lens' CreateHsmClientCertificate Prelude.Text
createHsmClientCertificate_hsmClientCertificateIdentifier = Lens.lens (\CreateHsmClientCertificate' {hsmClientCertificateIdentifier} -> hsmClientCertificateIdentifier) (\s@CreateHsmClientCertificate' {} a -> s {hsmClientCertificateIdentifier = a} :: CreateHsmClientCertificate)
instance Core.AWSRequest CreateHsmClientCertificate where
type
AWSResponse CreateHsmClientCertificate =
CreateHsmClientCertificateResponse
request overrides =
Request.postQuery (overrides defaultService)
response =
Response.receiveXMLWrapper
"CreateHsmClientCertificateResult"
( \s h x ->
CreateHsmClientCertificateResponse'
Prelude.<$> (x Data..@? "HsmClientCertificate")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable CreateHsmClientCertificate where
hashWithSalt _salt CreateHsmClientCertificate' {..} =
_salt
`Prelude.hashWithSalt` tags
`Prelude.hashWithSalt` hsmClientCertificateIdentifier
instance Prelude.NFData CreateHsmClientCertificate where
rnf CreateHsmClientCertificate' {..} =
Prelude.rnf tags
`Prelude.seq` Prelude.rnf hsmClientCertificateIdentifier
instance Data.ToHeaders CreateHsmClientCertificate where
toHeaders = Prelude.const Prelude.mempty
instance Data.ToPath CreateHsmClientCertificate where
toPath = Prelude.const "/"
instance Data.ToQuery CreateHsmClientCertificate where
toQuery CreateHsmClientCertificate' {..} =
Prelude.mconcat
[ "Action"
Data.=: ("CreateHsmClientCertificate" :: Prelude.ByteString),
"Version"
Data.=: ("2012-12-01" :: Prelude.ByteString),
"Tags"
Data.=: Data.toQuery
(Data.toQueryList "Tag" Prelude.<$> tags),
"HsmClientCertificateIdentifier"
Data.=: hsmClientCertificateIdentifier
]
-- | /See:/ 'newCreateHsmClientCertificateResponse' smart constructor.
data CreateHsmClientCertificateResponse = CreateHsmClientCertificateResponse'
{ hsmClientCertificate :: Prelude.Maybe HsmClientCertificate,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'CreateHsmClientCertificateResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'hsmClientCertificate', 'createHsmClientCertificateResponse_hsmClientCertificate' - Undocumented member.
--
-- 'httpStatus', 'createHsmClientCertificateResponse_httpStatus' - The response's http status code.
newCreateHsmClientCertificateResponse ::
-- | 'httpStatus'
Prelude.Int ->
CreateHsmClientCertificateResponse
newCreateHsmClientCertificateResponse pHttpStatus_ =
CreateHsmClientCertificateResponse'
{ hsmClientCertificate =
Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | Undocumented member.
createHsmClientCertificateResponse_hsmClientCertificate :: Lens.Lens' CreateHsmClientCertificateResponse (Prelude.Maybe HsmClientCertificate)
createHsmClientCertificateResponse_hsmClientCertificate = Lens.lens (\CreateHsmClientCertificateResponse' {hsmClientCertificate} -> hsmClientCertificate) (\s@CreateHsmClientCertificateResponse' {} a -> s {hsmClientCertificate = a} :: CreateHsmClientCertificateResponse)
-- | The response's http status code.
createHsmClientCertificateResponse_httpStatus :: Lens.Lens' CreateHsmClientCertificateResponse Prelude.Int
createHsmClientCertificateResponse_httpStatus = Lens.lens (\CreateHsmClientCertificateResponse' {httpStatus} -> httpStatus) (\s@CreateHsmClientCertificateResponse' {} a -> s {httpStatus = a} :: CreateHsmClientCertificateResponse)
instance
Prelude.NFData
CreateHsmClientCertificateResponse
where
rnf CreateHsmClientCertificateResponse' {..} =
Prelude.rnf hsmClientCertificate
`Prelude.seq` Prelude.rnf httpStatus