Struct rusoto_ec2::PrivateIpAddressSpecification[][src]

pub struct PrivateIpAddressSpecification {
    pub primary: Option<bool>,
    pub private_ip_address: String,
}

Describes a secondary private IPv4 address for a network interface.

Fields

Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.

The private IPv4 addresses.

Trait Implementations

impl Default for PrivateIpAddressSpecification
[src]

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

impl Debug for PrivateIpAddressSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for PrivateIpAddressSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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