aws_sdk_sagemaker/client/
describe_lineage_group.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DescribeLineageGroup`](crate::operation::describe_lineage_group::builders::DescribeLineageGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`lineage_group_name(impl Into<String>)`](crate::operation::describe_lineage_group::builders::DescribeLineageGroupFluentBuilder::lineage_group_name) / [`set_lineage_group_name(Option<String>)`](crate::operation::describe_lineage_group::builders::DescribeLineageGroupFluentBuilder::set_lineage_group_name):<br>required: **true**<br><p>The name of the lineage group.</p><br>
7    /// - On success, responds with [`DescribeLineageGroupOutput`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput) with field(s):
8    ///   - [`lineage_group_name(Option<String>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::lineage_group_name): <p>The name of the lineage group.</p>
9    ///   - [`lineage_group_arn(Option<String>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::lineage_group_arn): <p>The Amazon Resource Name (ARN) of the lineage group.</p>
10    ///   - [`display_name(Option<String>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::display_name): <p>The display name of the lineage group.</p>
11    ///   - [`description(Option<String>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::description): <p>The description of the lineage group.</p>
12    ///   - [`creation_time(Option<DateTime>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::creation_time): <p>The creation time of lineage group.</p>
13    ///   - [`created_by(Option<UserContext>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::created_by): <p>Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.</p>
14    ///   - [`last_modified_time(Option<DateTime>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::last_modified_time): <p>The last modified time of the lineage group.</p>
15    ///   - [`last_modified_by(Option<UserContext>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::last_modified_by): <p>Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.</p>
16    /// - On failure, responds with [`SdkError<DescribeLineageGroupError>`](crate::operation::describe_lineage_group::DescribeLineageGroupError)
17    pub fn describe_lineage_group(&self) -> crate::operation::describe_lineage_group::builders::DescribeLineageGroupFluentBuilder {
18        crate::operation::describe_lineage_group::builders::DescribeLineageGroupFluentBuilder::new(self.handle.clone())
19    }
20}