{-# 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.CloudFront.Types.FieldLevelEncryptionProfileConfig -- 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.CloudFront.Types.FieldLevelEncryptionProfileConfig where import Amazonka.CloudFront.Types.EncryptionEntities 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 -- | A complex data type of profiles for the field-level encryption. -- -- /See:/ 'newFieldLevelEncryptionProfileConfig' smart constructor. data FieldLevelEncryptionProfileConfig = FieldLevelEncryptionProfileConfig' { -- | An optional comment for the field-level encryption profile. The comment -- cannot be longer than 128 characters. comment :: Prelude.Maybe Prelude.Text, -- | Profile name for the field-level encryption profile. name :: Prelude.Text, -- | A unique number that ensures that the request can\'t be replayed. callerReference :: Prelude.Text, -- | A complex data type of encryption entities for the field-level -- encryption profile that include the public key ID, provider, and field -- patterns for specifying which fields to encrypt with this key. encryptionEntities :: EncryptionEntities } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'FieldLevelEncryptionProfileConfig' 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: -- -- 'comment', 'fieldLevelEncryptionProfileConfig_comment' - An optional comment for the field-level encryption profile. The comment -- cannot be longer than 128 characters. -- -- 'name', 'fieldLevelEncryptionProfileConfig_name' - Profile name for the field-level encryption profile. -- -- 'callerReference', 'fieldLevelEncryptionProfileConfig_callerReference' - A unique number that ensures that the request can\'t be replayed. -- -- 'encryptionEntities', 'fieldLevelEncryptionProfileConfig_encryptionEntities' - A complex data type of encryption entities for the field-level -- encryption profile that include the public key ID, provider, and field -- patterns for specifying which fields to encrypt with this key. newFieldLevelEncryptionProfileConfig :: -- | 'name' Prelude.Text -> -- | 'callerReference' Prelude.Text -> -- | 'encryptionEntities' EncryptionEntities -> FieldLevelEncryptionProfileConfig newFieldLevelEncryptionProfileConfig pName_ pCallerReference_ pEncryptionEntities_ = FieldLevelEncryptionProfileConfig' { comment = Prelude.Nothing, name = pName_, callerReference = pCallerReference_, encryptionEntities = pEncryptionEntities_ } -- | An optional comment for the field-level encryption profile. The comment -- cannot be longer than 128 characters. fieldLevelEncryptionProfileConfig_comment :: Lens.Lens' FieldLevelEncryptionProfileConfig (Prelude.Maybe Prelude.Text) fieldLevelEncryptionProfileConfig_comment = Lens.lens (\FieldLevelEncryptionProfileConfig' {comment} -> comment) (\s@FieldLevelEncryptionProfileConfig' {} a -> s {comment = a} :: FieldLevelEncryptionProfileConfig) -- | Profile name for the field-level encryption profile. fieldLevelEncryptionProfileConfig_name :: Lens.Lens' FieldLevelEncryptionProfileConfig Prelude.Text fieldLevelEncryptionProfileConfig_name = Lens.lens (\FieldLevelEncryptionProfileConfig' {name} -> name) (\s@FieldLevelEncryptionProfileConfig' {} a -> s {name = a} :: FieldLevelEncryptionProfileConfig) -- | A unique number that ensures that the request can\'t be replayed. fieldLevelEncryptionProfileConfig_callerReference :: Lens.Lens' FieldLevelEncryptionProfileConfig Prelude.Text fieldLevelEncryptionProfileConfig_callerReference = Lens.lens (\FieldLevelEncryptionProfileConfig' {callerReference} -> callerReference) (\s@FieldLevelEncryptionProfileConfig' {} a -> s {callerReference = a} :: FieldLevelEncryptionProfileConfig) -- | A complex data type of encryption entities for the field-level -- encryption profile that include the public key ID, provider, and field -- patterns for specifying which fields to encrypt with this key. fieldLevelEncryptionProfileConfig_encryptionEntities :: Lens.Lens' FieldLevelEncryptionProfileConfig EncryptionEntities fieldLevelEncryptionProfileConfig_encryptionEntities = Lens.lens (\FieldLevelEncryptionProfileConfig' {encryptionEntities} -> encryptionEntities) (\s@FieldLevelEncryptionProfileConfig' {} a -> s {encryptionEntities = a} :: FieldLevelEncryptionProfileConfig) instance Data.FromXML FieldLevelEncryptionProfileConfig where parseXML x = FieldLevelEncryptionProfileConfig' Prelude.<$> (x Data..@? "Comment") Prelude.<*> (x Data..@ "Name") Prelude.<*> (x Data..@ "CallerReference") Prelude.<*> (x Data..@ "EncryptionEntities") instance Prelude.Hashable FieldLevelEncryptionProfileConfig where hashWithSalt _salt FieldLevelEncryptionProfileConfig' {..} = _salt `Prelude.hashWithSalt` comment `Prelude.hashWithSalt` name `Prelude.hashWithSalt` callerReference `Prelude.hashWithSalt` encryptionEntities instance Prelude.NFData FieldLevelEncryptionProfileConfig where rnf FieldLevelEncryptionProfileConfig' {..} = Prelude.rnf comment `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf callerReference `Prelude.seq` Prelude.rnf encryptionEntities instance Data.ToXML FieldLevelEncryptionProfileConfig where toXML FieldLevelEncryptionProfileConfig' {..} = Prelude.mconcat [ "Comment" Data.@= comment, "Name" Data.@= name, "CallerReference" Data.@= callerReference, "EncryptionEntities" Data.@= encryptionEntities ]