amazonka-route53resolver-2.0: Amazon Route 53 Resolver SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Route53Resolver.ListFirewallDomainLists

Description

Retrieves the firewall domain lists that you have defined. For each firewall domain list, you can retrieve the domains that are defined for a list by calling ListFirewallDomains.

A single call to this list operation might return only a partial list of the domain lists. For information, see MaxResults.

This operation returns paginated results.

Synopsis

Creating a Request

data ListFirewallDomainLists Source #

See: newListFirewallDomainLists smart constructor.

Constructors

ListFirewallDomainLists' 

Fields

  • maxResults :: Maybe Natural

    The maximum number of objects that you want Resolver to return for this request. If more objects are available, in the response, Resolver provides a NextToken value that you can use in a subsequent call to get the next batch of objects.

    If you don't specify a value for MaxResults, Resolver returns up to 100 objects.

  • nextToken :: Maybe Text

    For the first call to this list request, omit this value.

    When you request a list of objects, Resolver returns at most the number of objects specified in MaxResults. If more objects are available for retrieval, Resolver returns a NextToken value in the response. To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.

Instances

Instances details
ToJSON ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

ToHeaders ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

ToPath ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

ToQuery ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

AWSPager ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

AWSRequest ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

Generic ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

Associated Types

type Rep ListFirewallDomainLists :: Type -> Type #

Read ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

Show ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

NFData ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

Methods

rnf :: ListFirewallDomainLists -> () #

Eq ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

Hashable ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

type AWSResponse ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

type Rep ListFirewallDomainLists Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

type Rep ListFirewallDomainLists = D1 ('MetaData "ListFirewallDomainLists" "Amazonka.Route53Resolver.ListFirewallDomainLists" "amazonka-route53resolver-2.0-GFukx1WIgCPEXMh1BiYlp6" 'False) (C1 ('MetaCons "ListFirewallDomainLists'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListFirewallDomainLists :: ListFirewallDomainLists Source #

Create a value of ListFirewallDomainLists with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:maxResults:ListFirewallDomainLists', listFirewallDomainLists_maxResults - The maximum number of objects that you want Resolver to return for this request. If more objects are available, in the response, Resolver provides a NextToken value that you can use in a subsequent call to get the next batch of objects.

If you don't specify a value for MaxResults, Resolver returns up to 100 objects.

ListFirewallDomainLists, listFirewallDomainLists_nextToken - For the first call to this list request, omit this value.

When you request a list of objects, Resolver returns at most the number of objects specified in MaxResults. If more objects are available for retrieval, Resolver returns a NextToken value in the response. To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.

Request Lenses

listFirewallDomainLists_maxResults :: Lens' ListFirewallDomainLists (Maybe Natural) Source #

The maximum number of objects that you want Resolver to return for this request. If more objects are available, in the response, Resolver provides a NextToken value that you can use in a subsequent call to get the next batch of objects.

If you don't specify a value for MaxResults, Resolver returns up to 100 objects.

listFirewallDomainLists_nextToken :: Lens' ListFirewallDomainLists (Maybe Text) Source #

For the first call to this list request, omit this value.

When you request a list of objects, Resolver returns at most the number of objects specified in MaxResults. If more objects are available for retrieval, Resolver returns a NextToken value in the response. To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.

Destructuring the Response

data ListFirewallDomainListsResponse Source #

See: newListFirewallDomainListsResponse smart constructor.

Constructors

ListFirewallDomainListsResponse' 

Fields

  • firewallDomainLists :: Maybe [FirewallDomainListMetadata]

    A list of the domain lists that you have defined.

    This might be a partial list of the domain lists that you've defined. For information, see MaxResults.

  • nextToken :: Maybe Text

    If objects are still available for retrieval, Resolver returns this token in the response. To retrieve the next batch of objects, provide this token in your next request.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListFirewallDomainListsResponse Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

Associated Types

type Rep ListFirewallDomainListsResponse :: Type -> Type #

Read ListFirewallDomainListsResponse Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

Show ListFirewallDomainListsResponse Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

NFData ListFirewallDomainListsResponse Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

Eq ListFirewallDomainListsResponse Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

type Rep ListFirewallDomainListsResponse Source # 
Instance details

Defined in Amazonka.Route53Resolver.ListFirewallDomainLists

type Rep ListFirewallDomainListsResponse = D1 ('MetaData "ListFirewallDomainListsResponse" "Amazonka.Route53Resolver.ListFirewallDomainLists" "amazonka-route53resolver-2.0-GFukx1WIgCPEXMh1BiYlp6" 'False) (C1 ('MetaCons "ListFirewallDomainListsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "firewallDomainLists") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FirewallDomainListMetadata])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListFirewallDomainListsResponse Source #

Create a value of ListFirewallDomainListsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:firewallDomainLists:ListFirewallDomainListsResponse', listFirewallDomainListsResponse_firewallDomainLists - A list of the domain lists that you have defined.

This might be a partial list of the domain lists that you've defined. For information, see MaxResults.

ListFirewallDomainLists, listFirewallDomainListsResponse_nextToken - If objects are still available for retrieval, Resolver returns this token in the response. To retrieve the next batch of objects, provide this token in your next request.

$sel:httpStatus:ListFirewallDomainListsResponse', listFirewallDomainListsResponse_httpStatus - The response's http status code.

Response Lenses

listFirewallDomainListsResponse_firewallDomainLists :: Lens' ListFirewallDomainListsResponse (Maybe [FirewallDomainListMetadata]) Source #

A list of the domain lists that you have defined.

This might be a partial list of the domain lists that you've defined. For information, see MaxResults.

listFirewallDomainListsResponse_nextToken :: Lens' ListFirewallDomainListsResponse (Maybe Text) Source #

If objects are still available for retrieval, Resolver returns this token in the response. To retrieve the next batch of objects, provide this token in your next request.