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 [`DeleteVpcPeeringConnection`](crate::operation::delete_vpc_peering_connection::builders::DeleteVpcPeeringConnectionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`fleet_id(impl Into<String>)`](crate::operation::delete_vpc_peering_connection::builders::DeleteVpcPeeringConnectionFluentBuilder::fleet_id) / [`set_fleet_id(Option<String>)`](crate::operation::delete_vpc_peering_connection::builders::DeleteVpcPeeringConnectionFluentBuilder::set_fleet_id):<br>required: **true**<br><p>A unique identifier for the fleet. This fleet specified must match the fleet referenced in the VPC peering connection record. You can use either the fleet ID or ARN value.</p><br>
    ///   - [`vpc_peering_connection_id(impl Into<String>)`](crate::operation::delete_vpc_peering_connection::builders::DeleteVpcPeeringConnectionFluentBuilder::vpc_peering_connection_id) / [`set_vpc_peering_connection_id(Option<String>)`](crate::operation::delete_vpc_peering_connection::builders::DeleteVpcPeeringConnectionFluentBuilder::set_vpc_peering_connection_id):<br>required: **true**<br><p>A unique identifier for a VPC peering connection.</p><br>
    /// - On success, responds with [`DeleteVpcPeeringConnectionOutput`](crate::operation::delete_vpc_peering_connection::DeleteVpcPeeringConnectionOutput)
    /// - On failure, responds with [`SdkError<DeleteVpcPeeringConnectionError>`](crate::operation::delete_vpc_peering_connection::DeleteVpcPeeringConnectionError)
    pub fn delete_vpc_peering_connection(
        &self,
    ) -> crate::operation::delete_vpc_peering_connection::builders::DeleteVpcPeeringConnectionFluentBuilder {
        crate::operation::delete_vpc_peering_connection::builders::DeleteVpcPeeringConnectionFluentBuilder::new(self.handle.clone())
    }
}