Struct rusoto_route53::DisassociateVPCFromHostedZoneRequest[][src]

pub struct DisassociateVPCFromHostedZoneRequest {
    pub comment: Option<String>,
    pub hosted_zone_id: String,
    pub vpc: VPC,
}

A complex type that contains information about the VPC that you want to disassociate from a specified private hosted zone.

Fields

Optional: A comment about the disassociation request.

The ID of the private hosted zone that you want to disassociate a VPC from.

A complex type that contains information about the VPC that you're disassociating from the specified hosted zone.

Trait Implementations

impl Default for DisassociateVPCFromHostedZoneRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DisassociateVPCFromHostedZoneRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DisassociateVPCFromHostedZoneRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DisassociateVPCFromHostedZoneRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations