List Resolver Rule Associations
| route53resolver_list_resolver_rule_associations | R Documentation |
Lists the associations that were created between Resolver rules and VPCs using the current Amazon Web Services account¶
Description¶
Lists the associations that were created between Resolver rules and VPCs using the current Amazon Web Services account.
Usage¶
Arguments¶
MaxResultsThe maximum number of rule associations that you want to return in the response to a
list_resolver_rule_associationsrequest. If you don't specify a value forMaxResults, Resolver returns up to 100 rule associations.NextTokenFor the first
ListResolverRuleAssociationrequest, omit this value.If you have more than
MaxResultsrule associations, you can submit anotherListResolverRuleAssociationrequest to get the next group of rule associations. In the next request, specify the value ofNextTokenfrom the previous response.FiltersAn optional specification to return a subset of Resolver rules, such as Resolver rules that are associated with the same VPC ID.
If you submit a second or subsequent
list_resolver_rule_associationsrequest and specify theNextTokenparameter, you must use the same values forFilters, if any, as in the previous request.
Value¶
A list with the following syntax:
list(
NextToken = "string",
MaxResults = 123,
ResolverRuleAssociations = list(
list(
Id = "string",
ResolverRuleId = "string",
Name = "string",
VPCId = "string",
Status = "CREATING"|"COMPLETE"|"DELETING"|"FAILED"|"OVERRIDDEN",
StatusMessage = "string"
)
)
)