// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeTrialComponent`](crate::operation::describe_trial_component::builders::DescribeTrialComponentFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`trial_component_name(impl Into<String>)`](crate::operation::describe_trial_component::builders::DescribeTrialComponentFluentBuilder::trial_component_name) / [`set_trial_component_name(Option<String>)`](crate::operation::describe_trial_component::builders::DescribeTrialComponentFluentBuilder::set_trial_component_name):<br>required: **true**<br><p>The name of the trial component to describe.</p><br>
/// - On success, responds with [`DescribeTrialComponentOutput`](crate::operation::describe_trial_component::DescribeTrialComponentOutput) with field(s):
/// - [`trial_component_name(Option<String>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::trial_component_name): <p>The name of the trial component.</p>
/// - [`trial_component_arn(Option<String>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::trial_component_arn): <p>The Amazon Resource Name (ARN) of the trial component.</p>
/// - [`display_name(Option<String>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::display_name): <p>The name of the component as displayed. If <code>DisplayName</code> isn't specified, <code>TrialComponentName</code> is displayed.</p>
/// - [`source(Option<TrialComponentSource>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::source): <p>The Amazon Resource Name (ARN) of the source and, optionally, the job type.</p>
/// - [`status(Option<TrialComponentStatus>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::status): <p>The status of the component. States include:</p> <ul> <li> <p>InProgress</p> </li> <li> <p>Completed</p> </li> <li> <p>Failed</p> </li> </ul>
/// - [`start_time(Option<DateTime>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::start_time): <p>When the component started.</p>
/// - [`end_time(Option<DateTime>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::end_time): <p>When the component ended.</p>
/// - [`creation_time(Option<DateTime>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::creation_time): <p>When the component was created.</p>
/// - [`created_by(Option<UserContext>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::created_by): <p>Who created the trial component.</p>
/// - [`last_modified_time(Option<DateTime>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::last_modified_time): <p>When the component was last modified.</p>
/// - [`last_modified_by(Option<UserContext>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::last_modified_by): <p>Who last modified the component.</p>
/// - [`parameters(Option<HashMap::<String, TrialComponentParameterValue>>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::parameters): <p>The hyperparameters of the component.</p>
/// - [`input_artifacts(Option<HashMap::<String, TrialComponentArtifact>>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::input_artifacts): <p>The input artifacts of the component.</p>
/// - [`output_artifacts(Option<HashMap::<String, TrialComponentArtifact>>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::output_artifacts): <p>The output artifacts of the component.</p>
/// - [`metadata_properties(Option<MetadataProperties>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::metadata_properties): <p>Metadata properties of the tracking entity, trial, or trial component.</p>
/// - [`metrics(Option<Vec::<TrialComponentMetricSummary>>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::metrics): <p>The metrics for the component.</p>
/// - [`lineage_group_arn(Option<String>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::lineage_group_arn): <p>The Amazon Resource Name (ARN) of the lineage group.</p>
/// - [`sources(Option<Vec::<TrialComponentSource>>)`](crate::operation::describe_trial_component::DescribeTrialComponentOutput::sources): <p>A list of ARNs and, if applicable, job types for multiple sources of an experiment run.</p>
/// - On failure, responds with [`SdkError<DescribeTrialComponentError>`](crate::operation::describe_trial_component::DescribeTrialComponentError)
pub fn describe_trial_component(&self) -> crate::operation::describe_trial_component::builders::DescribeTrialComponentFluentBuilder {
crate::operation::describe_trial_component::builders::DescribeTrialComponentFluentBuilder::new(self.handle.clone())
}
}