1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListFlowExecutionMessages`](crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`flow_execution_id(impl Into<String>)`](crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder::flow_execution_id) / [`set_flow_execution_id(Option<String>)`](crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder::set_flow_execution_id):<br>required: **true**<br><p>The ID of the flow execution.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder::set_next_token):<br>required: **false**<br><p>The string that specifies the next page of results. Use this when you're paginating results.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in the response.</p><br>
    /// - On success, responds with [`ListFlowExecutionMessagesOutput`](crate::operation::list_flow_execution_messages::ListFlowExecutionMessagesOutput) with field(s):
    ///   - [`messages(Option<Vec::<FlowExecutionMessage>>)`](crate::operation::list_flow_execution_messages::ListFlowExecutionMessagesOutput::messages): <p>A list of objects that contain information about events in the specified flow execution.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_flow_execution_messages::ListFlowExecutionMessagesOutput::next_token): <p>The string to specify as <code>nextToken</code> when you request the next page of results.</p>
    /// - On failure, responds with [`SdkError<ListFlowExecutionMessagesError>`](crate::operation::list_flow_execution_messages::ListFlowExecutionMessagesError)
    #[deprecated(note = "since: 2022-08-30")]
    pub fn list_flow_execution_messages(&self) -> crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder {
        crate::operation::list_flow_execution_messages::builders::ListFlowExecutionMessagesFluentBuilder::new(self.handle.clone())
    }
}