Struct aws_sdk_sagemaker::types::TrackingServerSummary
source · #[non_exhaustive]pub struct TrackingServerSummary {
pub tracking_server_arn: Option<String>,
pub tracking_server_name: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub tracking_server_status: Option<TrackingServerStatus>,
pub is_active: Option<IsTrackingServerActive>,
pub mlflow_version: Option<String>,
}
Expand description
The summary of the tracking server to list.
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.tracking_server_arn: Option<String>
The ARN of a listed tracking server.
tracking_server_name: Option<String>
The name of a listed tracking server.
creation_time: Option<DateTime>
The creation time of a listed tracking server.
last_modified_time: Option<DateTime>
The last modified time of a listed tracking server.
tracking_server_status: Option<TrackingServerStatus>
The creation status of a listed tracking server.
is_active: Option<IsTrackingServerActive>
The activity status of a listed tracking server.
mlflow_version: Option<String>
The MLflow version used for a listed tracking server.
Implementations§
source§impl TrackingServerSummary
impl TrackingServerSummary
sourcepub fn tracking_server_arn(&self) -> Option<&str>
pub fn tracking_server_arn(&self) -> Option<&str>
The ARN of a listed tracking server.
sourcepub fn tracking_server_name(&self) -> Option<&str>
pub fn tracking_server_name(&self) -> Option<&str>
The name of a listed tracking server.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation time of a listed tracking server.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The last modified time of a listed tracking server.
sourcepub fn tracking_server_status(&self) -> Option<&TrackingServerStatus>
pub fn tracking_server_status(&self) -> Option<&TrackingServerStatus>
The creation status of a listed tracking server.
sourcepub fn is_active(&self) -> Option<&IsTrackingServerActive>
pub fn is_active(&self) -> Option<&IsTrackingServerActive>
The activity status of a listed tracking server.
sourcepub fn mlflow_version(&self) -> Option<&str>
pub fn mlflow_version(&self) -> Option<&str>
The MLflow version used for a listed tracking server.
source§impl TrackingServerSummary
impl TrackingServerSummary
sourcepub fn builder() -> TrackingServerSummaryBuilder
pub fn builder() -> TrackingServerSummaryBuilder
Creates a new builder-style object to manufacture TrackingServerSummary
.
Trait Implementations§
source§impl Clone for TrackingServerSummary
impl Clone for TrackingServerSummary
source§fn clone(&self) -> TrackingServerSummary
fn clone(&self) -> TrackingServerSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TrackingServerSummary
impl Debug for TrackingServerSummary
source§impl PartialEq for TrackingServerSummary
impl PartialEq for TrackingServerSummary
source§fn eq(&self, other: &TrackingServerSummary) -> bool
fn eq(&self, other: &TrackingServerSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TrackingServerSummary
Auto Trait Implementations§
impl Freeze for TrackingServerSummary
impl RefUnwindSafe for TrackingServerSummary
impl Send for TrackingServerSummary
impl Sync for TrackingServerSummary
impl Unpin for TrackingServerSummary
impl UnwindSafe for TrackingServerSummary
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