aws_sdk_apigatewayv2/client/
delete_vpc_link.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 [`DeleteVpcLink`](crate::operation::delete_vpc_link::builders::DeleteVpcLinkFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`vpc_link_id(impl Into<String>)`](crate::operation::delete_vpc_link::builders::DeleteVpcLinkFluentBuilder::vpc_link_id) / [`set_vpc_link_id(Option<String>)`](crate::operation::delete_vpc_link::builders::DeleteVpcLinkFluentBuilder::set_vpc_link_id):<br>required: **true**<br><p>The ID of the VPC link.</p><br>
7    /// - On success, responds with [`DeleteVpcLinkOutput`](crate::operation::delete_vpc_link::DeleteVpcLinkOutput)
8    /// - On failure, responds with [`SdkError<DeleteVpcLinkError>`](crate::operation::delete_vpc_link::DeleteVpcLinkError)
9    pub fn delete_vpc_link(&self) -> crate::operation::delete_vpc_link::builders::DeleteVpcLinkFluentBuilder {
10        crate::operation::delete_vpc_link::builders::DeleteVpcLinkFluentBuilder::new(self.handle.clone())
11    }
12}