Class: Aws::Route53Resolver::Types::ListResolverEndpointIpAddressesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::ListResolverEndpointIpAddressesResponse
- Defined in:
- gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip_addresses ⇒ Array<Types::IpAddressResponse>
Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).
-
#max_results ⇒ Integer
The value that you specified for
MaxResults
in the request. -
#next_token ⇒ String
If the specified endpoint has more than
MaxResults
IP addresses, you can submit anotherListResolverEndpointIpAddresses
request to get the next group of IP addresses.
Instance Attribute Details
#ip_addresses ⇒ Array<Types::IpAddressResponse>
Information about the IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints).
3003 3004 3005 3006 3007 3008 3009 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 3003 class ListResolverEndpointIpAddressesResponse < Struct.new( :next_token, :max_results, :ip_addresses) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The value that you specified for MaxResults
in the request.
3003 3004 3005 3006 3007 3008 3009 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 3003 class ListResolverEndpointIpAddressesResponse < Struct.new( :next_token, :max_results, :ip_addresses) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the specified endpoint has more than MaxResults
IP addresses,
you can submit another ListResolverEndpointIpAddresses
request to
get the next group of IP addresses. In the next request, specify the
value of NextToken
from the previous response.
3003 3004 3005 3006 3007 3008 3009 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 3003 class ListResolverEndpointIpAddressesResponse < Struct.new( :next_token, :max_results, :ip_addresses) SENSITIVE = [] include Aws::Structure end |