amazonka-wellarchitected-2.0: gen/Amazonka/WellArchitected/AssociateLenses.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.WellArchitected.AssociateLenses
-- 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 a lens to a workload.
--
-- Up to 10 lenses can be associated with a workload in a single API
-- operation. A maximum of 20 lenses can be associated with a workload.
--
-- __Disclaimer__
--
-- By accessing and\/or applying custom lenses created by another Amazon
-- Web Services user or account, you acknowledge that custom lenses created
-- by other users and shared with you are Third Party Content as defined in
-- the Amazon Web Services Customer Agreement.
module Amazonka.WellArchitected.AssociateLenses
( -- * Creating a Request
AssociateLenses (..),
newAssociateLenses,
-- * Request Lenses
associateLenses_workloadId,
associateLenses_lensAliases,
-- * Destructuring the Response
AssociateLensesResponse (..),
newAssociateLensesResponse,
)
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 qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.WellArchitected.Types
-- | Input to associate lens reviews.
--
-- /See:/ 'newAssociateLenses' smart constructor.
data AssociateLenses = AssociateLenses'
{ workloadId :: Prelude.Text,
lensAliases :: Prelude.NonEmpty Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AssociateLenses' 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:
--
-- 'workloadId', 'associateLenses_workloadId' - Undocumented member.
--
-- 'lensAliases', 'associateLenses_lensAliases' - Undocumented member.
newAssociateLenses ::
-- | 'workloadId'
Prelude.Text ->
-- | 'lensAliases'
Prelude.NonEmpty Prelude.Text ->
AssociateLenses
newAssociateLenses pWorkloadId_ pLensAliases_ =
AssociateLenses'
{ workloadId = pWorkloadId_,
lensAliases = Lens.coerced Lens.# pLensAliases_
}
-- | Undocumented member.
associateLenses_workloadId :: Lens.Lens' AssociateLenses Prelude.Text
associateLenses_workloadId = Lens.lens (\AssociateLenses' {workloadId} -> workloadId) (\s@AssociateLenses' {} a -> s {workloadId = a} :: AssociateLenses)
-- | Undocumented member.
associateLenses_lensAliases :: Lens.Lens' AssociateLenses (Prelude.NonEmpty Prelude.Text)
associateLenses_lensAliases = Lens.lens (\AssociateLenses' {lensAliases} -> lensAliases) (\s@AssociateLenses' {} a -> s {lensAliases = a} :: AssociateLenses) Prelude.. Lens.coerced
instance Core.AWSRequest AssociateLenses where
type
AWSResponse AssociateLenses =
AssociateLensesResponse
request overrides =
Request.patchJSON (overrides defaultService)
response =
Response.receiveNull AssociateLensesResponse'
instance Prelude.Hashable AssociateLenses where
hashWithSalt _salt AssociateLenses' {..} =
_salt
`Prelude.hashWithSalt` workloadId
`Prelude.hashWithSalt` lensAliases
instance Prelude.NFData AssociateLenses where
rnf AssociateLenses' {..} =
Prelude.rnf workloadId
`Prelude.seq` Prelude.rnf lensAliases
instance Data.ToHeaders AssociateLenses where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON AssociateLenses where
toJSON AssociateLenses' {..} =
Data.object
( Prelude.catMaybes
[Prelude.Just ("LensAliases" Data..= lensAliases)]
)
instance Data.ToPath AssociateLenses where
toPath AssociateLenses' {..} =
Prelude.mconcat
[ "/workloads/",
Data.toBS workloadId,
"/associateLenses"
]
instance Data.ToQuery AssociateLenses where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newAssociateLensesResponse' smart constructor.
data AssociateLensesResponse = AssociateLensesResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AssociateLensesResponse' 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.
newAssociateLensesResponse ::
AssociateLensesResponse
newAssociateLensesResponse = AssociateLensesResponse'
instance Prelude.NFData AssociateLensesResponse where
rnf _ = ()