Struct aws_sdk_sagemaker::input::create_trial_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CreateTrialInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn trial_name(self, input: impl Into<String>) -> Self
pub fn trial_name(self, input: impl Into<String>) -> Self
The name of the trial. The name must be unique in your Amazon Web Services account and is not case-sensitive.
sourcepub fn set_trial_name(self, input: Option<String>) -> Self
pub fn set_trial_name(self, input: Option<String>) -> Self
The name of the trial. The name must be unique in your Amazon Web Services account and is not case-sensitive.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The name of the trial as displayed. The name doesn't need to be unique. If DisplayName
isn't specified, TrialName
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 trial as displayed. The name doesn't need to be unique. If DisplayName
isn't specified, TrialName
is displayed.
sourcepub fn experiment_name(self, input: impl Into<String>) -> Self
pub fn experiment_name(self, input: impl Into<String>) -> Self
The name of the experiment to associate the trial with.
sourcepub fn set_experiment_name(self, input: Option<String>) -> Self
pub fn set_experiment_name(self, input: Option<String>) -> Self
The name of the experiment to associate the trial with.
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.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
A list of tags to associate with the trial. You can use Search
API to search on the tags.
A list of tags to associate with the trial. You can use Search
API to search on the tags.
sourcepub fn build(self) -> Result<CreateTrialInput, BuildError>
pub fn build(self) -> Result<CreateTrialInput, BuildError>
Consumes the builder and constructs a CreateTrialInput
.