Struct rusoto_ec2::AssignIpv6AddressesRequest[][src]

pub struct AssignIpv6AddressesRequest {
    pub ipv_6_address_count: Option<i64>,
    pub ipv_6_addresses: Option<Vec<String>>,
    pub network_interface_id: String,
}

Fields

The number of IPv6 addresses to assign 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.

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.

The ID of the network interface.

Trait Implementations

impl Default for AssignIpv6AddressesRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for AssignIpv6AddressesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AssignIpv6AddressesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AssignIpv6AddressesRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations