[ aws . route53resolver ]
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.
See also: AWS API Documentation
See ‘aws help’ for descriptions of global parameters.
get-resolver-rule
--resolver-rule-id <value>
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
--resolver-rule-id
(string)
The ID of the Resolver rule that you want to get information about.
--cli-input-json
| --cli-input-yaml
(string)
Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton
. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml
.
--generate-cli-skeleton
(string)
Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input
, prints a sample input JSON that can be used as an argument for --cli-input-json
. Similarly, if provided yaml-input
it will print a sample input YAML that can be used with --cli-input-yaml
. If provided with the value output
, it validates the command inputs and returns a sample output JSON for that command.
See ‘aws help’ for descriptions of global parameters.
To get information about a Resolver rule
The following get-resolver-rule
example displays details about the 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.
aws route53resolver get-resolver-rule \
--resolver-rule-id rslvr-rr-42b60677c0example
Output:
{
"ResolverRule": {
"Id": "rslvr-rr-42b60677c0example",
"CreatorRequestId": "2020-01-01-18:47",
"Arn": "arn:aws:route53resolver:us-west-2:111122223333:resolver-rule/rslvr-rr-42b60677c0example",
"DomainName": "example.com.",
"Status": "COMPLETE",
"StatusMessage": "[Trace id: 1-5dc4b177-ff1d9d001a0f80005example] Successfully created Resolver Rule.",
"RuleType": "FORWARD",
"Name": "my-rule",
"TargetIps": [
{
"Ip": "192.0.2.45",
"Port": 53
}
],
"ResolverEndpointId": "rslvr-out-d5e5920e37example",
"OwnerId": "111122223333",
"ShareStatus": "NOT_SHARED"
}
}
For more information, see Values That You Specify When You Create or Edit Rules in the Amazon Route 53 Developer Guide.
ResolverRule -> (structure)
Information about the Resolver rule that you specified in a
GetResolverRule
request.Id -> (string)
The ID that Resolver assigned to the Resolver rule when you created it.
CreatorRequestId -> (string)
A unique string that you specified when you created the Resolver rule.
CreatorRequestId
identifies the request and allows failed requests to be retried without the risk of running the operation twice.Arn -> (string)
The ARN (Amazon Resource Name) for the Resolver rule specified by
Id
.DomainName -> (string)
DNS queries for this domain name are forwarded to the IP addresses that are specified in
TargetIps
. If a query matches multiple Resolver rules (example.com and www.example.com), the query is routed using the Resolver rule that contains the most specific domain name (www.example.com).Status -> (string)
A code that specifies the current status of the Resolver rule.
StatusMessage -> (string)
A detailed description of the status of a Resolver rule.
RuleType -> (string)
When you want to forward DNS queries for specified domain name to resolvers on your network, specify
FORWARD
.When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for a subdomain of that domain, specify
SYSTEM
.For example, to forward DNS queries for example.com to resolvers on your network, you create a rule and specify
FORWARD
forRuleType
. To then have Resolver process queries for apex.example.com, you create a rule and specifySYSTEM
forRuleType
.Currently, only Resolver can create rules that have a value of
RECURSIVE
forRuleType
.Name -> (string)
The name for the Resolver rule, which you specified when you created the Resolver rule.
TargetIps -> (list)
An array that contains the IP addresses and ports that an outbound endpoint forwards DNS queries to. Typically, these are the IP addresses of DNS resolvers on your network. Specify IPv4 addresses. IPv6 is not supported.
(structure)
In a CreateResolverRule request, an array of the IPs that you want to forward DNS queries to.
Ip -> (string)
One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.
Port -> (integer)
The port at
Ip
that you want to forward DNS queries to.ResolverEndpointId -> (string)
The ID of the endpoint that the rule is associated with.
OwnerId -> (string)
When a rule is shared with another Amazon Web Services account, the account ID of the account that the rule is shared with.
ShareStatus -> (string)
Whether the rule is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account.
CreationTime -> (string)
The date and time that the Resolver rule was created, in Unix time format and Coordinated Universal Time (UTC).
ModificationTime -> (string)
The date and time that the Resolver rule was last updated, in Unix time format and Coordinated Universal Time (UTC).