Class: Aws::Route53::Types::CreateVPCAssociationAuthorizationRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb

Overview

A complex type that contains information about the request to authorize associating a VPC with your private hosted zone. Authorization is only required when a private hosted zone and a VPC were created by using different accounts.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hosted_zone_idString

The ID of the private hosted zone that you want to authorize associating a VPC with.

Returns:

  • (String)


1772
1773
1774
1775
1776
1777
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 1772

class CreateVPCAssociationAuthorizationRequest < Struct.new(
  :hosted_zone_id,
  :vpc)
  SENSITIVE = []
  include Aws::Structure
end

#vpcTypes::VPC

A complex type that contains the VPC ID and region for the VPC that you want to authorize associating with your hosted zone.

Returns:



1772
1773
1774
1775
1776
1777
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 1772

class CreateVPCAssociationAuthorizationRequest < Struct.new(
  :hosted_zone_id,
  :vpc)
  SENSITIVE = []
  include Aws::Structure
end