amazonka-ec2-2.0: gen/Amazonka/EC2/SearchTransitGatewayMulticastGroups.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.SearchTransitGatewayMulticastGroups
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Searches one or more transit gateway multicast groups and returns the
-- group membership information.
--
-- This operation returns paginated results.
module Amazonka.EC2.SearchTransitGatewayMulticastGroups
( -- * Creating a Request
SearchTransitGatewayMulticastGroups (..),
newSearchTransitGatewayMulticastGroups,
-- * Request Lenses
searchTransitGatewayMulticastGroups_dryRun,
searchTransitGatewayMulticastGroups_filters,
searchTransitGatewayMulticastGroups_maxResults,
searchTransitGatewayMulticastGroups_nextToken,
searchTransitGatewayMulticastGroups_transitGatewayMulticastDomainId,
-- * Destructuring the Response
SearchTransitGatewayMulticastGroupsResponse (..),
newSearchTransitGatewayMulticastGroupsResponse,
-- * Response Lenses
searchTransitGatewayMulticastGroupsResponse_multicastGroups,
searchTransitGatewayMulticastGroupsResponse_nextToken,
searchTransitGatewayMulticastGroupsResponse_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:/ 'newSearchTransitGatewayMulticastGroups' smart constructor.
data SearchTransitGatewayMulticastGroups = SearchTransitGatewayMulticastGroups'
{ -- | 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,
-- | One or more filters. The possible values are:
--
-- - @group-ip-address@ - The IP address of the transit gateway multicast
-- group.
--
-- - @is-group-member@ - The resource is a group member. Valid values are
-- @true@ | @false@.
--
-- - @is-group-source@ - The resource is a group source. Valid values are
-- @true@ | @false@.
--
-- - @member-type@ - The member type. Valid values are @igmp@ | @static@.
--
-- - @resource-id@ - The ID of the resource.
--
-- - @resource-type@ - The type of resource. Valid values are @vpc@ |
-- @vpn@ | @direct-connect-gateway@ | @tgw-peering@.
--
-- - @source-type@ - The source type. Valid values are @igmp@ | @static@.
--
-- - @subnet-id@ - The ID of the subnet.
--
-- - @transit-gateway-attachment-id@ - The id of the transit gateway
-- attachment.
filters :: Prelude.Maybe [Filter],
-- | The maximum number of results to return with a single call. To retrieve
-- the remaining results, make another call with the returned @nextToken@
-- value.
maxResults :: Prelude.Maybe Prelude.Natural,
-- | The token for the next page of results.
nextToken :: 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 'SearchTransitGatewayMulticastGroups' 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', 'searchTransitGatewayMulticastGroups_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@.
--
-- 'filters', 'searchTransitGatewayMulticastGroups_filters' - One or more filters. The possible values are:
--
-- - @group-ip-address@ - The IP address of the transit gateway multicast
-- group.
--
-- - @is-group-member@ - The resource is a group member. Valid values are
-- @true@ | @false@.
--
-- - @is-group-source@ - The resource is a group source. Valid values are
-- @true@ | @false@.
--
-- - @member-type@ - The member type. Valid values are @igmp@ | @static@.
--
-- - @resource-id@ - The ID of the resource.
--
-- - @resource-type@ - The type of resource. Valid values are @vpc@ |
-- @vpn@ | @direct-connect-gateway@ | @tgw-peering@.
--
-- - @source-type@ - The source type. Valid values are @igmp@ | @static@.
--
-- - @subnet-id@ - The ID of the subnet.
--
-- - @transit-gateway-attachment-id@ - The id of the transit gateway
-- attachment.
--
-- 'maxResults', 'searchTransitGatewayMulticastGroups_maxResults' - The maximum number of results to return with a single call. To retrieve
-- the remaining results, make another call with the returned @nextToken@
-- value.
--
-- 'nextToken', 'searchTransitGatewayMulticastGroups_nextToken' - The token for the next page of results.
--
-- 'transitGatewayMulticastDomainId', 'searchTransitGatewayMulticastGroups_transitGatewayMulticastDomainId' - The ID of the transit gateway multicast domain.
newSearchTransitGatewayMulticastGroups ::
SearchTransitGatewayMulticastGroups
newSearchTransitGatewayMulticastGroups =
SearchTransitGatewayMulticastGroups'
{ dryRun =
Prelude.Nothing,
filters = Prelude.Nothing,
maxResults = Prelude.Nothing,
nextToken = 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@.
searchTransitGatewayMulticastGroups_dryRun :: Lens.Lens' SearchTransitGatewayMulticastGroups (Prelude.Maybe Prelude.Bool)
searchTransitGatewayMulticastGroups_dryRun = Lens.lens (\SearchTransitGatewayMulticastGroups' {dryRun} -> dryRun) (\s@SearchTransitGatewayMulticastGroups' {} a -> s {dryRun = a} :: SearchTransitGatewayMulticastGroups)
-- | One or more filters. The possible values are:
--
-- - @group-ip-address@ - The IP address of the transit gateway multicast
-- group.
--
-- - @is-group-member@ - The resource is a group member. Valid values are
-- @true@ | @false@.
--
-- - @is-group-source@ - The resource is a group source. Valid values are
-- @true@ | @false@.
--
-- - @member-type@ - The member type. Valid values are @igmp@ | @static@.
--
-- - @resource-id@ - The ID of the resource.
--
-- - @resource-type@ - The type of resource. Valid values are @vpc@ |
-- @vpn@ | @direct-connect-gateway@ | @tgw-peering@.
--
-- - @source-type@ - The source type. Valid values are @igmp@ | @static@.
--
-- - @subnet-id@ - The ID of the subnet.
--
-- - @transit-gateway-attachment-id@ - The id of the transit gateway
-- attachment.
searchTransitGatewayMulticastGroups_filters :: Lens.Lens' SearchTransitGatewayMulticastGroups (Prelude.Maybe [Filter])
searchTransitGatewayMulticastGroups_filters = Lens.lens (\SearchTransitGatewayMulticastGroups' {filters} -> filters) (\s@SearchTransitGatewayMulticastGroups' {} a -> s {filters = a} :: SearchTransitGatewayMulticastGroups) Prelude.. Lens.mapping Lens.coerced
-- | The maximum number of results to return with a single call. To retrieve
-- the remaining results, make another call with the returned @nextToken@
-- value.
searchTransitGatewayMulticastGroups_maxResults :: Lens.Lens' SearchTransitGatewayMulticastGroups (Prelude.Maybe Prelude.Natural)
searchTransitGatewayMulticastGroups_maxResults = Lens.lens (\SearchTransitGatewayMulticastGroups' {maxResults} -> maxResults) (\s@SearchTransitGatewayMulticastGroups' {} a -> s {maxResults = a} :: SearchTransitGatewayMulticastGroups)
-- | The token for the next page of results.
searchTransitGatewayMulticastGroups_nextToken :: Lens.Lens' SearchTransitGatewayMulticastGroups (Prelude.Maybe Prelude.Text)
searchTransitGatewayMulticastGroups_nextToken = Lens.lens (\SearchTransitGatewayMulticastGroups' {nextToken} -> nextToken) (\s@SearchTransitGatewayMulticastGroups' {} a -> s {nextToken = a} :: SearchTransitGatewayMulticastGroups)
-- | The ID of the transit gateway multicast domain.
searchTransitGatewayMulticastGroups_transitGatewayMulticastDomainId :: Lens.Lens' SearchTransitGatewayMulticastGroups (Prelude.Maybe Prelude.Text)
searchTransitGatewayMulticastGroups_transitGatewayMulticastDomainId = Lens.lens (\SearchTransitGatewayMulticastGroups' {transitGatewayMulticastDomainId} -> transitGatewayMulticastDomainId) (\s@SearchTransitGatewayMulticastGroups' {} a -> s {transitGatewayMulticastDomainId = a} :: SearchTransitGatewayMulticastGroups)
instance
Core.AWSPager
SearchTransitGatewayMulticastGroups
where
page rq rs
| Core.stop
( rs
Lens.^? searchTransitGatewayMulticastGroupsResponse_nextToken
Prelude.. Lens._Just
) =
Prelude.Nothing
| Core.stop
( rs
Lens.^? searchTransitGatewayMulticastGroupsResponse_multicastGroups
Prelude.. Lens._Just
) =
Prelude.Nothing
| Prelude.otherwise =
Prelude.Just
Prelude.$ rq
Prelude.& searchTransitGatewayMulticastGroups_nextToken
Lens..~ rs
Lens.^? searchTransitGatewayMulticastGroupsResponse_nextToken
Prelude.. Lens._Just
instance
Core.AWSRequest
SearchTransitGatewayMulticastGroups
where
type
AWSResponse SearchTransitGatewayMulticastGroups =
SearchTransitGatewayMulticastGroupsResponse
request overrides =
Request.postQuery (overrides defaultService)
response =
Response.receiveXML
( \s h x ->
SearchTransitGatewayMulticastGroupsResponse'
Prelude.<$> ( x
Data..@? "multicastGroups"
Core..!@ Prelude.mempty
Prelude.>>= Core.may (Data.parseXMLList "item")
)
Prelude.<*> (x Data..@? "nextToken")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance
Prelude.Hashable
SearchTransitGatewayMulticastGroups
where
hashWithSalt
_salt
SearchTransitGatewayMulticastGroups' {..} =
_salt
`Prelude.hashWithSalt` dryRun
`Prelude.hashWithSalt` filters
`Prelude.hashWithSalt` maxResults
`Prelude.hashWithSalt` nextToken
`Prelude.hashWithSalt` transitGatewayMulticastDomainId
instance
Prelude.NFData
SearchTransitGatewayMulticastGroups
where
rnf SearchTransitGatewayMulticastGroups' {..} =
Prelude.rnf dryRun
`Prelude.seq` Prelude.rnf filters
`Prelude.seq` Prelude.rnf maxResults
`Prelude.seq` Prelude.rnf nextToken
`Prelude.seq` Prelude.rnf transitGatewayMulticastDomainId
instance
Data.ToHeaders
SearchTransitGatewayMulticastGroups
where
toHeaders = Prelude.const Prelude.mempty
instance
Data.ToPath
SearchTransitGatewayMulticastGroups
where
toPath = Prelude.const "/"
instance
Data.ToQuery
SearchTransitGatewayMulticastGroups
where
toQuery SearchTransitGatewayMulticastGroups' {..} =
Prelude.mconcat
[ "Action"
Data.=: ( "SearchTransitGatewayMulticastGroups" ::
Prelude.ByteString
),
"Version"
Data.=: ("2016-11-15" :: Prelude.ByteString),
"DryRun" Data.=: dryRun,
Data.toQuery
(Data.toQueryList "Filter" Prelude.<$> filters),
"MaxResults" Data.=: maxResults,
"NextToken" Data.=: nextToken,
"TransitGatewayMulticastDomainId"
Data.=: transitGatewayMulticastDomainId
]
-- | /See:/ 'newSearchTransitGatewayMulticastGroupsResponse' smart constructor.
data SearchTransitGatewayMulticastGroupsResponse = SearchTransitGatewayMulticastGroupsResponse'
{ -- | Information about the transit gateway multicast group.
multicastGroups :: Prelude.Maybe [TransitGatewayMulticastGroup],
-- | The token to use to retrieve the next page of results. This value is
-- @null@ when there are no more results to return.
nextToken :: Prelude.Maybe Prelude.Text,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'SearchTransitGatewayMulticastGroupsResponse' 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:
--
-- 'multicastGroups', 'searchTransitGatewayMulticastGroupsResponse_multicastGroups' - Information about the transit gateway multicast group.
--
-- 'nextToken', 'searchTransitGatewayMulticastGroupsResponse_nextToken' - The token to use to retrieve the next page of results. This value is
-- @null@ when there are no more results to return.
--
-- 'httpStatus', 'searchTransitGatewayMulticastGroupsResponse_httpStatus' - The response's http status code.
newSearchTransitGatewayMulticastGroupsResponse ::
-- | 'httpStatus'
Prelude.Int ->
SearchTransitGatewayMulticastGroupsResponse
newSearchTransitGatewayMulticastGroupsResponse
pHttpStatus_ =
SearchTransitGatewayMulticastGroupsResponse'
{ multicastGroups =
Prelude.Nothing,
nextToken = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | Information about the transit gateway multicast group.
searchTransitGatewayMulticastGroupsResponse_multicastGroups :: Lens.Lens' SearchTransitGatewayMulticastGroupsResponse (Prelude.Maybe [TransitGatewayMulticastGroup])
searchTransitGatewayMulticastGroupsResponse_multicastGroups = Lens.lens (\SearchTransitGatewayMulticastGroupsResponse' {multicastGroups} -> multicastGroups) (\s@SearchTransitGatewayMulticastGroupsResponse' {} a -> s {multicastGroups = a} :: SearchTransitGatewayMulticastGroupsResponse) Prelude.. Lens.mapping Lens.coerced
-- | The token to use to retrieve the next page of results. This value is
-- @null@ when there are no more results to return.
searchTransitGatewayMulticastGroupsResponse_nextToken :: Lens.Lens' SearchTransitGatewayMulticastGroupsResponse (Prelude.Maybe Prelude.Text)
searchTransitGatewayMulticastGroupsResponse_nextToken = Lens.lens (\SearchTransitGatewayMulticastGroupsResponse' {nextToken} -> nextToken) (\s@SearchTransitGatewayMulticastGroupsResponse' {} a -> s {nextToken = a} :: SearchTransitGatewayMulticastGroupsResponse)
-- | The response's http status code.
searchTransitGatewayMulticastGroupsResponse_httpStatus :: Lens.Lens' SearchTransitGatewayMulticastGroupsResponse Prelude.Int
searchTransitGatewayMulticastGroupsResponse_httpStatus = Lens.lens (\SearchTransitGatewayMulticastGroupsResponse' {httpStatus} -> httpStatus) (\s@SearchTransitGatewayMulticastGroupsResponse' {} a -> s {httpStatus = a} :: SearchTransitGatewayMulticastGroupsResponse)
instance
Prelude.NFData
SearchTransitGatewayMulticastGroupsResponse
where
rnf SearchTransitGatewayMulticastGroupsResponse' {..} =
Prelude.rnf multicastGroups
`Prelude.seq` Prelude.rnf nextToken
`Prelude.seq` Prelude.rnf httpStatus