[][src]Struct rusoto_sagemaker::ActionSummary

pub struct ActionSummary {
    pub action_arn: Option<String>,
    pub action_name: Option<String>,
    pub action_type: Option<String>,
    pub creation_time: Option<f64>,
    pub last_modified_time: Option<f64>,
    pub source: Option<ActionSource>,
    pub status: Option<String>,
}

Lists the properties of an action. An action represents an action or activity. Some examples are a workflow step and a model deployment. Generally, an action involves at least one input artifact or output artifact.

Fields

action_arn: Option<String>

The Amazon Resource Name (ARN) of the action.

action_name: Option<String>

The name of the action.

action_type: Option<String>

The type of the action.

creation_time: Option<f64>

When the action was created.

last_modified_time: Option<f64>

When the action was last modified.

source: Option<ActionSource>

The source of the action.

status: Option<String>

The status of the action.

Trait Implementations

impl Clone for ActionSummary[src]

impl Debug for ActionSummary[src]

impl Default for ActionSummary[src]

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

impl PartialEq<ActionSummary> for ActionSummary[src]

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