pub struct AssignIpv6AddressesRequest {
pub ipv_6_address_count: Option<i64>,
pub ipv_6_addresses: Option<Vec<String>>,
pub network_interface_id: String,
}
Fields§
§ipv_6_address_count: Option<i64>
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.
ipv_6_addresses: Option<Vec<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.
network_interface_id: String
The ID of the network interface.
Trait Implementations§
Source§impl Clone for AssignIpv6AddressesRequest
impl Clone for AssignIpv6AddressesRequest
Source§fn clone(&self) -> AssignIpv6AddressesRequest
fn clone(&self) -> AssignIpv6AddressesRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AssignIpv6AddressesRequest
impl Debug for AssignIpv6AddressesRequest
Source§impl Default for AssignIpv6AddressesRequest
impl Default for AssignIpv6AddressesRequest
Source§fn default() -> AssignIpv6AddressesRequest
fn default() -> AssignIpv6AddressesRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AssignIpv6AddressesRequest
Auto Trait Implementations§
impl Freeze for AssignIpv6AddressesRequest
impl RefUnwindSafe for AssignIpv6AddressesRequest
impl Send for AssignIpv6AddressesRequest
impl Sync for AssignIpv6AddressesRequest
impl Unpin for AssignIpv6AddressesRequest
impl UnwindSafe for AssignIpv6AddressesRequest
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
Mutably borrows from an owned value. Read more