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 get_action_arn(&self) -> &Option<String>
pub fn get_action_arn(&self) -> &Option<String>
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 get_action_name(&self) -> &Option<String>
pub fn get_action_name(&self) -> &Option<String>
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 get_source(&self) -> &Option<ActionSource>
pub fn get_source(&self) -> &Option<ActionSource>
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 get_action_type(&self) -> &Option<String>
pub fn get_action_type(&self) -> &Option<String>
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 get_status(&self) -> &Option<ActionStatus>
pub fn get_status(&self) -> &Option<ActionStatus>
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 get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
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 get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
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 for ActionSummaryBuilder
impl PartialEq for ActionSummaryBuilder
impl StructuralPartialEq for ActionSummaryBuilder
Auto Trait Implementations§
impl Freeze for ActionSummaryBuilder
impl RefUnwindSafe for ActionSummaryBuilder
impl Send for ActionSummaryBuilder
impl Sync for ActionSummaryBuilder
impl Unpin for ActionSummaryBuilder
impl UnwindSafe for ActionSummaryBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.