Class: Aws::Route53::Types::AssociateVPCWithHostedZoneRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::AssociateVPCWithHostedZoneRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53/types.rb
Overview
A complex type that contains information about the request to associate a VPC with a private hosted zone.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ String
Optional: A comment about the association request.
-
#hosted_zone_id ⇒ String
The ID of the private hosted zone that you want to associate an Amazon VPC with.
-
#vpc ⇒ Types::VPC
A complex type that contains information about the VPC that you want to associate with a private hosted zone.
Instance Attribute Details
#comment ⇒ String
Optional: A comment about the association request.
551 552 553 554 555 556 557 |
# File 'lib/aws-sdk-route53/types.rb', line 551 class AssociateVPCWithHostedZoneRequest < Struct.new( :hosted_zone_id, :vpc, :comment) SENSITIVE = [] include Aws::Structure end |
#hosted_zone_id ⇒ String
The ID of the private hosted zone that you want to associate an Amazon VPC with.
Note that you can’t associate a VPC with a hosted zone that doesn’t have an existing VPC association.
551 552 553 554 555 556 557 |
# File 'lib/aws-sdk-route53/types.rb', line 551 class AssociateVPCWithHostedZoneRequest < Struct.new( :hosted_zone_id, :vpc, :comment) SENSITIVE = [] include Aws::Structure end |
#vpc ⇒ Types::VPC
A complex type that contains information about the VPC that you want to associate with a private hosted zone.
551 552 553 554 555 556 557 |
# File 'lib/aws-sdk-route53/types.rb', line 551 class AssociateVPCWithHostedZoneRequest < Struct.new( :hosted_zone_id, :vpc, :comment) SENSITIVE = [] include Aws::Structure end |