pub struct TrialComponent {Show 18 fields
pub created_by: Option<UserContext>,
pub creation_time: Option<f64>,
pub display_name: Option<String>,
pub end_time: Option<f64>,
pub input_artifacts: Option<HashMap<String, TrialComponentArtifact>>,
pub last_modified_by: Option<UserContext>,
pub last_modified_time: Option<f64>,
pub metrics: Option<Vec<TrialComponentMetricSummary>>,
pub output_artifacts: Option<HashMap<String, TrialComponentArtifact>>,
pub parameters: Option<HashMap<String, TrialComponentParameterValue>>,
pub parents: Option<Vec<Parent>>,
pub source: Option<TrialComponentSource>,
pub source_detail: Option<TrialComponentSourceDetail>,
pub start_time: Option<f64>,
pub status: Option<TrialComponentStatus>,
pub tags: Option<Vec<Tag>>,
pub trial_component_arn: Option<String>,
pub trial_component_name: Option<String>,
}Expand description
The properties of a trial component as returned by the Search API.
Fields§
§created_by: Option<UserContext>§creation_time: Option<f64>When the component was created.
display_name: Option<String>The name of the component as displayed. If DisplayName isn't specified, TrialComponentName is displayed.
end_time: Option<f64>When the component ended.
input_artifacts: Option<HashMap<String, TrialComponentArtifact>>The input artifacts of the component.
last_modified_by: Option<UserContext>§last_modified_time: Option<f64>When the component was last modified.
metrics: Option<Vec<TrialComponentMetricSummary>>The metrics for the component.
output_artifacts: Option<HashMap<String, TrialComponentArtifact>>The output artifacts of the component.
parameters: Option<HashMap<String, TrialComponentParameterValue>>The hyperparameters of the component.
parents: Option<Vec<Parent>>An array of the parents of the component. A parent is a trial the component is associated with and the experiment the trial is part of. A component might not have any parents.
source: Option<TrialComponentSource>The Amazon Resource Name (ARN) and job type of the source of the component.
source_detail: Option<TrialComponentSourceDetail>Details of the source of the component.
start_time: Option<f64>When the component started.
status: Option<TrialComponentStatus>The list of tags that are associated with the component. You can use Search API to search on the tags.
trial_component_arn: Option<String>The Amazon Resource Name (ARN) of the trial component.
trial_component_name: Option<String>The name of the trial component.
Trait Implementations§
Source§impl Clone for TrialComponent
impl Clone for TrialComponent
Source§fn clone(&self) -> TrialComponent
fn clone(&self) -> TrialComponent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more