[][src]Struct rusoto_route53::AssociateVPCWithHostedZoneRequest

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

A complex type that contains information about the request to associate a VPC with a private hosted zone.

Fields

comment: Option<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.

Note that you can't associate a VPC with a hosted zone that doesn't have an existing VPC association.

vpc: VPC

A complex type that contains information about the VPC that you want to associate with a private hosted zone.

Trait Implementations

impl Clone for AssociateVPCWithHostedZoneRequest[src]

impl Default for AssociateVPCWithHostedZoneRequest[src]

impl PartialEq<AssociateVPCWithHostedZoneRequest> for AssociateVPCWithHostedZoneRequest[src]

impl Debug for AssociateVPCWithHostedZoneRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self