Struct aws_sdk_sagemaker::types::builders::ActionSummaryBuilder
source · #[non_exhaustive]pub struct ActionSummaryBuilder { /* private fields */ }
Expand description
A builder for ActionSummary
.
Implementations§
source§impl ActionSummaryBuilder
impl ActionSummaryBuilder
sourcepub fn action_arn(self, input: impl Into<String>) -> Self
pub fn action_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the action.
sourcepub fn set_action_arn(self, input: Option<String>) -> Self
pub fn set_action_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the action.
sourcepub fn action_name(self, input: impl Into<String>) -> Self
pub fn action_name(self, input: impl Into<String>) -> Self
The name of the action.
sourcepub fn set_action_name(self, input: Option<String>) -> Self
pub fn set_action_name(self, input: Option<String>) -> Self
The name of the action.
sourcepub fn source(self, input: ActionSource) -> Self
pub fn source(self, input: ActionSource) -> Self
The source of the action.
sourcepub fn set_source(self, input: Option<ActionSource>) -> Self
pub fn set_source(self, input: Option<ActionSource>) -> Self
The source of the action.
sourcepub fn action_type(self, input: impl Into<String>) -> Self
pub fn action_type(self, input: impl Into<String>) -> Self
The type of the action.
sourcepub fn set_action_type(self, input: Option<String>) -> Self
pub fn set_action_type(self, input: Option<String>) -> Self
The type of the action.
sourcepub fn status(self, input: ActionStatus) -> Self
pub fn status(self, input: ActionStatus) -> Self
The status of the action.
sourcepub fn set_status(self, input: Option<ActionStatus>) -> Self
pub fn set_status(self, input: Option<ActionStatus>) -> Self
The status of the action.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
When the action was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
When the action was created.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
When the action was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
When the action was last modified.
sourcepub fn build(self) -> ActionSummary
pub fn build(self) -> ActionSummary
Consumes the builder and constructs a ActionSummary
.
Trait Implementations§
source§impl Clone for ActionSummaryBuilder
impl Clone for ActionSummaryBuilder
source§fn clone(&self) -> ActionSummaryBuilder
fn clone(&self) -> ActionSummaryBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ActionSummaryBuilder
impl Debug for ActionSummaryBuilder
source§impl Default for ActionSummaryBuilder
impl Default for ActionSummaryBuilder
source§fn default() -> ActionSummaryBuilder
fn default() -> ActionSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ActionSummaryBuilder> for ActionSummaryBuilder
impl PartialEq<ActionSummaryBuilder> for ActionSummaryBuilder
source§fn eq(&self, other: &ActionSummaryBuilder) -> bool
fn eq(&self, other: &ActionSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.