Disassociate Resolver Rule
| route53resolver_disassociate_resolver_rule | R Documentation | 
Removes the association between a specified Resolver rule and a specified VPC¶
Description¶
Removes the association between a specified Resolver rule and a specified VPC.
If you disassociate a Resolver rule from a VPC, Resolver stops forwarding DNS queries for the domain name that you specified in the Resolver rule.
Usage¶
route53resolver_disassociate_resolver_rule(VPCId, ResolverRuleId)
Arguments¶
| VPCId | [required] The ID of the VPC that you want to disassociate the Resolver rule from. | 
| ResolverRuleId | [required] The ID of the Resolver rule that you want to disassociate from the specified VPC. | 
Value¶
A list with the following syntax:
list(
  ResolverRuleAssociation = list(
    Id = "string",
    ResolverRuleId = "string",
    Name = "string",
    VPCId = "string",
    Status = "CREATING"|"COMPLETE"|"DELETING"|"FAILED"|"OVERRIDDEN",
    StatusMessage = "string"
  )
)
Request syntax¶
svc$disassociate_resolver_rule(
  VPCId = "string",
  ResolverRuleId = "string"
)