Struct aws_sdk_sagemaker::operation::list_mlflow_tracking_servers::ListMlflowTrackingServersInput
source · #[non_exhaustive]pub struct ListMlflowTrackingServersInput {
pub created_after: Option<DateTime>,
pub created_before: Option<DateTime>,
pub tracking_server_status: Option<TrackingServerStatus>,
pub mlflow_version: Option<String>,
pub sort_by: Option<SortTrackingServerBy>,
pub sort_order: Option<SortOrder>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.created_after: Option<DateTime>
Use the CreatedAfter
filter to only list tracking servers created after a specific date and time. Listed tracking servers are shown with a date and time such as "2024-03-16T01:46:56+00:00"
. The CreatedAfter
parameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.
created_before: Option<DateTime>
Use the CreatedBefore
filter to only list tracking servers created before a specific date and time. Listed tracking servers are shown with a date and time such as "2024-03-16T01:46:56+00:00"
. The CreatedBefore
parameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.
tracking_server_status: Option<TrackingServerStatus>
Filter for tracking servers with a specified creation status.
mlflow_version: Option<String>
Filter for tracking servers using the specified MLflow version.
sort_by: Option<SortTrackingServerBy>
Filter for trackings servers sorting by name, creation time, or creation status.
sort_order: Option<SortOrder>
Change the order of the listed tracking servers. By default, tracking servers are listed in Descending
order by creation time. To change the list order, you can specify SortOrder
to be Ascending
.
next_token: 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.
max_results: Option<i32>
The maximum number of tracking servers to list.
Implementations§
source§impl ListMlflowTrackingServersInput
impl ListMlflowTrackingServersInput
sourcepub fn created_after(&self) -> Option<&DateTime>
pub fn created_after(&self) -> Option<&DateTime>
Use the CreatedAfter
filter to only list tracking servers created after a specific date and time. Listed tracking servers are shown with a date and time such as "2024-03-16T01:46:56+00:00"
. The CreatedAfter
parameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.
sourcepub fn created_before(&self) -> Option<&DateTime>
pub fn created_before(&self) -> Option<&DateTime>
Use the CreatedBefore
filter to only list tracking servers created before a specific date and time. Listed tracking servers are shown with a date and time such as "2024-03-16T01:46:56+00:00"
. The CreatedBefore
parameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.
sourcepub fn tracking_server_status(&self) -> Option<&TrackingServerStatus>
pub fn tracking_server_status(&self) -> Option<&TrackingServerStatus>
Filter for tracking servers with a specified creation status.
sourcepub fn mlflow_version(&self) -> Option<&str>
pub fn mlflow_version(&self) -> Option<&str>
Filter for tracking servers using the specified MLflow version.
sourcepub fn sort_by(&self) -> Option<&SortTrackingServerBy>
pub fn sort_by(&self) -> Option<&SortTrackingServerBy>
Filter for trackings servers sorting by name, creation time, or creation status.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
Change the order of the listed tracking servers. By default, tracking servers are listed in Descending
order by creation time. To change the list order, you can specify SortOrder
to be Ascending
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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 max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of tracking servers to list.
source§impl ListMlflowTrackingServersInput
impl ListMlflowTrackingServersInput
sourcepub fn builder() -> ListMlflowTrackingServersInputBuilder
pub fn builder() -> ListMlflowTrackingServersInputBuilder
Creates a new builder-style object to manufacture ListMlflowTrackingServersInput
.
Trait Implementations§
source§impl Clone for ListMlflowTrackingServersInput
impl Clone for ListMlflowTrackingServersInput
source§fn clone(&self) -> ListMlflowTrackingServersInput
fn clone(&self) -> ListMlflowTrackingServersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListMlflowTrackingServersInput
impl PartialEq for ListMlflowTrackingServersInput
source§fn eq(&self, other: &ListMlflowTrackingServersInput) -> bool
fn eq(&self, other: &ListMlflowTrackingServersInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListMlflowTrackingServersInput
Auto Trait Implementations§
impl Freeze for ListMlflowTrackingServersInput
impl RefUnwindSafe for ListMlflowTrackingServersInput
impl Send for ListMlflowTrackingServersInput
impl Sync for ListMlflowTrackingServersInput
impl Unpin for ListMlflowTrackingServersInput
impl UnwindSafe for ListMlflowTrackingServersInput
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