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¶
route53resolver_list_resolver_rule_associations(MaxResults, NextToken,
Filters)
Arguments¶
MaxResults |
The maximum number of rule associations that you want to return
in the response to a |
NextToken |
For the first If you have more than |
Filters |
An 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
|
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"
)
)
)
Request syntax¶
svc$list_resolver_rule_associations(
MaxResults = 123,
NextToken = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
)
)