[][src]Struct rusoto_ssm::AttachmentContent

pub struct AttachmentContent {
    pub hash: Option<String>,
    pub hash_type: Option<String>,
    pub name: Option<String>,
    pub size: Option<i64>,
    pub url: Option<String>,
}

A structure that includes attributes that describe a document attachment.

Fields

hash: Option<String>

The cryptographic hash value of the document content.

hash_type: Option<String>

The hash algorithm used to calculate the hash value.

name: Option<String>

The name of an attachment.

size: Option<i64>

The size of an attachment in bytes.

url: Option<String>

The URL location of the attachment content.

Trait Implementations

impl Clone for AttachmentContent[src]

impl Debug for AttachmentContent[src]

impl Default for AttachmentContent[src]

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

impl PartialEq<AttachmentContent> for AttachmentContent[src]

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