{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# 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.Types.HsmConfiguration -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.Redshift.Types.HsmConfiguration 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.Internal import Amazonka.Redshift.Types.Tag -- | Returns information about an HSM configuration, which is an object that -- describes to Amazon Redshift clusters the information they require to -- connect to an HSM where they can store database encryption keys. -- -- /See:/ 'newHsmConfiguration' smart constructor. data HsmConfiguration = HsmConfiguration' { -- | A text description of the HSM configuration. description :: Prelude.Maybe Prelude.Text, -- | The name of the Amazon Redshift HSM configuration. hsmConfigurationIdentifier :: Prelude.Maybe Prelude.Text, -- | The IP address that the Amazon Redshift cluster must use to access the -- HSM. hsmIpAddress :: Prelude.Maybe Prelude.Text, -- | The name of the partition in the HSM where the Amazon Redshift clusters -- will store their database encryption keys. hsmPartitionName :: Prelude.Maybe Prelude.Text, -- | The list of tags for the HSM configuration. tags :: Prelude.Maybe [Tag] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'HsmConfiguration' 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: -- -- 'description', 'hsmConfiguration_description' - A text description of the HSM configuration. -- -- 'hsmConfigurationIdentifier', 'hsmConfiguration_hsmConfigurationIdentifier' - The name of the Amazon Redshift HSM configuration. -- -- 'hsmIpAddress', 'hsmConfiguration_hsmIpAddress' - The IP address that the Amazon Redshift cluster must use to access the -- HSM. -- -- 'hsmPartitionName', 'hsmConfiguration_hsmPartitionName' - The name of the partition in the HSM where the Amazon Redshift clusters -- will store their database encryption keys. -- -- 'tags', 'hsmConfiguration_tags' - The list of tags for the HSM configuration. newHsmConfiguration :: HsmConfiguration newHsmConfiguration = HsmConfiguration' { description = Prelude.Nothing, hsmConfigurationIdentifier = Prelude.Nothing, hsmIpAddress = Prelude.Nothing, hsmPartitionName = Prelude.Nothing, tags = Prelude.Nothing } -- | A text description of the HSM configuration. hsmConfiguration_description :: Lens.Lens' HsmConfiguration (Prelude.Maybe Prelude.Text) hsmConfiguration_description = Lens.lens (\HsmConfiguration' {description} -> description) (\s@HsmConfiguration' {} a -> s {description = a} :: HsmConfiguration) -- | The name of the Amazon Redshift HSM configuration. hsmConfiguration_hsmConfigurationIdentifier :: Lens.Lens' HsmConfiguration (Prelude.Maybe Prelude.Text) hsmConfiguration_hsmConfigurationIdentifier = Lens.lens (\HsmConfiguration' {hsmConfigurationIdentifier} -> hsmConfigurationIdentifier) (\s@HsmConfiguration' {} a -> s {hsmConfigurationIdentifier = a} :: HsmConfiguration) -- | The IP address that the Amazon Redshift cluster must use to access the -- HSM. hsmConfiguration_hsmIpAddress :: Lens.Lens' HsmConfiguration (Prelude.Maybe Prelude.Text) hsmConfiguration_hsmIpAddress = Lens.lens (\HsmConfiguration' {hsmIpAddress} -> hsmIpAddress) (\s@HsmConfiguration' {} a -> s {hsmIpAddress = a} :: HsmConfiguration) -- | The name of the partition in the HSM where the Amazon Redshift clusters -- will store their database encryption keys. hsmConfiguration_hsmPartitionName :: Lens.Lens' HsmConfiguration (Prelude.Maybe Prelude.Text) hsmConfiguration_hsmPartitionName = Lens.lens (\HsmConfiguration' {hsmPartitionName} -> hsmPartitionName) (\s@HsmConfiguration' {} a -> s {hsmPartitionName = a} :: HsmConfiguration) -- | The list of tags for the HSM configuration. hsmConfiguration_tags :: Lens.Lens' HsmConfiguration (Prelude.Maybe [Tag]) hsmConfiguration_tags = Lens.lens (\HsmConfiguration' {tags} -> tags) (\s@HsmConfiguration' {} a -> s {tags = a} :: HsmConfiguration) Prelude.. Lens.mapping Lens.coerced instance Data.FromXML HsmConfiguration where parseXML x = HsmConfiguration' Prelude.<$> (x Data..@? "Description") Prelude.<*> (x Data..@? "HsmConfigurationIdentifier") Prelude.<*> (x Data..@? "HsmIpAddress") Prelude.<*> (x Data..@? "HsmPartitionName") Prelude.<*> ( x Data..@? "Tags" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "Tag") ) instance Prelude.Hashable HsmConfiguration where hashWithSalt _salt HsmConfiguration' {..} = _salt `Prelude.hashWithSalt` description `Prelude.hashWithSalt` hsmConfigurationIdentifier `Prelude.hashWithSalt` hsmIpAddress `Prelude.hashWithSalt` hsmPartitionName `Prelude.hashWithSalt` tags instance Prelude.NFData HsmConfiguration where rnf HsmConfiguration' {..} = Prelude.rnf description `Prelude.seq` Prelude.rnf hsmConfigurationIdentifier `Prelude.seq` Prelude.rnf hsmIpAddress `Prelude.seq` Prelude.rnf hsmPartitionName `Prelude.seq` Prelude.rnf tags