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 [`DeleteEnvironmentConfiguration`](crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_name(impl ::std::convert::Into<String>)`](crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder::application_name) / [`set_application_name(Option<String>)`](crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder::set_application_name): <p>The name of the application the environment is associated with.</p>
    ///   - [`environment_name(impl ::std::convert::Into<String>)`](crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder::environment_name) / [`set_environment_name(Option<String>)`](crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder::set_environment_name): <p>The name of the environment to delete the draft configuration from.</p>
    /// - On success, responds with [`DeleteEnvironmentConfigurationOutput`](crate::operation::delete_environment_configuration::DeleteEnvironmentConfigurationOutput)
    /// - On failure, responds with [`SdkError<DeleteEnvironmentConfigurationError>`](crate::operation::delete_environment_configuration::DeleteEnvironmentConfigurationError)
    pub fn delete_environment_configuration(
        &self,
    ) -> crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder {
        crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder::new(self.handle.clone())
    }
}