[][src]Struct rusoto_es::VPCDerivedInfo

pub struct VPCDerivedInfo {
    pub availability_zones: Option<Vec<String>>,
    pub security_group_ids: Option<Vec<String>>,
    pub subnet_ids: Option<Vec<String>>,
    pub vpc_id: Option<String>,
}

Options to specify the subnets and security groups for VPC endpoint. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

Fields

availability_zones: Option<Vec<String>>

The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

security_group_ids: Option<Vec<String>>

Specifies the security groups for VPC endpoint.

subnet_ids: Option<Vec<String>>

Specifies the subnets for VPC endpoint.

vpc_id: Option<String>

The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

Trait Implementations

impl Clone for VPCDerivedInfo[src]

impl Debug for VPCDerivedInfo[src]

impl Default for VPCDerivedInfo[src]

impl<'de> Deserialize<'de> for VPCDerivedInfo[src]

impl PartialEq<VPCDerivedInfo> for VPCDerivedInfo[src]

impl StructuralPartialEq for VPCDerivedInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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> 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.