Struct aws_sdk_ec2::input::AssignIpv6AddressesInput
source · [−]#[non_exhaustive]pub struct AssignIpv6AddressesInput { /* private fields */ }
Implementations
sourceimpl AssignIpv6AddressesInput
impl AssignIpv6AddressesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AssignIpv6Addresses, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AssignIpv6Addresses, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AssignIpv6Addresses
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AssignIpv6AddressesInput
.
sourceimpl AssignIpv6AddressesInput
impl AssignIpv6AddressesInput
sourcepub fn ipv6_address_count(&self) -> Option<i32>
pub fn ipv6_address_count(&self) -> Option<i32>
The number of additional IPv6 addresses to assign to the network interface. The specified number of IPv6 addresses are assigned in addition to the existing IPv6 addresses that are already assigned to the network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can't use this option if specifying specific IPv6 addresses.
sourcepub fn ipv6_addresses(&self) -> Option<&[String]>
pub fn ipv6_addresses(&self) -> Option<&[String]>
One or more specific IPv6 addresses to be assigned to the network interface. You can't use this option if you're specifying a number of IPv6 addresses.
sourcepub fn ipv6_prefix_count(&self) -> Option<i32>
pub fn ipv6_prefix_count(&self) -> Option<i32>
The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv6Prefixes
option.
sourcepub fn ipv6_prefixes(&self) -> Option<&[String]>
pub fn ipv6_prefixes(&self) -> Option<&[String]>
One or more IPv6 prefixes assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount
option.
sourcepub fn network_interface_id(&self) -> Option<&str>
pub fn network_interface_id(&self) -> Option<&str>
The ID of the network interface.
Trait Implementations
sourceimpl Clone for AssignIpv6AddressesInput
impl Clone for AssignIpv6AddressesInput
sourcefn clone(&self) -> AssignIpv6AddressesInput
fn clone(&self) -> AssignIpv6AddressesInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AssignIpv6AddressesInput
impl Debug for AssignIpv6AddressesInput
sourceimpl PartialEq<AssignIpv6AddressesInput> for AssignIpv6AddressesInput
impl PartialEq<AssignIpv6AddressesInput> for AssignIpv6AddressesInput
sourcefn eq(&self, other: &AssignIpv6AddressesInput) -> bool
fn eq(&self, other: &AssignIpv6AddressesInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for AssignIpv6AddressesInput
Auto Trait Implementations
impl RefUnwindSafe for AssignIpv6AddressesInput
impl Send for AssignIpv6AddressesInput
impl Sync for AssignIpv6AddressesInput
impl Unpin for AssignIpv6AddressesInput
impl UnwindSafe for AssignIpv6AddressesInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more