[][src]Struct rusoto_ecs::Attachment

pub struct Attachment {
    pub details: Option<Vec<KeyValuePair>>,
    pub id: Option<String>,
    pub status: Option<String>,
    pub type_: Option<String>,
}

An object representing a container instance or task attachment.

Fields

details: Option<Vec<KeyValuePair>>

Details of the attachment. For elastic network interfaces, this includes the network interface ID, the MAC address, the subnet ID, and the private IPv4 address.

id: Option<String>

The unique identifier for the attachment.

status: Option<String>

The status of the attachment. Valid values are PRECREATED, CREATED, ATTACHING, ATTACHED, DETACHING, DETACHED, and DELETED.

type_: Option<String>

The type of the attachment, such as ElasticNetworkInterface.

Trait Implementations

impl Clone for Attachment[src]

impl Debug for Attachment[src]

impl Default for Attachment[src]

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

impl PartialEq<Attachment> for Attachment[src]

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