[][src]Struct rusoto_robomaker::VPCConfig

pub struct VPCConfig {
    pub assign_public_ip: Option<bool>,
    pub security_groups: Option<Vec<String>>,
    pub subnets: Vec<String>,
}

If your simulation job accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and two subnet IDs.

Fields

assign_public_ip: Option<bool>

A boolean indicating whether to assign a public IP address.

security_groups: Option<Vec<String>>

A list of one or more security groups IDs in your VPC.

subnets: Vec<String>

A list of one or more subnet IDs in your VPC.

Trait Implementations

impl Clone for VPCConfig[src]

impl Debug for VPCConfig[src]

impl Default for VPCConfig[src]

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

impl PartialEq<VPCConfig> for VPCConfig[src]

impl Serialize for VPCConfig[src]

impl StructuralPartialEq for VPCConfig[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.