Struct aws_sdk_sagemaker::operation::list_model_card_versions::builders::ListModelCardVersionsOutputBuilder
source · #[non_exhaustive]pub struct ListModelCardVersionsOutputBuilder { /* private fields */ }
Expand description
A builder for ListModelCardVersionsOutput
.
Implementations§
source§impl ListModelCardVersionsOutputBuilder
impl ListModelCardVersionsOutputBuilder
sourcepub fn model_card_version_summary_list(
self,
input: ModelCardVersionSummary,
) -> Self
pub fn model_card_version_summary_list( self, input: ModelCardVersionSummary, ) -> Self
Appends an item to model_card_version_summary_list
.
To override the contents of this collection use set_model_card_version_summary_list
.
The summaries of the listed versions of the model card.
sourcepub fn set_model_card_version_summary_list(
self,
input: Option<Vec<ModelCardVersionSummary>>,
) -> Self
pub fn set_model_card_version_summary_list( self, input: Option<Vec<ModelCardVersionSummary>>, ) -> Self
The summaries of the listed versions of the model card.
sourcepub fn get_model_card_version_summary_list(
&self,
) -> &Option<Vec<ModelCardVersionSummary>>
pub fn get_model_card_version_summary_list( &self, ) -> &Option<Vec<ModelCardVersionSummary>>
The summaries of the listed versions of the model card.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response is truncated, SageMaker returns this token. To retrieve the next set of model card versions, use it in the subsequent request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response is truncated, SageMaker returns this token. To retrieve the next set of model card versions, use it in the subsequent request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response is truncated, SageMaker returns this token. To retrieve the next set of model card versions, use it in the subsequent request.
sourcepub fn build(self) -> ListModelCardVersionsOutput
pub fn build(self) -> ListModelCardVersionsOutput
Consumes the builder and constructs a ListModelCardVersionsOutput
.
Trait Implementations§
source§impl Clone for ListModelCardVersionsOutputBuilder
impl Clone for ListModelCardVersionsOutputBuilder
source§fn clone(&self) -> ListModelCardVersionsOutputBuilder
fn clone(&self) -> ListModelCardVersionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListModelCardVersionsOutputBuilder
impl Default for ListModelCardVersionsOutputBuilder
source§fn default() -> ListModelCardVersionsOutputBuilder
fn default() -> ListModelCardVersionsOutputBuilder
source§impl PartialEq for ListModelCardVersionsOutputBuilder
impl PartialEq for ListModelCardVersionsOutputBuilder
source§fn eq(&self, other: &ListModelCardVersionsOutputBuilder) -> bool
fn eq(&self, other: &ListModelCardVersionsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListModelCardVersionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListModelCardVersionsOutputBuilder
impl RefUnwindSafe for ListModelCardVersionsOutputBuilder
impl Send for ListModelCardVersionsOutputBuilder
impl Sync for ListModelCardVersionsOutputBuilder
impl Unpin for ListModelCardVersionsOutputBuilder
impl UnwindSafe for ListModelCardVersionsOutputBuilder
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
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)
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>
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>
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 more