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).
2834 2835 2836 2837 2838 2839 2840 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2834 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.
2834 2835 2836 2837 2838 2839 2840 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2834 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.
2834 2835 2836 2837 2838 2839 2840 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 2834 class ListResolverEndpointIpAddressesResponse < Struct.new( :next_token, :max_results, :ip_addresses) SENSITIVE = [] include Aws::Structure end |