Class: Aws::Route53Resolver::Types::ListResolverConfigsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::ListResolverConfigsResponse
- Defined in:
- gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If a response includes the last of the Resolver configurations that are associated with the current Amazon Web Services account,
NextToken
doesn't appear in the response. -
#resolver_configs ⇒ Array<Types::ResolverConfig>
An array that contains one
ResolverConfigs
element for each Resolver configuration that is associated with the current Amazon Web Services account.
Instance Attribute Details
#next_token ⇒ String
If a response includes the last of the Resolver configurations that
are associated with the current Amazon Web Services account,
NextToken
doesn't appear in the response.
If a response doesn't include the last of the configurations, you
can get more configurations by submitting another
ListResolverConfigs
request. Get the value of NextToken
that
Amazon Route 53 returned in the previous response and include it in
NextToken
in the next request.
2679 2680 2681 2682 2683 2684 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2679 class ListResolverConfigsResponse < Struct.new( :next_token, :resolver_configs) SENSITIVE = [] include Aws::Structure end |
#resolver_configs ⇒ Array<Types::ResolverConfig>
An array that contains one ResolverConfigs
element for each
Resolver configuration that is associated with the current Amazon
Web Services account.
2679 2680 2681 2682 2683 2684 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2679 class ListResolverConfigsResponse < Struct.new( :next_token, :resolver_configs) SENSITIVE = [] include Aws::Structure end |