Struct aws_sdk_sagemaker::model::ActionSummary [−][src]
#[non_exhaustive]pub struct ActionSummary {
pub action_arn: Option<String>,
pub action_name: Option<String>,
pub source: Option<ActionSource>,
pub action_type: Option<String>,
pub status: Option<ActionStatus>,
pub creation_time: Option<Instant>,
pub last_modified_time: Option<Instant>,
}
Expand description
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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.action_arn: Option<String>
The Amazon Resource Name (ARN) of the action.
action_name: Option<String>
The name of the action.
source: Option<ActionSource>
The source of the action.
action_type: Option<String>
The type of the action.
status: Option<ActionStatus>
The status of the action.
creation_time: Option<Instant>
When the action was created.
last_modified_time: Option<Instant>
When the action was last modified.
Implementations
Creates a new builder-style object to manufacture ActionSummary
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ActionSummary
impl Send for ActionSummary
impl Sync for ActionSummary
impl Unpin for ActionSummary
impl UnwindSafe for ActionSummary
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more