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 [`DeleteVpcIngressConnection`](crate::operation::delete_vpc_ingress_connection::builders::DeleteVpcIngressConnectionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`vpc_ingress_connection_arn(impl Into<String>)`](crate::operation::delete_vpc_ingress_connection::builders::DeleteVpcIngressConnectionFluentBuilder::vpc_ingress_connection_arn) / [`set_vpc_ingress_connection_arn(Option<String>)`](crate::operation::delete_vpc_ingress_connection::builders::DeleteVpcIngressConnectionFluentBuilder::set_vpc_ingress_connection_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the App Runner VPC Ingress Connection that you want to delete.</p><br>
    /// - On success, responds with [`DeleteVpcIngressConnectionOutput`](crate::operation::delete_vpc_ingress_connection::DeleteVpcIngressConnectionOutput) with field(s):
    ///   - [`vpc_ingress_connection(Option<VpcIngressConnection>)`](crate::operation::delete_vpc_ingress_connection::DeleteVpcIngressConnectionOutput::vpc_ingress_connection): <p>A description of the App Runner VPC Ingress Connection that this request just deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteVpcIngressConnectionError>`](crate::operation::delete_vpc_ingress_connection::DeleteVpcIngressConnectionError)
    pub fn delete_vpc_ingress_connection(
        &self,
    ) -> crate::operation::delete_vpc_ingress_connection::builders::DeleteVpcIngressConnectionFluentBuilder {
        crate::operation::delete_vpc_ingress_connection::builders::DeleteVpcIngressConnectionFluentBuilder::new(self.handle.clone())
    }
}