Struct aws_sdk_ec2::operation::assign_ipv6_addresses::builders::AssignIpv6AddressesOutputBuilder
source · #[non_exhaustive]pub struct AssignIpv6AddressesOutputBuilder { /* private fields */ }
Expand description
A builder for AssignIpv6AddressesOutput
.
Implementations§
source§impl AssignIpv6AddressesOutputBuilder
impl AssignIpv6AddressesOutputBuilder
sourcepub fn assigned_ipv6_addresses(self, input: impl Into<String>) -> Self
pub fn assigned_ipv6_addresses(self, input: impl Into<String>) -> Self
Appends an item to assigned_ipv6_addresses
.
To override the contents of this collection use set_assigned_ipv6_addresses
.
The new IPv6 addresses assigned to the network interface. Existing IPv6 addresses that were assigned to the network interface before the request are not included.
sourcepub fn set_assigned_ipv6_addresses(self, input: Option<Vec<String>>) -> Self
pub fn set_assigned_ipv6_addresses(self, input: Option<Vec<String>>) -> Self
The new IPv6 addresses assigned to the network interface. Existing IPv6 addresses that were assigned to the network interface before the request are not included.
sourcepub fn get_assigned_ipv6_addresses(&self) -> &Option<Vec<String>>
pub fn get_assigned_ipv6_addresses(&self) -> &Option<Vec<String>>
The new IPv6 addresses assigned to the network interface. Existing IPv6 addresses that were assigned to the network interface before the request are not included.
sourcepub fn assigned_ipv6_prefixes(self, input: impl Into<String>) -> Self
pub fn assigned_ipv6_prefixes(self, input: impl Into<String>) -> Self
Appends an item to assigned_ipv6_prefixes
.
To override the contents of this collection use set_assigned_ipv6_prefixes
.
The IPv6 prefixes that are assigned to the network interface.
sourcepub fn set_assigned_ipv6_prefixes(self, input: Option<Vec<String>>) -> Self
pub fn set_assigned_ipv6_prefixes(self, input: Option<Vec<String>>) -> Self
The IPv6 prefixes that are assigned to the network interface.
sourcepub fn get_assigned_ipv6_prefixes(&self) -> &Option<Vec<String>>
pub fn get_assigned_ipv6_prefixes(&self) -> &Option<Vec<String>>
The IPv6 prefixes that are assigned to the network interface.
sourcepub fn network_interface_id(self, input: impl Into<String>) -> Self
pub fn network_interface_id(self, input: impl Into<String>) -> Self
The ID of the network interface.
sourcepub fn set_network_interface_id(self, input: Option<String>) -> Self
pub fn set_network_interface_id(self, input: Option<String>) -> Self
The ID of the network interface.
sourcepub fn get_network_interface_id(&self) -> &Option<String>
pub fn get_network_interface_id(&self) -> &Option<String>
The ID of the network interface.
sourcepub fn build(self) -> AssignIpv6AddressesOutput
pub fn build(self) -> AssignIpv6AddressesOutput
Consumes the builder and constructs a AssignIpv6AddressesOutput
.
Trait Implementations§
source§impl Clone for AssignIpv6AddressesOutputBuilder
impl Clone for AssignIpv6AddressesOutputBuilder
source§fn clone(&self) -> AssignIpv6AddressesOutputBuilder
fn clone(&self) -> AssignIpv6AddressesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AssignIpv6AddressesOutputBuilder
impl Default for AssignIpv6AddressesOutputBuilder
source§fn default() -> AssignIpv6AddressesOutputBuilder
fn default() -> AssignIpv6AddressesOutputBuilder
source§impl PartialEq for AssignIpv6AddressesOutputBuilder
impl PartialEq for AssignIpv6AddressesOutputBuilder
source§fn eq(&self, other: &AssignIpv6AddressesOutputBuilder) -> bool
fn eq(&self, other: &AssignIpv6AddressesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssignIpv6AddressesOutputBuilder
Auto Trait Implementations§
impl Freeze for AssignIpv6AddressesOutputBuilder
impl RefUnwindSafe for AssignIpv6AddressesOutputBuilder
impl Send for AssignIpv6AddressesOutputBuilder
impl Sync for AssignIpv6AddressesOutputBuilder
impl Unpin for AssignIpv6AddressesOutputBuilder
impl UnwindSafe for AssignIpv6AddressesOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more