Class: Aws::Route53::Types::ListHostedZonesByVPCRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::ListHostedZonesByVPCRequest
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
Lists all the private hosted zones that a specified VPC is associated with, regardless of which Amazon Web Services account created the hosted zones.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_items ⇒ Integer
(Optional) The maximum number of hosted zones that you want Amazon Route 53 to return.
-
#next_token ⇒ String
If the previous response included a
NextTokenelement, the specified VPC is associated with more hosted zones. -
#vpc_id ⇒ String
The ID of the Amazon VPC that you want to list hosted zones for.
-
#vpc_region ⇒ String
For the Amazon VPC that you specified for
VPCId, the Amazon Web Services Region that you created the VPC in.
Instance Attribute Details
#max_items ⇒ Integer
(Optional) The maximum number of hosted zones that you want Amazon
Route 53 to return. If the specified VPC is associated with more
than MaxItems hosted zones, the response includes a NextToken
element. NextToken contains an encrypted token that identifies the
first hosted zone that Route 53 will return if you submit another
request.
5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 5022 class ListHostedZonesByVPCRequest < Struct.new( :vpc_id, :vpc_region, :max_items, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the previous response included a NextToken element, the
specified VPC is associated with more hosted zones. To get more
hosted zones, submit another ListHostedZonesByVPC request.
For the value of NextToken, specify the value of NextToken from
the previous response.
If the previous response didn't include a NextToken element,
there are no more hosted zones to get.
5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 5022 class ListHostedZonesByVPCRequest < Struct.new( :vpc_id, :vpc_region, :max_items, :next_token) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The ID of the Amazon VPC that you want to list hosted zones for.
5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 5022 class ListHostedZonesByVPCRequest < Struct.new( :vpc_id, :vpc_region, :max_items, :next_token) SENSITIVE = [] include Aws::Structure end |
#vpc_region ⇒ String
For the Amazon VPC that you specified for VPCId, the Amazon Web
Services Region that you created the VPC in.
5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 5022 class ListHostedZonesByVPCRequest < Struct.new( :vpc_id, :vpc_region, :max_items, :next_token) SENSITIVE = [] include Aws::Structure end |