Struct aws_sdk_sagemaker::model::TrialSummary [−][src]
#[non_exhaustive]pub struct TrialSummary {
pub trial_arn: Option<String>,
pub trial_name: Option<String>,
pub display_name: Option<String>,
pub trial_source: Option<TrialSource>,
pub creation_time: Option<Instant>,
pub last_modified_time: Option<Instant>,
}
Expand description
A summary of the properties of a trial. To get the complete set of properties, call the
DescribeTrial API and provide the TrialName
.
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.trial_arn: Option<String>
The Amazon Resource Name (ARN) of the trial.
trial_name: Option<String>
The name of the trial.
display_name: Option<String>
The name of the trial as displayed. If DisplayName
isn't specified,
TrialName
is displayed.
trial_source: Option<TrialSource>
The source of the trial.
creation_time: Option<Instant>
When the trial was created.
last_modified_time: Option<Instant>
When the trial was last modified.
Implementations
Creates a new builder-style object to manufacture TrialSummary
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for TrialSummary
impl Send for TrialSummary
impl Sync for TrialSummary
impl Unpin for TrialSummary
impl UnwindSafe for TrialSummary
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more