amazonka-opsworks-2.0: gen/Amazonka/OpsWorks/AssociateElasticIp.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.OpsWorks.AssociateElasticIp
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Associates one of the stack\'s registered Elastic IP addresses with a
-- specified instance. The address must first be registered with the stack
-- by calling RegisterElasticIp. For more information, see
-- <https://docs.aws.amazon.com/opsworks/latest/userguide/resources.html Resource Management>.
--
-- __Required Permissions__: To use this action, an IAM user must have a
-- Manage permissions level for the stack, or an attached policy that
-- explicitly grants permissions. For more information on user permissions,
-- see
-- <https://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html Managing User Permissions>.
module Amazonka.OpsWorks.AssociateElasticIp
( -- * Creating a Request
AssociateElasticIp (..),
newAssociateElasticIp,
-- * Request Lenses
associateElasticIp_instanceId,
associateElasticIp_elasticIp,
-- * Destructuring the Response
AssociateElasticIpResponse (..),
newAssociateElasticIpResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.OpsWorks.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newAssociateElasticIp' smart constructor.
data AssociateElasticIp = AssociateElasticIp'
{ -- | The instance ID.
instanceId :: Prelude.Maybe Prelude.Text,
-- | The Elastic IP address.
elasticIp :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AssociateElasticIp' 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:
--
-- 'instanceId', 'associateElasticIp_instanceId' - The instance ID.
--
-- 'elasticIp', 'associateElasticIp_elasticIp' - The Elastic IP address.
newAssociateElasticIp ::
-- | 'elasticIp'
Prelude.Text ->
AssociateElasticIp
newAssociateElasticIp pElasticIp_ =
AssociateElasticIp'
{ instanceId = Prelude.Nothing,
elasticIp = pElasticIp_
}
-- | The instance ID.
associateElasticIp_instanceId :: Lens.Lens' AssociateElasticIp (Prelude.Maybe Prelude.Text)
associateElasticIp_instanceId = Lens.lens (\AssociateElasticIp' {instanceId} -> instanceId) (\s@AssociateElasticIp' {} a -> s {instanceId = a} :: AssociateElasticIp)
-- | The Elastic IP address.
associateElasticIp_elasticIp :: Lens.Lens' AssociateElasticIp Prelude.Text
associateElasticIp_elasticIp = Lens.lens (\AssociateElasticIp' {elasticIp} -> elasticIp) (\s@AssociateElasticIp' {} a -> s {elasticIp = a} :: AssociateElasticIp)
instance Core.AWSRequest AssociateElasticIp where
type
AWSResponse AssociateElasticIp =
AssociateElasticIpResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveNull AssociateElasticIpResponse'
instance Prelude.Hashable AssociateElasticIp where
hashWithSalt _salt AssociateElasticIp' {..} =
_salt
`Prelude.hashWithSalt` instanceId
`Prelude.hashWithSalt` elasticIp
instance Prelude.NFData AssociateElasticIp where
rnf AssociateElasticIp' {..} =
Prelude.rnf instanceId
`Prelude.seq` Prelude.rnf elasticIp
instance Data.ToHeaders AssociateElasticIp where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "OpsWorks_20130218.AssociateElasticIp" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON AssociateElasticIp where
toJSON AssociateElasticIp' {..} =
Data.object
( Prelude.catMaybes
[ ("InstanceId" Data..=) Prelude.<$> instanceId,
Prelude.Just ("ElasticIp" Data..= elasticIp)
]
)
instance Data.ToPath AssociateElasticIp where
toPath = Prelude.const "/"
instance Data.ToQuery AssociateElasticIp where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newAssociateElasticIpResponse' smart constructor.
data AssociateElasticIpResponse = AssociateElasticIpResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AssociateElasticIpResponse' 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.
newAssociateElasticIpResponse ::
AssociateElasticIpResponse
newAssociateElasticIpResponse =
AssociateElasticIpResponse'
instance Prelude.NFData AssociateElasticIpResponse where
rnf _ = ()