Class: Aws::Route53Resolver::Types::TargetAddress
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::TargetAddress
- Defined in:
- gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb
Overview
Note:
When making an API call, you may pass TargetAddress data as a hash:
{
ip: "Ip", # required
port: 1,
}
In a CreateResolverRule request, an array of the IPs that you want to forward DNS queries to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip ⇒ String
One IP address that you want to forward DNS queries to.
-
#port ⇒ Integer
The port at
Ip
that you want to forward DNS queries to.
Instance Attribute Details
#ip ⇒ String
One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.
3075 3076 3077 3078 3079 3080 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 3075 class TargetAddress < Struct.new( :ip, :port) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port at Ip
that you want to forward DNS queries to.
3075 3076 3077 3078 3079 3080 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 3075 class TargetAddress < Struct.new( :ip, :port) SENSITIVE = [] include Aws::Structure end |