[][src]Struct rusoto_greengrass::CreateFunctionDefinitionResponse

pub struct CreateFunctionDefinitionResponse {
    pub arn: Option<String>,
    pub creation_timestamp: Option<String>,
    pub id: Option<String>,
    pub last_updated_timestamp: Option<String>,
    pub latest_version: Option<String>,
    pub latest_version_arn: Option<String>,
    pub name: Option<String>,
}

Fields

arn: Option<String>

The ARN of the definition.

creation_timestamp: Option<String>

The time, in milliseconds since the epoch, when the definition was created.

id: Option<String>

The ID of the definition.

last_updated_timestamp: Option<String>

The time, in milliseconds since the epoch, when the definition was last updated.

latest_version: Option<String>

The ID of the latest version associated with the definition.

latest_version_arn: Option<String>

The ARN of the latest version associated with the definition.

name: Option<String>

The name of the definition.

Trait Implementations

impl Clone for CreateFunctionDefinitionResponse[src]

impl Debug for CreateFunctionDefinitionResponse[src]

impl Default for CreateFunctionDefinitionResponse[src]

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

impl PartialEq<CreateFunctionDefinitionResponse> for CreateFunctionDefinitionResponse[src]

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