Struct aws_sdk_sagemaker::operation::describe_trial_component::builders::DescribeTrialComponentOutputBuilder
source · #[non_exhaustive]pub struct DescribeTrialComponentOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeTrialComponentOutput
.
Implementations§
source§impl DescribeTrialComponentOutputBuilder
impl DescribeTrialComponentOutputBuilder
sourcepub fn trial_component_name(self, input: impl Into<String>) -> Self
pub fn trial_component_name(self, input: impl Into<String>) -> Self
The name of the trial component.
sourcepub fn set_trial_component_name(self, input: Option<String>) -> Self
pub fn set_trial_component_name(self, input: Option<String>) -> Self
The name of the trial component.
sourcepub fn get_trial_component_name(&self) -> &Option<String>
pub fn get_trial_component_name(&self) -> &Option<String>
The name of the trial component.
sourcepub fn trial_component_arn(self, input: impl Into<String>) -> Self
pub fn trial_component_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the trial component.
sourcepub fn set_trial_component_arn(self, input: Option<String>) -> Self
pub fn set_trial_component_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the trial component.
sourcepub fn get_trial_component_arn(&self) -> &Option<String>
pub fn get_trial_component_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the trial component.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The name of the component as displayed. If DisplayName
isn't specified, TrialComponentName
is displayed.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The name of the component as displayed. If DisplayName
isn't specified, TrialComponentName
is displayed.
sourcepub fn get_display_name(&self) -> &Option<String>
pub fn get_display_name(&self) -> &Option<String>
The name of the component as displayed. If DisplayName
isn't specified, TrialComponentName
is displayed.
sourcepub fn source(self, input: TrialComponentSource) -> Self
pub fn source(self, input: TrialComponentSource) -> Self
The Amazon Resource Name (ARN) of the source and, optionally, the job type.
sourcepub fn set_source(self, input: Option<TrialComponentSource>) -> Self
pub fn set_source(self, input: Option<TrialComponentSource>) -> Self
The Amazon Resource Name (ARN) of the source and, optionally, the job type.
sourcepub fn get_source(&self) -> &Option<TrialComponentSource>
pub fn get_source(&self) -> &Option<TrialComponentSource>
The Amazon Resource Name (ARN) of the source and, optionally, the job type.
sourcepub fn status(self, input: TrialComponentStatus) -> Self
pub fn status(self, input: TrialComponentStatus) -> Self
The status of the component. States include:
-
InProgress
-
Completed
-
Failed
sourcepub fn set_status(self, input: Option<TrialComponentStatus>) -> Self
pub fn set_status(self, input: Option<TrialComponentStatus>) -> Self
The status of the component. States include:
-
InProgress
-
Completed
-
Failed
sourcepub fn get_status(&self) -> &Option<TrialComponentStatus>
pub fn get_status(&self) -> &Option<TrialComponentStatus>
The status of the component. States include:
-
InProgress
-
Completed
-
Failed
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
When the component started.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
When the component started.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
When the component started.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
When the component ended.
sourcepub fn get_end_time(&self) -> &Option<DateTime>
pub fn get_end_time(&self) -> &Option<DateTime>
When the component ended.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
When the component was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
When the component was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
When the component was created.
sourcepub fn created_by(self, input: UserContext) -> Self
pub fn created_by(self, input: UserContext) -> Self
Who created the trial component.
sourcepub fn set_created_by(self, input: Option<UserContext>) -> Self
pub fn set_created_by(self, input: Option<UserContext>) -> Self
Who created the trial component.
sourcepub fn get_created_by(&self) -> &Option<UserContext>
pub fn get_created_by(&self) -> &Option<UserContext>
Who created the trial component.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
When the component was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
When the component was last modified.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
When the component was last modified.
sourcepub fn last_modified_by(self, input: UserContext) -> Self
pub fn last_modified_by(self, input: UserContext) -> Self
Who last modified the component.
sourcepub fn set_last_modified_by(self, input: Option<UserContext>) -> Self
pub fn set_last_modified_by(self, input: Option<UserContext>) -> Self
Who last modified the component.
sourcepub fn get_last_modified_by(&self) -> &Option<UserContext>
pub fn get_last_modified_by(&self) -> &Option<UserContext>
Who last modified the component.
sourcepub fn parameters(
self,
k: impl Into<String>,
v: TrialComponentParameterValue,
) -> Self
pub fn parameters( self, k: impl Into<String>, v: TrialComponentParameterValue, ) -> Self
Adds a key-value pair to parameters
.
To override the contents of this collection use set_parameters
.
The hyperparameters of the component.
sourcepub fn set_parameters(
self,
input: Option<HashMap<String, TrialComponentParameterValue>>,
) -> Self
pub fn set_parameters( self, input: Option<HashMap<String, TrialComponentParameterValue>>, ) -> Self
The hyperparameters of the component.
sourcepub fn get_parameters(
&self,
) -> &Option<HashMap<String, TrialComponentParameterValue>>
pub fn get_parameters( &self, ) -> &Option<HashMap<String, TrialComponentParameterValue>>
The hyperparameters of the component.
sourcepub fn input_artifacts(
self,
k: impl Into<String>,
v: TrialComponentArtifact,
) -> Self
pub fn input_artifacts( self, k: impl Into<String>, v: TrialComponentArtifact, ) -> Self
Adds a key-value pair to input_artifacts
.
To override the contents of this collection use set_input_artifacts
.
The input artifacts of the component.
sourcepub fn set_input_artifacts(
self,
input: Option<HashMap<String, TrialComponentArtifact>>,
) -> Self
pub fn set_input_artifacts( self, input: Option<HashMap<String, TrialComponentArtifact>>, ) -> Self
The input artifacts of the component.
sourcepub fn get_input_artifacts(
&self,
) -> &Option<HashMap<String, TrialComponentArtifact>>
pub fn get_input_artifacts( &self, ) -> &Option<HashMap<String, TrialComponentArtifact>>
The input artifacts of the component.
sourcepub fn output_artifacts(
self,
k: impl Into<String>,
v: TrialComponentArtifact,
) -> Self
pub fn output_artifacts( self, k: impl Into<String>, v: TrialComponentArtifact, ) -> Self
Adds a key-value pair to output_artifacts
.
To override the contents of this collection use set_output_artifacts
.
The output artifacts of the component.
sourcepub fn set_output_artifacts(
self,
input: Option<HashMap<String, TrialComponentArtifact>>,
) -> Self
pub fn set_output_artifacts( self, input: Option<HashMap<String, TrialComponentArtifact>>, ) -> Self
The output artifacts of the component.
sourcepub fn get_output_artifacts(
&self,
) -> &Option<HashMap<String, TrialComponentArtifact>>
pub fn get_output_artifacts( &self, ) -> &Option<HashMap<String, TrialComponentArtifact>>
The output artifacts of the component.
sourcepub fn metadata_properties(self, input: MetadataProperties) -> Self
pub fn metadata_properties(self, input: MetadataProperties) -> Self
Metadata properties of the tracking entity, trial, or trial component.
sourcepub fn set_metadata_properties(self, input: Option<MetadataProperties>) -> Self
pub fn set_metadata_properties(self, input: Option<MetadataProperties>) -> Self
Metadata properties of the tracking entity, trial, or trial component.
sourcepub fn get_metadata_properties(&self) -> &Option<MetadataProperties>
pub fn get_metadata_properties(&self) -> &Option<MetadataProperties>
Metadata properties of the tracking entity, trial, or trial component.
sourcepub fn metrics(self, input: TrialComponentMetricSummary) -> Self
pub fn metrics(self, input: TrialComponentMetricSummary) -> Self
Appends an item to metrics
.
To override the contents of this collection use set_metrics
.
The metrics for the component.
sourcepub fn set_metrics(
self,
input: Option<Vec<TrialComponentMetricSummary>>,
) -> Self
pub fn set_metrics( self, input: Option<Vec<TrialComponentMetricSummary>>, ) -> Self
The metrics for the component.
sourcepub fn get_metrics(&self) -> &Option<Vec<TrialComponentMetricSummary>>
pub fn get_metrics(&self) -> &Option<Vec<TrialComponentMetricSummary>>
The metrics for the component.
sourcepub fn lineage_group_arn(self, input: impl Into<String>) -> Self
pub fn lineage_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the lineage group.
sourcepub fn set_lineage_group_arn(self, input: Option<String>) -> Self
pub fn set_lineage_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the lineage group.
sourcepub fn get_lineage_group_arn(&self) -> &Option<String>
pub fn get_lineage_group_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the lineage group.
sourcepub fn sources(self, input: TrialComponentSource) -> Self
pub fn sources(self, input: TrialComponentSource) -> Self
Appends an item to sources
.
To override the contents of this collection use set_sources
.
A list of ARNs and, if applicable, job types for multiple sources of an experiment run.
sourcepub fn set_sources(self, input: Option<Vec<TrialComponentSource>>) -> Self
pub fn set_sources(self, input: Option<Vec<TrialComponentSource>>) -> Self
A list of ARNs and, if applicable, job types for multiple sources of an experiment run.
sourcepub fn get_sources(&self) -> &Option<Vec<TrialComponentSource>>
pub fn get_sources(&self) -> &Option<Vec<TrialComponentSource>>
A list of ARNs and, if applicable, job types for multiple sources of an experiment run.
sourcepub fn build(self) -> DescribeTrialComponentOutput
pub fn build(self) -> DescribeTrialComponentOutput
Consumes the builder and constructs a DescribeTrialComponentOutput
.
Trait Implementations§
source§impl Clone for DescribeTrialComponentOutputBuilder
impl Clone for DescribeTrialComponentOutputBuilder
source§fn clone(&self) -> DescribeTrialComponentOutputBuilder
fn clone(&self) -> DescribeTrialComponentOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeTrialComponentOutputBuilder
impl Default for DescribeTrialComponentOutputBuilder
source§fn default() -> DescribeTrialComponentOutputBuilder
fn default() -> DescribeTrialComponentOutputBuilder
source§impl PartialEq for DescribeTrialComponentOutputBuilder
impl PartialEq for DescribeTrialComponentOutputBuilder
source§fn eq(&self, other: &DescribeTrialComponentOutputBuilder) -> bool
fn eq(&self, other: &DescribeTrialComponentOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeTrialComponentOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeTrialComponentOutputBuilder
impl RefUnwindSafe for DescribeTrialComponentOutputBuilder
impl Send for DescribeTrialComponentOutputBuilder
impl Sync for DescribeTrialComponentOutputBuilder
impl Unpin for DescribeTrialComponentOutputBuilder
impl UnwindSafe for DescribeTrialComponentOutputBuilder
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