Struct rusoto_ec2::InstancePrivateIpAddress[][src]

pub struct InstancePrivateIpAddress {
    pub association: Option<InstanceNetworkInterfaceAssociation>,
    pub primary: Option<bool>,
    pub private_dns_name: Option<String>,
    pub private_ip_address: Option<String>,
}

Describes a private IPv4 address.

Fields

The association information for an Elastic IP address for the network interface.

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

The private IPv4 DNS name.

The private IPv4 address of the network interface.

Trait Implementations

impl Default for InstancePrivateIpAddress
[src]

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

impl Debug for InstancePrivateIpAddress
[src]

Formats the value using the given formatter. Read more

impl Clone for InstancePrivateIpAddress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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