1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UnassignIpv6Addresses`](crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`ipv6_addresses(Vec<String>)`](crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder::ipv6_addresses) / [`set_ipv6_addresses(Option<Vec<String>>)`](crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder::set_ipv6_addresses): <p>The IPv6 addresses to unassign from the network interface.</p>
    ///   - [`ipv6_prefixes(Vec<String>)`](crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder::ipv6_prefixes) / [`set_ipv6_prefixes(Option<Vec<String>>)`](crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder::set_ipv6_prefixes): <p>The IPv6 prefixes to unassign from the network interface.</p>
    ///   - [`network_interface_id(impl Into<String>)`](crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder::network_interface_id) / [`set_network_interface_id(Option<String>)`](crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder::set_network_interface_id): <p>The ID of the network interface.</p>
    /// - On success, responds with [`UnassignIpv6AddressesOutput`](crate::operation::unassign_ipv6_addresses::UnassignIpv6AddressesOutput) with field(s):
    ///   - [`network_interface_id(Option<String>)`](crate::operation::unassign_ipv6_addresses::UnassignIpv6AddressesOutput::network_interface_id): <p>The ID of the network interface.</p>
    ///   - [`unassigned_ipv6_addresses(Option<Vec<String>>)`](crate::operation::unassign_ipv6_addresses::UnassignIpv6AddressesOutput::unassigned_ipv6_addresses): <p>The IPv6 addresses that have been unassigned from the network interface.</p>
    ///   - [`unassigned_ipv6_prefixes(Option<Vec<String>>)`](crate::operation::unassign_ipv6_addresses::UnassignIpv6AddressesOutput::unassigned_ipv6_prefixes): <p>The IPv4 prefixes that have been unassigned from the network interface.</p>
    /// - On failure, responds with [`SdkError<UnassignIpv6AddressesError>`](crate::operation::unassign_ipv6_addresses::UnassignIpv6AddressesError)
    pub fn unassign_ipv6_addresses(
        &self,
    ) -> crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder
    {
        crate::operation::unassign_ipv6_addresses::builders::UnassignIpv6AddressesFluentBuilder::new(
            self.handle.clone(),
        )
    }
}