1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListEnvironmentOutputs`](crate::operation::list_environment_outputs::builders::ListEnvironmentOutputsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_environment_outputs::builders::ListEnvironmentOutputsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`environment_name(impl Into<String>)`](crate::operation::list_environment_outputs::builders::ListEnvironmentOutputsFluentBuilder::environment_name) / [`set_environment_name(Option<String>)`](crate::operation::list_environment_outputs::builders::ListEnvironmentOutputsFluentBuilder::set_environment_name): <p>The environment name.</p>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_environment_outputs::builders::ListEnvironmentOutputsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_environment_outputs::builders::ListEnvironmentOutputsFluentBuilder::set_next_token): <p>A token that indicates the location of the next environment output in the array of environment outputs, after the list of environment outputs that was previously requested.</p>
    /// - On success, responds with [`ListEnvironmentOutputsOutput`](crate::operation::list_environment_outputs::ListEnvironmentOutputsOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_environment_outputs::ListEnvironmentOutputsOutput::next_token): <p>A token that indicates the location of the next environment output in the array of environment outputs, after the current requested list of environment outputs.</p>
    ///   - [`outputs(Option<Vec<Output>>)`](crate::operation::list_environment_outputs::ListEnvironmentOutputsOutput::outputs): <p>An array of environment outputs with detail data.</p>
    /// - On failure, responds with [`SdkError<ListEnvironmentOutputsError>`](crate::operation::list_environment_outputs::ListEnvironmentOutputsError)
    pub fn list_environment_outputs(
        &self,
    ) -> crate::operation::list_environment_outputs::builders::ListEnvironmentOutputsFluentBuilder
    {
        crate::operation::list_environment_outputs::builders::ListEnvironmentOutputsFluentBuilder::new(self.handle.clone())
    }
}