amazonka-elasticbeanstalk-2.0: gen/Amazonka/ElasticBeanstalk/AssociateEnvironmentOperationsRole.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.ElasticBeanstalk.AssociateEnvironmentOperationsRole
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Add or change the operations role used by an environment. After this
-- call is made, Elastic Beanstalk uses the associated operations role for
-- permissions to downstream services during subsequent calls acting on
-- this environment. For more information, see
-- <https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-operationsrole.html Operations roles>
-- in the /AWS Elastic Beanstalk Developer Guide/.
module Amazonka.ElasticBeanstalk.AssociateEnvironmentOperationsRole
( -- * Creating a Request
AssociateEnvironmentOperationsRole (..),
newAssociateEnvironmentOperationsRole,
-- * Request Lenses
associateEnvironmentOperationsRole_environmentName,
associateEnvironmentOperationsRole_operationsRole,
-- * Destructuring the Response
AssociateEnvironmentOperationsRoleResponse (..),
newAssociateEnvironmentOperationsRoleResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.ElasticBeanstalk.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | Request to add or change the operations role used by an environment.
--
-- /See:/ 'newAssociateEnvironmentOperationsRole' smart constructor.
data AssociateEnvironmentOperationsRole = AssociateEnvironmentOperationsRole'
{ -- | The name of the environment to which to set the operations role.
environmentName :: Prelude.Text,
-- | The Amazon Resource Name (ARN) of an existing IAM role to be used as the
-- environment\'s operations role.
operationsRole :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AssociateEnvironmentOperationsRole' 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:
--
-- 'environmentName', 'associateEnvironmentOperationsRole_environmentName' - The name of the environment to which to set the operations role.
--
-- 'operationsRole', 'associateEnvironmentOperationsRole_operationsRole' - The Amazon Resource Name (ARN) of an existing IAM role to be used as the
-- environment\'s operations role.
newAssociateEnvironmentOperationsRole ::
-- | 'environmentName'
Prelude.Text ->
-- | 'operationsRole'
Prelude.Text ->
AssociateEnvironmentOperationsRole
newAssociateEnvironmentOperationsRole
pEnvironmentName_
pOperationsRole_ =
AssociateEnvironmentOperationsRole'
{ environmentName =
pEnvironmentName_,
operationsRole = pOperationsRole_
}
-- | The name of the environment to which to set the operations role.
associateEnvironmentOperationsRole_environmentName :: Lens.Lens' AssociateEnvironmentOperationsRole Prelude.Text
associateEnvironmentOperationsRole_environmentName = Lens.lens (\AssociateEnvironmentOperationsRole' {environmentName} -> environmentName) (\s@AssociateEnvironmentOperationsRole' {} a -> s {environmentName = a} :: AssociateEnvironmentOperationsRole)
-- | The Amazon Resource Name (ARN) of an existing IAM role to be used as the
-- environment\'s operations role.
associateEnvironmentOperationsRole_operationsRole :: Lens.Lens' AssociateEnvironmentOperationsRole Prelude.Text
associateEnvironmentOperationsRole_operationsRole = Lens.lens (\AssociateEnvironmentOperationsRole' {operationsRole} -> operationsRole) (\s@AssociateEnvironmentOperationsRole' {} a -> s {operationsRole = a} :: AssociateEnvironmentOperationsRole)
instance
Core.AWSRequest
AssociateEnvironmentOperationsRole
where
type
AWSResponse AssociateEnvironmentOperationsRole =
AssociateEnvironmentOperationsRoleResponse
request overrides =
Request.postQuery (overrides defaultService)
response =
Response.receiveNull
AssociateEnvironmentOperationsRoleResponse'
instance
Prelude.Hashable
AssociateEnvironmentOperationsRole
where
hashWithSalt
_salt
AssociateEnvironmentOperationsRole' {..} =
_salt
`Prelude.hashWithSalt` environmentName
`Prelude.hashWithSalt` operationsRole
instance
Prelude.NFData
AssociateEnvironmentOperationsRole
where
rnf AssociateEnvironmentOperationsRole' {..} =
Prelude.rnf environmentName
`Prelude.seq` Prelude.rnf operationsRole
instance
Data.ToHeaders
AssociateEnvironmentOperationsRole
where
toHeaders = Prelude.const Prelude.mempty
instance
Data.ToPath
AssociateEnvironmentOperationsRole
where
toPath = Prelude.const "/"
instance
Data.ToQuery
AssociateEnvironmentOperationsRole
where
toQuery AssociateEnvironmentOperationsRole' {..} =
Prelude.mconcat
[ "Action"
Data.=: ( "AssociateEnvironmentOperationsRole" ::
Prelude.ByteString
),
"Version"
Data.=: ("2010-12-01" :: Prelude.ByteString),
"EnvironmentName" Data.=: environmentName,
"OperationsRole" Data.=: operationsRole
]
-- | /See:/ 'newAssociateEnvironmentOperationsRoleResponse' smart constructor.
data AssociateEnvironmentOperationsRoleResponse = AssociateEnvironmentOperationsRoleResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AssociateEnvironmentOperationsRoleResponse' 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.
newAssociateEnvironmentOperationsRoleResponse ::
AssociateEnvironmentOperationsRoleResponse
newAssociateEnvironmentOperationsRoleResponse =
AssociateEnvironmentOperationsRoleResponse'
instance
Prelude.NFData
AssociateEnvironmentOperationsRoleResponse
where
rnf _ = ()