Class: Aws::Route53::Types::DisassociateVPCFromHostedZoneRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Route53::Types::DisassociateVPCFromHostedZoneRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-route53/types.rb
 
Overview
A complex type that contains information about the VPC that you want to disassociate from a specified private hosted zone.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #comment  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional: A comment about the disassociation request.
 - 
  
    
      #hosted_zone_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the private hosted zone that you want to disassociate a VPC from.
 - 
  
    
      #vpc  ⇒ Types::VPC 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A complex type that contains information about the VPC that you’re disassociating from the specified hosted zone.
 
Instance Attribute Details
#comment ⇒ String
Optional: A comment about the disassociation request.
      2273 2274 2275 2276 2277 2278 2279  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 2273 class DisassociateVPCFromHostedZoneRequest < 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 disassociate a VPC from.
      2273 2274 2275 2276 2277 2278 2279  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 2273 class DisassociateVPCFromHostedZoneRequest < 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’re disassociating from the specified hosted zone.
      2273 2274 2275 2276 2277 2278 2279  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 2273 class DisassociateVPCFromHostedZoneRequest < Struct.new( :hosted_zone_id, :vpc, :comment) SENSITIVE = [] include Aws::Structure end  |