pub struct DescribeTrialComponentResponse {Show 15 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 source: Option<TrialComponentSource>,
pub start_time: Option<f64>,
pub status: Option<TrialComponentStatus>,
pub trial_component_arn: Option<String>,
pub trial_component_name: Option<String>,
}Fields§
§created_by: Option<UserContext>Who created the component.
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>Who last modified the component.
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.
source: Option<TrialComponentSource>The Amazon Resource Name (ARN) of the source and, optionally, the job type.
start_time: Option<f64>When the component started.
status: Option<TrialComponentStatus>The status of the component. States include:
-
InProgress
-
Completed
-
Failed
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 DescribeTrialComponentResponse
impl Clone for DescribeTrialComponentResponse
Source§fn clone(&self) -> DescribeTrialComponentResponse
fn clone(&self) -> DescribeTrialComponentResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DescribeTrialComponentResponse
impl Default for DescribeTrialComponentResponse
Source§fn default() -> DescribeTrialComponentResponse
fn default() -> DescribeTrialComponentResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeTrialComponentResponse
impl<'de> Deserialize<'de> for DescribeTrialComponentResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeTrialComponentResponse
impl PartialEq for DescribeTrialComponentResponse
Source§fn eq(&self, other: &DescribeTrialComponentResponse) -> bool
fn eq(&self, other: &DescribeTrialComponentResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeTrialComponentResponse
Auto Trait Implementations§
impl Freeze for DescribeTrialComponentResponse
impl RefUnwindSafe for DescribeTrialComponentResponse
impl Send for DescribeTrialComponentResponse
impl Sync for DescribeTrialComponentResponse
impl Unpin for DescribeTrialComponentResponse
impl UnwindSafe for DescribeTrialComponentResponse
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
Mutably borrows from an owned value. Read more