amazonka-ec2-2.0: gen/Amazonka/EC2/DisassociateTransitGatewayMulticastDomain.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.EC2.DisassociateTransitGatewayMulticastDomain
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Disassociates the specified subnets from the transit gateway multicast
-- domain.
module Amazonka.EC2.DisassociateTransitGatewayMulticastDomain
( -- * Creating a Request
DisassociateTransitGatewayMulticastDomain (..),
newDisassociateTransitGatewayMulticastDomain,
-- * Request Lenses
disassociateTransitGatewayMulticastDomain_dryRun,
disassociateTransitGatewayMulticastDomain_subnetIds,
disassociateTransitGatewayMulticastDomain_transitGatewayAttachmentId,
disassociateTransitGatewayMulticastDomain_transitGatewayMulticastDomainId,
-- * Destructuring the Response
DisassociateTransitGatewayMulticastDomainResponse (..),
newDisassociateTransitGatewayMulticastDomainResponse,
-- * Response Lenses
disassociateTransitGatewayMulticastDomainResponse_associations,
disassociateTransitGatewayMulticastDomainResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.EC2.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDisassociateTransitGatewayMulticastDomain' smart constructor.
data DisassociateTransitGatewayMulticastDomain = DisassociateTransitGatewayMulticastDomain'
{ -- | Checks whether you have the required permissions for the action, without
-- actually making the request, and provides an error response. If you have
-- the required permissions, the error response is @DryRunOperation@.
-- Otherwise, it is @UnauthorizedOperation@.
dryRun :: Prelude.Maybe Prelude.Bool,
-- | The IDs of the subnets;
subnetIds :: Prelude.Maybe [Prelude.Text],
-- | The ID of the attachment.
transitGatewayAttachmentId :: Prelude.Maybe Prelude.Text,
-- | The ID of the transit gateway multicast domain.
transitGatewayMulticastDomainId :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DisassociateTransitGatewayMulticastDomain' 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:
--
-- 'dryRun', 'disassociateTransitGatewayMulticastDomain_dryRun' - Checks whether you have the required permissions for the action, without
-- actually making the request, and provides an error response. If you have
-- the required permissions, the error response is @DryRunOperation@.
-- Otherwise, it is @UnauthorizedOperation@.
--
-- 'subnetIds', 'disassociateTransitGatewayMulticastDomain_subnetIds' - The IDs of the subnets;
--
-- 'transitGatewayAttachmentId', 'disassociateTransitGatewayMulticastDomain_transitGatewayAttachmentId' - The ID of the attachment.
--
-- 'transitGatewayMulticastDomainId', 'disassociateTransitGatewayMulticastDomain_transitGatewayMulticastDomainId' - The ID of the transit gateway multicast domain.
newDisassociateTransitGatewayMulticastDomain ::
DisassociateTransitGatewayMulticastDomain
newDisassociateTransitGatewayMulticastDomain =
DisassociateTransitGatewayMulticastDomain'
{ dryRun =
Prelude.Nothing,
subnetIds = Prelude.Nothing,
transitGatewayAttachmentId =
Prelude.Nothing,
transitGatewayMulticastDomainId =
Prelude.Nothing
}
-- | Checks whether you have the required permissions for the action, without
-- actually making the request, and provides an error response. If you have
-- the required permissions, the error response is @DryRunOperation@.
-- Otherwise, it is @UnauthorizedOperation@.
disassociateTransitGatewayMulticastDomain_dryRun :: Lens.Lens' DisassociateTransitGatewayMulticastDomain (Prelude.Maybe Prelude.Bool)
disassociateTransitGatewayMulticastDomain_dryRun = Lens.lens (\DisassociateTransitGatewayMulticastDomain' {dryRun} -> dryRun) (\s@DisassociateTransitGatewayMulticastDomain' {} a -> s {dryRun = a} :: DisassociateTransitGatewayMulticastDomain)
-- | The IDs of the subnets;
disassociateTransitGatewayMulticastDomain_subnetIds :: Lens.Lens' DisassociateTransitGatewayMulticastDomain (Prelude.Maybe [Prelude.Text])
disassociateTransitGatewayMulticastDomain_subnetIds = Lens.lens (\DisassociateTransitGatewayMulticastDomain' {subnetIds} -> subnetIds) (\s@DisassociateTransitGatewayMulticastDomain' {} a -> s {subnetIds = a} :: DisassociateTransitGatewayMulticastDomain) Prelude.. Lens.mapping Lens.coerced
-- | The ID of the attachment.
disassociateTransitGatewayMulticastDomain_transitGatewayAttachmentId :: Lens.Lens' DisassociateTransitGatewayMulticastDomain (Prelude.Maybe Prelude.Text)
disassociateTransitGatewayMulticastDomain_transitGatewayAttachmentId = Lens.lens (\DisassociateTransitGatewayMulticastDomain' {transitGatewayAttachmentId} -> transitGatewayAttachmentId) (\s@DisassociateTransitGatewayMulticastDomain' {} a -> s {transitGatewayAttachmentId = a} :: DisassociateTransitGatewayMulticastDomain)
-- | The ID of the transit gateway multicast domain.
disassociateTransitGatewayMulticastDomain_transitGatewayMulticastDomainId :: Lens.Lens' DisassociateTransitGatewayMulticastDomain (Prelude.Maybe Prelude.Text)
disassociateTransitGatewayMulticastDomain_transitGatewayMulticastDomainId = Lens.lens (\DisassociateTransitGatewayMulticastDomain' {transitGatewayMulticastDomainId} -> transitGatewayMulticastDomainId) (\s@DisassociateTransitGatewayMulticastDomain' {} a -> s {transitGatewayMulticastDomainId = a} :: DisassociateTransitGatewayMulticastDomain)
instance
Core.AWSRequest
DisassociateTransitGatewayMulticastDomain
where
type
AWSResponse
DisassociateTransitGatewayMulticastDomain =
DisassociateTransitGatewayMulticastDomainResponse
request overrides =
Request.postQuery (overrides defaultService)
response =
Response.receiveXML
( \s h x ->
DisassociateTransitGatewayMulticastDomainResponse'
Prelude.<$> (x Data..@? "associations")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance
Prelude.Hashable
DisassociateTransitGatewayMulticastDomain
where
hashWithSalt
_salt
DisassociateTransitGatewayMulticastDomain' {..} =
_salt
`Prelude.hashWithSalt` dryRun
`Prelude.hashWithSalt` subnetIds
`Prelude.hashWithSalt` transitGatewayAttachmentId
`Prelude.hashWithSalt` transitGatewayMulticastDomainId
instance
Prelude.NFData
DisassociateTransitGatewayMulticastDomain
where
rnf DisassociateTransitGatewayMulticastDomain' {..} =
Prelude.rnf dryRun
`Prelude.seq` Prelude.rnf subnetIds
`Prelude.seq` Prelude.rnf transitGatewayAttachmentId
`Prelude.seq` Prelude.rnf transitGatewayMulticastDomainId
instance
Data.ToHeaders
DisassociateTransitGatewayMulticastDomain
where
toHeaders = Prelude.const Prelude.mempty
instance
Data.ToPath
DisassociateTransitGatewayMulticastDomain
where
toPath = Prelude.const "/"
instance
Data.ToQuery
DisassociateTransitGatewayMulticastDomain
where
toQuery
DisassociateTransitGatewayMulticastDomain' {..} =
Prelude.mconcat
[ "Action"
Data.=: ( "DisassociateTransitGatewayMulticastDomain" ::
Prelude.ByteString
),
"Version"
Data.=: ("2016-11-15" :: Prelude.ByteString),
"DryRun" Data.=: dryRun,
Data.toQuery
(Data.toQueryList "SubnetIds" Prelude.<$> subnetIds),
"TransitGatewayAttachmentId"
Data.=: transitGatewayAttachmentId,
"TransitGatewayMulticastDomainId"
Data.=: transitGatewayMulticastDomainId
]
-- | /See:/ 'newDisassociateTransitGatewayMulticastDomainResponse' smart constructor.
data DisassociateTransitGatewayMulticastDomainResponse = DisassociateTransitGatewayMulticastDomainResponse'
{ -- | Information about the association.
associations :: Prelude.Maybe TransitGatewayMulticastDomainAssociations,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DisassociateTransitGatewayMulticastDomainResponse' 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:
--
-- 'associations', 'disassociateTransitGatewayMulticastDomainResponse_associations' - Information about the association.
--
-- 'httpStatus', 'disassociateTransitGatewayMulticastDomainResponse_httpStatus' - The response's http status code.
newDisassociateTransitGatewayMulticastDomainResponse ::
-- | 'httpStatus'
Prelude.Int ->
DisassociateTransitGatewayMulticastDomainResponse
newDisassociateTransitGatewayMulticastDomainResponse
pHttpStatus_ =
DisassociateTransitGatewayMulticastDomainResponse'
{ associations =
Prelude.Nothing,
httpStatus =
pHttpStatus_
}
-- | Information about the association.
disassociateTransitGatewayMulticastDomainResponse_associations :: Lens.Lens' DisassociateTransitGatewayMulticastDomainResponse (Prelude.Maybe TransitGatewayMulticastDomainAssociations)
disassociateTransitGatewayMulticastDomainResponse_associations = Lens.lens (\DisassociateTransitGatewayMulticastDomainResponse' {associations} -> associations) (\s@DisassociateTransitGatewayMulticastDomainResponse' {} a -> s {associations = a} :: DisassociateTransitGatewayMulticastDomainResponse)
-- | The response's http status code.
disassociateTransitGatewayMulticastDomainResponse_httpStatus :: Lens.Lens' DisassociateTransitGatewayMulticastDomainResponse Prelude.Int
disassociateTransitGatewayMulticastDomainResponse_httpStatus = Lens.lens (\DisassociateTransitGatewayMulticastDomainResponse' {httpStatus} -> httpStatus) (\s@DisassociateTransitGatewayMulticastDomainResponse' {} a -> s {httpStatus = a} :: DisassociateTransitGatewayMulticastDomainResponse)
instance
Prelude.NFData
DisassociateTransitGatewayMulticastDomainResponse
where
rnf
DisassociateTransitGatewayMulticastDomainResponse' {..} =
Prelude.rnf associations
`Prelude.seq` Prelude.rnf httpStatus