Struct rusoto_ec2::AllocateAddressResult[][src]

pub struct AllocateAddressResult {
    pub allocation_id: Option<String>,
    pub domain: Option<String>,
    pub public_ip: Option<String>,
}

Contains the output of AllocateAddress.

Fields

[EC2-VPC] The ID that AWS assigns to represent the allocation of the Elastic IP address for use with instances in a VPC.

Indicates whether this Elastic IP address is for use with instances in EC2-Classic (standard) or instances in a VPC (vpc).

The Elastic IP address.

Trait Implementations

impl Default for AllocateAddressResult
[src]

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

impl Debug for AllocateAddressResult
[src]

Formats the value using the given formatter. Read more

impl Clone for AllocateAddressResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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