[][src]Struct rusoto_mediaconnect::VpcInterfaceRequest

pub struct VpcInterfaceRequest {
    pub name: String,
    pub role_arn: String,
    pub security_group_ids: Vec<String>,
    pub subnet_id: String,
}

Desired VPC Interface for a Flow

Fields

name: String

The name of the VPC Interface. This value must be unique within the current flow.

role_arn: String

Role Arn MediaConnect can assumes to create ENIs in customer's account

security_group_ids: Vec<String>

Security Group IDs to be used on ENI.

subnet_id: String

Subnet must be in the AZ of the Flow

Trait Implementations

impl Clone for VpcInterfaceRequest[src]

impl Debug for VpcInterfaceRequest[src]

impl Default for VpcInterfaceRequest[src]

impl PartialEq<VpcInterfaceRequest> for VpcInterfaceRequest[src]

impl Serialize for VpcInterfaceRequest[src]

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