Struct rusoto_ec2::ElasticGpuAssociation[][src]

pub struct ElasticGpuAssociation {
    pub elastic_gpu_association_id: Option<String>,
    pub elastic_gpu_association_state: Option<String>,
    pub elastic_gpu_association_time: Option<String>,
    pub elastic_gpu_id: Option<String>,
}

Describes the association between an instance and an Elastic GPU.

Fields

The ID of the association.

The state of the association between the instance and the Elastic GPU.

The time the Elastic GPU was associated with the instance.

The ID of the Elastic GPU.

Trait Implementations

impl Default for ElasticGpuAssociation
[src]

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

impl Debug for ElasticGpuAssociation
[src]

Formats the value using the given formatter. Read more

impl Clone for ElasticGpuAssociation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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