Struct aws_sdk_sagemaker::operation::list_inference_components::builders::ListInferenceComponentsOutputBuilder
source · #[non_exhaustive]pub struct ListInferenceComponentsOutputBuilder { /* private fields */ }
Expand description
A builder for ListInferenceComponentsOutput
.
Implementations§
source§impl ListInferenceComponentsOutputBuilder
impl ListInferenceComponentsOutputBuilder
sourcepub fn inference_components(self, input: InferenceComponentSummary) -> Self
pub fn inference_components(self, input: InferenceComponentSummary) -> Self
Appends an item to inference_components
.
To override the contents of this collection use set_inference_components
.
A list of inference components and their properties that matches any of the filters you specified in the request.
sourcepub fn set_inference_components(
self,
input: Option<Vec<InferenceComponentSummary>>,
) -> Self
pub fn set_inference_components( self, input: Option<Vec<InferenceComponentSummary>>, ) -> Self
A list of inference components and their properties that matches any of the filters you specified in the request.
sourcepub fn get_inference_components(
&self,
) -> &Option<Vec<InferenceComponentSummary>>
pub fn get_inference_components( &self, ) -> &Option<Vec<InferenceComponentSummary>>
A list of inference components and their properties that matches any of the filters you specified in the request.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to use in a subsequent request to get the next set of results following a truncated response.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to use in a subsequent request to get the next set of results following a truncated response.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to use in a subsequent request to get the next set of results following a truncated response.
sourcepub fn build(self) -> ListInferenceComponentsOutput
pub fn build(self) -> ListInferenceComponentsOutput
Consumes the builder and constructs a ListInferenceComponentsOutput
.
Trait Implementations§
source§impl Clone for ListInferenceComponentsOutputBuilder
impl Clone for ListInferenceComponentsOutputBuilder
source§fn clone(&self) -> ListInferenceComponentsOutputBuilder
fn clone(&self) -> ListInferenceComponentsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListInferenceComponentsOutputBuilder
impl Default for ListInferenceComponentsOutputBuilder
source§fn default() -> ListInferenceComponentsOutputBuilder
fn default() -> ListInferenceComponentsOutputBuilder
source§impl PartialEq for ListInferenceComponentsOutputBuilder
impl PartialEq for ListInferenceComponentsOutputBuilder
source§fn eq(&self, other: &ListInferenceComponentsOutputBuilder) -> bool
fn eq(&self, other: &ListInferenceComponentsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListInferenceComponentsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListInferenceComponentsOutputBuilder
impl RefUnwindSafe for ListInferenceComponentsOutputBuilder
impl Send for ListInferenceComponentsOutputBuilder
impl Sync for ListInferenceComponentsOutputBuilder
impl Unpin for ListInferenceComponentsOutputBuilder
impl UnwindSafe for ListInferenceComponentsOutputBuilder
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