Struct aws_sdk_sagemaker::operation::list_trial_components::builders::ListTrialComponentsOutputBuilder
source · #[non_exhaustive]pub struct ListTrialComponentsOutputBuilder { /* private fields */ }
Expand description
A builder for ListTrialComponentsOutput
.
Implementations§
source§impl ListTrialComponentsOutputBuilder
impl ListTrialComponentsOutputBuilder
sourcepub fn trial_component_summaries(self, input: TrialComponentSummary) -> Self
pub fn trial_component_summaries(self, input: TrialComponentSummary) -> Self
Appends an item to trial_component_summaries
.
To override the contents of this collection use set_trial_component_summaries
.
A list of the summaries of your trial components.
sourcepub fn set_trial_component_summaries(
self,
input: Option<Vec<TrialComponentSummary>>
) -> Self
pub fn set_trial_component_summaries( self, input: Option<Vec<TrialComponentSummary>> ) -> Self
A list of the summaries of your trial components.
sourcepub fn get_trial_component_summaries(
&self
) -> &Option<Vec<TrialComponentSummary>>
pub fn get_trial_component_summaries( &self ) -> &Option<Vec<TrialComponentSummary>>
A list of the summaries of your trial components.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token for getting the next set of components, if there are any.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token for getting the next set of components, if there are any.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token for getting the next set of components, if there are any.
sourcepub fn build(self) -> ListTrialComponentsOutput
pub fn build(self) -> ListTrialComponentsOutput
Consumes the builder and constructs a ListTrialComponentsOutput
.
Trait Implementations§
source§impl Clone for ListTrialComponentsOutputBuilder
impl Clone for ListTrialComponentsOutputBuilder
source§fn clone(&self) -> ListTrialComponentsOutputBuilder
fn clone(&self) -> ListTrialComponentsOutputBuilder
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 Default for ListTrialComponentsOutputBuilder
impl Default for ListTrialComponentsOutputBuilder
source§fn default() -> ListTrialComponentsOutputBuilder
fn default() -> ListTrialComponentsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListTrialComponentsOutputBuilder
impl PartialEq for ListTrialComponentsOutputBuilder
source§fn eq(&self, other: &ListTrialComponentsOutputBuilder) -> bool
fn eq(&self, other: &ListTrialComponentsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListTrialComponentsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListTrialComponentsOutputBuilder
impl RefUnwindSafe for ListTrialComponentsOutputBuilder
impl Send for ListTrialComponentsOutputBuilder
impl Sync for ListTrialComponentsOutputBuilder
impl Unpin for ListTrialComponentsOutputBuilder
impl UnwindSafe for ListTrialComponentsOutputBuilder
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> 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.