aws_sdk_elasticbeanstalk/client/
delete_environment_configuration.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteEnvironmentConfiguration`](crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`application_name(impl 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):<br>required: **true**<br><p>The name of the application the environment is associated with.</p><br>
7    ///   - [`environment_name(impl 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):<br>required: **true**<br><p>The name of the environment to delete the draft configuration from.</p><br>
8    /// - On success, responds with [`DeleteEnvironmentConfigurationOutput`](crate::operation::delete_environment_configuration::DeleteEnvironmentConfigurationOutput)
9    /// - On failure, responds with [`SdkError<DeleteEnvironmentConfigurationError>`](crate::operation::delete_environment_configuration::DeleteEnvironmentConfigurationError)
10    pub fn delete_environment_configuration(
11        &self,
12    ) -> crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder {
13        crate::operation::delete_environment_configuration::builders::DeleteEnvironmentConfigurationFluentBuilder::new(self.handle.clone())
14    }
15}