1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteVpcConnection`](crate::operation::delete_vpc_connection::builders::DeleteVpcConnectionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`arn(impl Into<String>)`](crate::operation::delete_vpc_connection::builders::DeleteVpcConnectionFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::delete_vpc_connection::builders::DeleteVpcConnectionFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) that uniquely identifies an MSK VPC connection.</p><br>
    /// - On success, responds with [`DeleteVpcConnectionOutput`](crate::operation::delete_vpc_connection::DeleteVpcConnectionOutput) with field(s):
    ///   - [`vpc_connection_arn(Option<String>)`](crate::operation::delete_vpc_connection::DeleteVpcConnectionOutput::vpc_connection_arn): <p>The Amazon Resource Name (ARN) that uniquely identifies an MSK VPC connection.</p>
    ///   - [`state(Option<VpcConnectionState>)`](crate::operation::delete_vpc_connection::DeleteVpcConnectionOutput::state): <p>The state of the VPC connection.</p>
    /// - On failure, responds with [`SdkError<DeleteVpcConnectionError>`](crate::operation::delete_vpc_connection::DeleteVpcConnectionError)
    pub fn delete_vpc_connection(&self) -> crate::operation::delete_vpc_connection::builders::DeleteVpcConnectionFluentBuilder {
        crate::operation::delete_vpc_connection::builders::DeleteVpcConnectionFluentBuilder::new(self.handle.clone())
    }
}