Struct rusoto_ec2::NetworkInterfacePrivateIpAddress[][src]

pub struct NetworkInterfacePrivateIpAddress {
    pub association: Option<NetworkInterfaceAssociation>,
    pub primary: Option<bool>,
    pub private_dns_name: Option<String>,
    pub private_ip_address: Option<String>,
}

Describes the private IPv4 address of a network interface.

Fields

The association information for an Elastic IP address (IPv4) associated with the network interface.

Indicates whether this IPv4 address is the primary private IPv4 address of the network interface.

The private DNS name.

The private IPv4 address.

Trait Implementations

impl Default for NetworkInterfacePrivateIpAddress
[src]

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

impl Debug for NetworkInterfacePrivateIpAddress
[src]

Formats the value using the given formatter. Read more

impl Clone for NetworkInterfacePrivateIpAddress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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