aws_sdk_proton/client/
delete_environment_account_connection.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 [`DeleteEnvironmentAccountConnection`](crate::operation::delete_environment_account_connection::builders::DeleteEnvironmentAccountConnectionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::delete_environment_account_connection::builders::DeleteEnvironmentAccountConnectionFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_environment_account_connection::builders::DeleteEnvironmentAccountConnectionFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the environment account connection to delete.</p><br>
7    /// - On success, responds with [`DeleteEnvironmentAccountConnectionOutput`](crate::operation::delete_environment_account_connection::DeleteEnvironmentAccountConnectionOutput) with field(s):
8    ///   - [`environment_account_connection(Option<EnvironmentAccountConnection>)`](crate::operation::delete_environment_account_connection::DeleteEnvironmentAccountConnectionOutput::environment_account_connection): <p>The detailed data of the environment account connection being deleted.</p>
9    /// - On failure, responds with [`SdkError<DeleteEnvironmentAccountConnectionError>`](crate::operation::delete_environment_account_connection::DeleteEnvironmentAccountConnectionError)
10    pub fn delete_environment_account_connection(
11        &self,
12    ) -> crate::operation::delete_environment_account_connection::builders::DeleteEnvironmentAccountConnectionFluentBuilder {
13        crate::operation::delete_environment_account_connection::builders::DeleteEnvironmentAccountConnectionFluentBuilder::new(self.handle.clone())
14    }
15}