Skip to content

Get Resolver Rule Association

route53resolver_get_resolver_rule_association R Documentation

Gets information about an association between a specified Resolver rule and a VPC

Description

Gets information about an association between a specified Resolver rule and a VPC. You associate a Resolver rule and a VPC using associate_resolver_rule.

Usage

route53resolver_get_resolver_rule_association(ResolverRuleAssociationId)

Arguments

ResolverRuleAssociationId

[required] The ID of the Resolver rule association that you want to get information about.

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$get_resolver_rule_association(
  ResolverRuleAssociationId = "string"
)