Struct rusoto_ec2::UnassignPrivateIpAddressesRequest[][src]

pub struct UnassignPrivateIpAddressesRequest {
    pub network_interface_id: String,
    pub private_ip_addresses: Vec<String>,
}

Contains the parameters for UnassignPrivateIpAddresses.

Fields

The ID of the network interface.

The secondary private IP addresses to unassign from the network interface. You can specify this option multiple times to unassign more than one IP address.

Trait Implementations

impl Default for UnassignPrivateIpAddressesRequest
[src]

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

impl Debug for UnassignPrivateIpAddressesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UnassignPrivateIpAddressesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UnassignPrivateIpAddressesRequest
[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