Class: Aws::Route53Resolver::Types::ResolverRuleConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::ResolverRuleConfig
- Defined in:
- gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb
Overview
When making an API call, you may pass ResolverRuleConfig data as a hash:
{
name: "Name",
target_ips: [
{
ip: "Ip", # required
port: 1,
},
],
resolver_endpoint_id: "ResourceId",
}
In an UpdateResolverRule request, information about the changes that you want to make.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The new name for the Resolver rule.
-
#resolver_endpoint_id ⇒ String
The ID of the new outbound Resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify in
TargetIps
. -
#target_ips ⇒ Array<Types::TargetAddress>
For DNS queries that originate in your VPC, the new IP addresses that you want to route outbound DNS queries to.
Instance Attribute Details
#name ⇒ String
The new name for the Resolver rule. The name that you specify appears in the Resolver dashboard in the Route 53 console.
4677 4678 4679 4680 4681 4682 4683 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 4677 class ResolverRuleConfig < Struct.new( :name, :target_ips, :resolver_endpoint_id) SENSITIVE = [] include Aws::Structure end |
#resolver_endpoint_id ⇒ String
The ID of the new outbound Resolver endpoint that you want to use to
route DNS queries to the IP addresses that you specify in
TargetIps
.
4677 4678 4679 4680 4681 4682 4683 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 4677 class ResolverRuleConfig < Struct.new( :name, :target_ips, :resolver_endpoint_id) SENSITIVE = [] include Aws::Structure end |
#target_ips ⇒ Array<Types::TargetAddress>
For DNS queries that originate in your VPC, the new IP addresses that you want to route outbound DNS queries to.
4677 4678 4679 4680 4681 4682 4683 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 4677 class ResolverRuleConfig < Struct.new( :name, :target_ips, :resolver_endpoint_id) SENSITIVE = [] include Aws::Structure end |