[][src]Struct rusoto_rds::CustomAvailabilityZone

pub struct CustomAvailabilityZone {
    pub custom_availability_zone_id: Option<String>,
    pub custom_availability_zone_name: Option<String>,
    pub custom_availability_zone_status: Option<String>,
    pub vpn_details: Option<VpnDetails>,
}

A custom Availability Zone (AZ) is an on-premises AZ that is integrated with a VMware vSphere cluster.

For more information about RDS on VMware, see the RDS on VMware User Guide.

Fields

custom_availability_zone_id: Option<String>

The identifier of the custom AZ.

Amazon RDS generates a unique identifier when a custom AZ is created.

custom_availability_zone_name: Option<String>

The name of the custom AZ.

custom_availability_zone_status: Option<String>

The status of the custom AZ.

vpn_details: Option<VpnDetails>

Information about the virtual private network (VPN) between the VMware vSphere cluster and the AWS website.

Trait Implementations

impl Clone for CustomAvailabilityZone[src]

impl Debug for CustomAvailabilityZone[src]

impl Default for CustomAvailabilityZone[src]

impl PartialEq<CustomAvailabilityZone> for CustomAvailabilityZone[src]

impl StructuralPartialEq for CustomAvailabilityZone[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.