amazonka-eks-2.0: gen/Amazonka/EKS/AssociateEncryptionConfig.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.EKS.AssociateEncryptionConfig
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Associate encryption configuration to an existing cluster.
--
-- You can use this API to enable encryption on existing clusters which do
-- not have encryption already enabled. This allows you to implement a
-- defense-in-depth security strategy without migrating applications to new
-- Amazon EKS clusters.
module Amazonka.EKS.AssociateEncryptionConfig
( -- * Creating a Request
AssociateEncryptionConfig (..),
newAssociateEncryptionConfig,
-- * Request Lenses
associateEncryptionConfig_clientRequestToken,
associateEncryptionConfig_clusterName,
associateEncryptionConfig_encryptionConfig,
-- * Destructuring the Response
AssociateEncryptionConfigResponse (..),
newAssociateEncryptionConfigResponse,
-- * Response Lenses
associateEncryptionConfigResponse_update,
associateEncryptionConfigResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.EKS.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newAssociateEncryptionConfig' smart constructor.
data AssociateEncryptionConfig = AssociateEncryptionConfig'
{ -- | The client request token you are using with the encryption
-- configuration.
clientRequestToken :: Prelude.Maybe Prelude.Text,
-- | The name of the cluster that you are associating with encryption
-- configuration.
clusterName :: Prelude.Text,
-- | The configuration you are using for encryption.
encryptionConfig :: [EncryptionConfig]
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AssociateEncryptionConfig' 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:
--
-- 'clientRequestToken', 'associateEncryptionConfig_clientRequestToken' - The client request token you are using with the encryption
-- configuration.
--
-- 'clusterName', 'associateEncryptionConfig_clusterName' - The name of the cluster that you are associating with encryption
-- configuration.
--
-- 'encryptionConfig', 'associateEncryptionConfig_encryptionConfig' - The configuration you are using for encryption.
newAssociateEncryptionConfig ::
-- | 'clusterName'
Prelude.Text ->
AssociateEncryptionConfig
newAssociateEncryptionConfig pClusterName_ =
AssociateEncryptionConfig'
{ clientRequestToken =
Prelude.Nothing,
clusterName = pClusterName_,
encryptionConfig = Prelude.mempty
}
-- | The client request token you are using with the encryption
-- configuration.
associateEncryptionConfig_clientRequestToken :: Lens.Lens' AssociateEncryptionConfig (Prelude.Maybe Prelude.Text)
associateEncryptionConfig_clientRequestToken = Lens.lens (\AssociateEncryptionConfig' {clientRequestToken} -> clientRequestToken) (\s@AssociateEncryptionConfig' {} a -> s {clientRequestToken = a} :: AssociateEncryptionConfig)
-- | The name of the cluster that you are associating with encryption
-- configuration.
associateEncryptionConfig_clusterName :: Lens.Lens' AssociateEncryptionConfig Prelude.Text
associateEncryptionConfig_clusterName = Lens.lens (\AssociateEncryptionConfig' {clusterName} -> clusterName) (\s@AssociateEncryptionConfig' {} a -> s {clusterName = a} :: AssociateEncryptionConfig)
-- | The configuration you are using for encryption.
associateEncryptionConfig_encryptionConfig :: Lens.Lens' AssociateEncryptionConfig [EncryptionConfig]
associateEncryptionConfig_encryptionConfig = Lens.lens (\AssociateEncryptionConfig' {encryptionConfig} -> encryptionConfig) (\s@AssociateEncryptionConfig' {} a -> s {encryptionConfig = a} :: AssociateEncryptionConfig) Prelude.. Lens.coerced
instance Core.AWSRequest AssociateEncryptionConfig where
type
AWSResponse AssociateEncryptionConfig =
AssociateEncryptionConfigResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
AssociateEncryptionConfigResponse'
Prelude.<$> (x Data..?> "update")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable AssociateEncryptionConfig where
hashWithSalt _salt AssociateEncryptionConfig' {..} =
_salt
`Prelude.hashWithSalt` clientRequestToken
`Prelude.hashWithSalt` clusterName
`Prelude.hashWithSalt` encryptionConfig
instance Prelude.NFData AssociateEncryptionConfig where
rnf AssociateEncryptionConfig' {..} =
Prelude.rnf clientRequestToken
`Prelude.seq` Prelude.rnf clusterName
`Prelude.seq` Prelude.rnf encryptionConfig
instance Data.ToHeaders AssociateEncryptionConfig where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON AssociateEncryptionConfig where
toJSON AssociateEncryptionConfig' {..} =
Data.object
( Prelude.catMaybes
[ ("clientRequestToken" Data..=)
Prelude.<$> clientRequestToken,
Prelude.Just
("encryptionConfig" Data..= encryptionConfig)
]
)
instance Data.ToPath AssociateEncryptionConfig where
toPath AssociateEncryptionConfig' {..} =
Prelude.mconcat
[ "/clusters/",
Data.toBS clusterName,
"/encryption-config/associate"
]
instance Data.ToQuery AssociateEncryptionConfig where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newAssociateEncryptionConfigResponse' smart constructor.
data AssociateEncryptionConfigResponse = AssociateEncryptionConfigResponse'
{ update :: Prelude.Maybe Update,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AssociateEncryptionConfigResponse' 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:
--
-- 'update', 'associateEncryptionConfigResponse_update' - Undocumented member.
--
-- 'httpStatus', 'associateEncryptionConfigResponse_httpStatus' - The response's http status code.
newAssociateEncryptionConfigResponse ::
-- | 'httpStatus'
Prelude.Int ->
AssociateEncryptionConfigResponse
newAssociateEncryptionConfigResponse pHttpStatus_ =
AssociateEncryptionConfigResponse'
{ update =
Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | Undocumented member.
associateEncryptionConfigResponse_update :: Lens.Lens' AssociateEncryptionConfigResponse (Prelude.Maybe Update)
associateEncryptionConfigResponse_update = Lens.lens (\AssociateEncryptionConfigResponse' {update} -> update) (\s@AssociateEncryptionConfigResponse' {} a -> s {update = a} :: AssociateEncryptionConfigResponse)
-- | The response's http status code.
associateEncryptionConfigResponse_httpStatus :: Lens.Lens' AssociateEncryptionConfigResponse Prelude.Int
associateEncryptionConfigResponse_httpStatus = Lens.lens (\AssociateEncryptionConfigResponse' {httpStatus} -> httpStatus) (\s@AssociateEncryptionConfigResponse' {} a -> s {httpStatus = a} :: AssociateEncryptionConfigResponse)
instance
Prelude.NFData
AssociateEncryptionConfigResponse
where
rnf AssociateEncryptionConfigResponse' {..} =
Prelude.rnf update
`Prelude.seq` Prelude.rnf httpStatus