Class: Aws::Route53Resolver::Types::ListResolverRuleAssociationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::ListResolverRuleAssociationsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53resolver/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::Filter>
An optional specification to return a subset of Resolver rules, such as Resolver rules that are associated with the same VPC ID.
-
#max_results ⇒ Integer
The maximum number of rule associations that you want to return in the response to a ‘ListResolverRuleAssociations` request.
-
#next_token ⇒ String
For the first ‘ListResolverRuleAssociation` request, omit this value.
Instance Attribute Details
#filters ⇒ Array<Types::Filter>
An optional specification to return a subset of Resolver rules, such as Resolver rules that are associated with the same VPC ID.
<note markdown=“1”> If you submit a second or subsequent ‘ListResolverRuleAssociations` request and specify the `NextToken` parameter, you must use the same values for `Filters`, if any, as in the previous request.
</note>
3614 3615 3616 3617 3618 3619 3620 |
# File 'lib/aws-sdk-route53resolver/types.rb', line 3614 class ListResolverRuleAssociationsRequest < Struct.new( :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of rule associations that you want to return in the response to a ‘ListResolverRuleAssociations` request. If you don’t specify a value for ‘MaxResults`, Resolver returns up to 100 rule associations.
3614 3615 3616 3617 3618 3619 3620 |
# File 'lib/aws-sdk-route53resolver/types.rb', line 3614 class ListResolverRuleAssociationsRequest < Struct.new( :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
For the first ‘ListResolverRuleAssociation` request, omit this value.
If you have more than ‘MaxResults` rule associations, you can submit another `ListResolverRuleAssociation` request to get the next group of rule associations. In the next request, specify the value of `NextToken` from the previous response.
3614 3615 3616 3617 3618 3619 3620 |
# File 'lib/aws-sdk-route53resolver/types.rb', line 3614 class ListResolverRuleAssociationsRequest < Struct.new( :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |