Class: Aws::Route53Resolver::Types::IpAddressRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-route53resolver/types.rb

Overview

In a [CreateResolverEndpoint] request, the IP address that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints). ‘IpAddressRequest` also includes the ID of the subnet that contains the IP address.

[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_CreateResolverEndpoint.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ipString

The IPv4 address that you want to use for DNS queries.

Returns:

  • (String)


2419
2420
2421
2422
2423
2424
2425
# File 'lib/aws-sdk-route53resolver/types.rb', line 2419

class IpAddressRequest < Struct.new(
  :subnet_id,
  :ip,
  :ipv_6)
  SENSITIVE = []
  include Aws::Structure
end

#ipv_6String

The IPv6 address that you want to use for DNS queries.

Returns:

  • (String)


2419
2420
2421
2422
2423
2424
2425
# File 'lib/aws-sdk-route53resolver/types.rb', line 2419

class IpAddressRequest < Struct.new(
  :subnet_id,
  :ip,
  :ipv_6)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idString

The ID of the subnet that contains the IP address.

Returns:

  • (String)


2419
2420
2421
2422
2423
2424
2425
# File 'lib/aws-sdk-route53resolver/types.rb', line 2419

class IpAddressRequest < Struct.new(
  :subnet_id,
  :ip,
  :ipv_6)
  SENSITIVE = []
  include Aws::Structure
end