aws_sdk_apprunner/client/delete_vpc_connector.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 [`DeleteVpcConnector`](crate::operation::delete_vpc_connector::builders::DeleteVpcConnectorFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`DeleteVpcConnectorOutput`](crate::operation::delete_vpc_connector::DeleteVpcConnectorOutput) with field(s):
8 /// - [`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>
9 /// - On failure, responds with [`SdkError<DeleteVpcConnectorError>`](crate::operation::delete_vpc_connector::DeleteVpcConnectorError)
10 pub fn delete_vpc_connector(&self) -> crate::operation::delete_vpc_connector::builders::DeleteVpcConnectorFluentBuilder {
11 crate::operation::delete_vpc_connector::builders::DeleteVpcConnectorFluentBuilder::new(self.handle.clone())
12 }
13}