aws_sdk_bedrockagent/client/
get_flow_alias.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 [`GetFlowAlias`](crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`GetFlowAliasOutput`](crate::operation::get_flow_alias::GetFlowAliasOutput) with field(s):
9    ///   - [`name(String)`](crate::operation::get_flow_alias::GetFlowAliasOutput::name): <p>The name of the alias.</p>
10    ///   - [`description(Option<String>)`](crate::operation::get_flow_alias::GetFlowAliasOutput::description): <p>The description of the flow.</p>
11    ///   - [`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>
12    ///   - [`concurrency_configuration(Option<FlowAliasConcurrencyConfiguration>)`](crate::operation::get_flow_alias::GetFlowAliasOutput::concurrency_configuration): <p>The configuration that specifies how nodes in the flow are executed in parallel.</p>
13    ///   - [`flow_id(String)`](crate::operation::get_flow_alias::GetFlowAliasOutput::flow_id): <p>The unique identifier of the flow that the alias belongs to.</p>
14    ///   - [`id(String)`](crate::operation::get_flow_alias::GetFlowAliasOutput::id): <p>The unique identifier of the alias of the flow.</p>
15    ///   - [`arn(String)`](crate::operation::get_flow_alias::GetFlowAliasOutput::arn): <p>The Amazon Resource Name (ARN) of the flow.</p>
16    ///   - [`created_at(DateTime)`](crate::operation::get_flow_alias::GetFlowAliasOutput::created_at): <p>The time at which the flow was created.</p>
17    ///   - [`updated_at(DateTime)`](crate::operation::get_flow_alias::GetFlowAliasOutput::updated_at): <p>The time at which the alias was last updated.</p>
18    /// - On failure, responds with [`SdkError<GetFlowAliasError>`](crate::operation::get_flow_alias::GetFlowAliasError)
19    pub fn get_flow_alias(&self) -> crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder {
20        crate::operation::get_flow_alias::builders::GetFlowAliasFluentBuilder::new(self.handle.clone())
21    }
22}