Get Resolver Rule
| route53resolver_get_resolver_rule | R Documentation |
Gets information about a specified Resolver rule, such as the domain name that the rule forwards DNS queries for and the ID of the outbound Resolver endpoint that the rule is associated with¶
Description¶
Gets information about a specified Resolver rule, such as the domain name that the rule forwards DNS queries for and the ID of the outbound Resolver endpoint that the rule is associated with.
Usage¶
Arguments¶
ResolverRuleId[required] The ID of the Resolver rule that you want to get information about.
Value¶
A list with the following syntax:
list(
ResolverRule = list(
Id = "string",
CreatorRequestId = "string",
Arn = "string",
DomainName = "string",
Status = "COMPLETE"|"DELETING"|"UPDATING"|"FAILED",
StatusMessage = "string",
RuleType = "FORWARD"|"SYSTEM"|"RECURSIVE",
Name = "string",
TargetIps = list(
list(
Ip = "string",
Port = 123,
Ipv6 = "string",
Protocol = "DoH"|"Do53"|"DoH-FIPS"
)
),
ResolverEndpointId = "string",
OwnerId = "string",
ShareStatus = "NOT_SHARED"|"SHARED_WITH_ME"|"SHARED_BY_ME",
CreationTime = "string",
ModificationTime = "string"
)
)