1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListFlowAliases`](crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`flow_identifier(impl Into<String>)`](crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder::flow_identifier) / [`set_flow_identifier(Option<String>)`](crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder::set_flow_identifier):<br>required: **true**<br><p>The unique identifier of the flow for which aliases are being returned.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the <code>nextToken</code> field when making another request to return the next batch of results.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder::set_next_token):<br>required: **false**<br><p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, enter the token returned in the <code>nextToken</code> field in the response in this field to return the next batch of results.</p><br>
    /// - On success, responds with [`ListFlowAliasesOutput`](crate::operation::list_flow_aliases::ListFlowAliasesOutput) with field(s):
    ///   - [`flow_alias_summaries(Vec::<FlowAliasSummary>)`](crate::operation::list_flow_aliases::ListFlowAliasesOutput::flow_alias_summaries): <p>A list, each member of which contains information about an alias.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_flow_aliases::ListFlowAliasesOutput::next_token): <p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, use this token when making another request in the <code>nextToken</code> field to return the next batch of results.</p>
    /// - On failure, responds with [`SdkError<ListFlowAliasesError>`](crate::operation::list_flow_aliases::ListFlowAliasesError)
    pub fn list_flow_aliases(&self) -> crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder {
        crate::operation::list_flow_aliases::builders::ListFlowAliasesFluentBuilder::new(self.handle.clone())
    }
}