1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListDeploymentConfigs`](crate::operation::list_deployment_configs::builders::ListDeploymentConfigsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_deployment_configs::builders::ListDeploymentConfigsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_deployment_configs::builders::ListDeploymentConfigsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_deployment_configs::builders::ListDeploymentConfigsFluentBuilder::set_next_token): <p>An identifier returned from the previous <code>ListDeploymentConfigs</code> call. It can be used to return the next set of deployment configurations in the list. </p>
    /// - On success, responds with [`ListDeploymentConfigsOutput`](crate::operation::list_deployment_configs::ListDeploymentConfigsOutput) with field(s):
    ///   - [`deployment_configs_list(Option<Vec<String>>)`](crate::operation::list_deployment_configs::ListDeploymentConfigsOutput::deployment_configs_list): <p>A list of deployment configurations, including built-in configurations such as <code>CodeDeployDefault.OneAtATime</code>.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_deployment_configs::ListDeploymentConfigsOutput::next_token): <p>If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment configurations call to return the next set of deployment configurations in the list.</p>
    /// - On failure, responds with [`SdkError<ListDeploymentConfigsError>`](crate::operation::list_deployment_configs::ListDeploymentConfigsError)
    pub fn list_deployment_configs(&self) -> crate::operation::list_deployment_configs::builders::ListDeploymentConfigsFluentBuilder {
        crate::operation::list_deployment_configs::builders::ListDeploymentConfigsFluentBuilder::new(self.handle.clone())
    }
}