Struct aws_sdk_sagemaker::operation::list_mlflow_tracking_servers::builders::ListMlflowTrackingServersOutputBuilder
source · #[non_exhaustive]pub struct ListMlflowTrackingServersOutputBuilder { /* private fields */ }Expand description
A builder for ListMlflowTrackingServersOutput.
Implementations§
source§impl ListMlflowTrackingServersOutputBuilder
impl ListMlflowTrackingServersOutputBuilder
sourcepub fn tracking_server_summaries(self, input: TrackingServerSummary) -> Self
pub fn tracking_server_summaries(self, input: TrackingServerSummary) -> Self
Appends an item to tracking_server_summaries.
To override the contents of this collection use set_tracking_server_summaries.
A list of tracking servers according to chosen filters.
sourcepub fn set_tracking_server_summaries(
self,
input: Option<Vec<TrackingServerSummary>>,
) -> Self
pub fn set_tracking_server_summaries( self, input: Option<Vec<TrackingServerSummary>>, ) -> Self
A list of tracking servers according to chosen filters.
sourcepub fn get_tracking_server_summaries(
&self,
) -> &Option<Vec<TrackingServerSummary>>
pub fn get_tracking_server_summaries( &self, ) -> &Option<Vec<TrackingServerSummary>>
A list of tracking servers according to chosen filters.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
sourcepub fn build(self) -> ListMlflowTrackingServersOutput
pub fn build(self) -> ListMlflowTrackingServersOutput
Consumes the builder and constructs a ListMlflowTrackingServersOutput.
Trait Implementations§
source§impl Clone for ListMlflowTrackingServersOutputBuilder
impl Clone for ListMlflowTrackingServersOutputBuilder
source§fn clone(&self) -> ListMlflowTrackingServersOutputBuilder
fn clone(&self) -> ListMlflowTrackingServersOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListMlflowTrackingServersOutputBuilder
impl Default for ListMlflowTrackingServersOutputBuilder
source§fn default() -> ListMlflowTrackingServersOutputBuilder
fn default() -> ListMlflowTrackingServersOutputBuilder
source§impl PartialEq for ListMlflowTrackingServersOutputBuilder
impl PartialEq for ListMlflowTrackingServersOutputBuilder
source§fn eq(&self, other: &ListMlflowTrackingServersOutputBuilder) -> bool
fn eq(&self, other: &ListMlflowTrackingServersOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListMlflowTrackingServersOutputBuilder
Auto Trait Implementations§
impl Freeze for ListMlflowTrackingServersOutputBuilder
impl RefUnwindSafe for ListMlflowTrackingServersOutputBuilder
impl Send for ListMlflowTrackingServersOutputBuilder
impl Sync for ListMlflowTrackingServersOutputBuilder
impl Unpin for ListMlflowTrackingServersOutputBuilder
impl UnwindSafe for ListMlflowTrackingServersOutputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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