1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeAction`](crate::operation::describe_action::builders::DescribeActionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`action_name(impl Into<String>)`](crate::operation::describe_action::builders::DescribeActionFluentBuilder::action_name) / [`set_action_name(Option<String>)`](crate::operation::describe_action::builders::DescribeActionFluentBuilder::set_action_name):<br>required: **true**<br><p>The name of the action to describe.</p><br>
    /// - On success, responds with [`DescribeActionOutput`](crate::operation::describe_action::DescribeActionOutput) with field(s):
    ///   - [`action_name(Option<String>)`](crate::operation::describe_action::DescribeActionOutput::action_name): <p>The name of the action.</p>
    ///   - [`action_arn(Option<String>)`](crate::operation::describe_action::DescribeActionOutput::action_arn): <p>The Amazon Resource Name (ARN) of the action.</p>
    ///   - [`source(Option<ActionSource>)`](crate::operation::describe_action::DescribeActionOutput::source): <p>The source of the action.</p>
    ///   - [`action_type(Option<String>)`](crate::operation::describe_action::DescribeActionOutput::action_type): <p>The type of the action.</p>
    ///   - [`description(Option<String>)`](crate::operation::describe_action::DescribeActionOutput::description): <p>The description of the action.</p>
    ///   - [`status(Option<ActionStatus>)`](crate::operation::describe_action::DescribeActionOutput::status): <p>The status of the action.</p>
    ///   - [`properties(Option<HashMap::<String, String>>)`](crate::operation::describe_action::DescribeActionOutput::properties): <p>A list of the action's properties.</p>
    ///   - [`creation_time(Option<DateTime>)`](crate::operation::describe_action::DescribeActionOutput::creation_time): <p>When the action was created.</p>
    ///   - [`created_by(Option<UserContext>)`](crate::operation::describe_action::DescribeActionOutput::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_action::DescribeActionOutput::last_modified_time): <p>When the action was last modified.</p>
    ///   - [`last_modified_by(Option<UserContext>)`](crate::operation::describe_action::DescribeActionOutput::last_modified_by): <p>Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.</p>
    ///   - [`metadata_properties(Option<MetadataProperties>)`](crate::operation::describe_action::DescribeActionOutput::metadata_properties): <p>Metadata properties of the tracking entity, trial, or trial component.</p>
    ///   - [`lineage_group_arn(Option<String>)`](crate::operation::describe_action::DescribeActionOutput::lineage_group_arn): <p>The Amazon Resource Name (ARN) of the lineage group.</p>
    /// - On failure, responds with [`SdkError<DescribeActionError>`](crate::operation::describe_action::DescribeActionError)
    pub fn describe_action(&self) -> crate::operation::describe_action::builders::DescribeActionFluentBuilder {
        crate::operation::describe_action::builders::DescribeActionFluentBuilder::new(self.handle.clone())
    }
}