1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetFlowAlias`](crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`flow_identifier(impl Into<String>)`](crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder::flow_identifier) / [`set_flow_identifier(Option<String>)`](crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder::set_flow_identifier):<br>required: **true**<br><p>The unique identifier of the flow that the alias belongs to.</p><br>
    ///   - [`alias_identifier(impl Into<String>)`](crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder::alias_identifier) / [`set_alias_identifier(Option<String>)`](crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder::set_alias_identifier):<br>required: **true**<br><p>The unique identifier of the alias for which to retrieve information.</p><br>
    /// - On success, responds with [`GetFlowAliasOutput`](crate::operation::get_flow_alias::GetFlowAliasOutput) with field(s):
    ///   - [`name(String)`](crate::operation::get_flow_alias::GetFlowAliasOutput::name): <p>The name of the alias.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_flow_alias::GetFlowAliasOutput::description): <p>The description of the flow.</p>
    ///   - [`routing_configuration(Vec::<FlowAliasRoutingConfigurationListItem>)`](crate::operation::get_flow_alias::GetFlowAliasOutput::routing_configuration): <p>Contains information about the version that the alias is mapped to.</p>
    ///   - [`flow_id(String)`](crate::operation::get_flow_alias::GetFlowAliasOutput::flow_id): <p>The unique identifier of the flow that the alias belongs to.</p>
    ///   - [`id(String)`](crate::operation::get_flow_alias::GetFlowAliasOutput::id): <p>The unique identifier of the alias of the flow.</p>
    ///   - [`arn(String)`](crate::operation::get_flow_alias::GetFlowAliasOutput::arn): <p>The Amazon Resource Name (ARN) of the flow.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_flow_alias::GetFlowAliasOutput::created_at): <p>The time at which the flow was created.</p>
    ///   - [`updated_at(DateTime)`](crate::operation::get_flow_alias::GetFlowAliasOutput::updated_at): <p>The time at which the alias was last updated.</p>
    /// - On failure, responds with [`SdkError<GetFlowAliasError>`](crate::operation::get_flow_alias::GetFlowAliasError)
    pub fn get_flow_alias(&self) -> crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder {
        crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder::new(self.handle.clone())
    }
}