1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteVpcConnector`](crate::operation::delete_vpc_connector::builders::DeleteVpcConnectorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`vpc_connector_arn(impl Into<String>)`](crate::operation::delete_vpc_connector::builders::DeleteVpcConnectorFluentBuilder::vpc_connector_arn) / [`set_vpc_connector_arn(Option<String>)`](crate::operation::delete_vpc_connector::builders::DeleteVpcConnectorFluentBuilder::set_vpc_connector_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to delete.</p>  <p>The ARN must be a full VPC connector ARN.</p><br>
    /// - On success, responds with [`DeleteVpcConnectorOutput`](crate::operation::delete_vpc_connector::DeleteVpcConnectorOutput) with field(s):
    ///   - [`vpc_connector(Option<VpcConnector>)`](crate::operation::delete_vpc_connector::DeleteVpcConnectorOutput::vpc_connector): <p>A description of the App Runner VPC connector that this request just deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteVpcConnectorError>`](crate::operation::delete_vpc_connector::DeleteVpcConnectorError)
    pub fn delete_vpc_connector(&self) -> crate::operation::delete_vpc_connector::builders::DeleteVpcConnectorFluentBuilder {
        crate::operation::delete_vpc_connector::builders::DeleteVpcConnectorFluentBuilder::new(self.handle.clone())
    }
}