1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeLineageGroup`](crate::operation::describe_lineage_group::builders::DescribeLineageGroupFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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): <p>The name of the lineage group.</p>
/// - On success, responds with [`DescribeLineageGroupOutput`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput) with field(s):
/// - [`lineage_group_name(Option<String>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::lineage_group_name): <p>The name of the lineage group.</p>
/// - [`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>
/// - [`display_name(Option<String>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::display_name): <p>The display name of the lineage group.</p>
/// - [`description(Option<String>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::description): <p>The description of the lineage group.</p>
/// - [`creation_time(Option<DateTime>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::creation_time): <p>The creation time of lineage group.</p>
/// - [`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>
/// - [`last_modified_time(Option<DateTime>)`](crate::operation::describe_lineage_group::DescribeLineageGroupOutput::last_modified_time): <p>The last modified time of the lineage group.</p>
/// - [`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>
/// - On failure, responds with [`SdkError<DescribeLineageGroupError>`](crate::operation::describe_lineage_group::DescribeLineageGroupError)
pub fn describe_lineage_group(
&self,
) -> crate::operation::describe_lineage_group::builders::DescribeLineageGroupFluentBuilder {
crate::operation::describe_lineage_group::builders::DescribeLineageGroupFluentBuilder::new(
self.handle.clone(),
)
}
}