Struct aws_sdk_ec2::types::ElasticGpus
source · #[non_exhaustive]pub struct ElasticGpus {
pub elastic_gpu_id: Option<String>,
pub availability_zone: Option<String>,
pub elastic_gpu_type: Option<String>,
pub elastic_gpu_health: Option<ElasticGpuHealth>,
pub elastic_gpu_state: Option<ElasticGpuState>,
pub instance_id: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes an Elastic Graphics accelerator.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.elastic_gpu_id: Option<String>
The ID of the Elastic Graphics accelerator.
availability_zone: Option<String>
The Availability Zone in the which the Elastic Graphics accelerator resides.
elastic_gpu_type: Option<String>
The type of Elastic Graphics accelerator.
elastic_gpu_health: Option<ElasticGpuHealth>
The status of the Elastic Graphics accelerator.
elastic_gpu_state: Option<ElasticGpuState>
The state of the Elastic Graphics accelerator.
instance_id: Option<String>
The ID of the instance to which the Elastic Graphics accelerator is attached.
The tags assigned to the Elastic Graphics accelerator.
Implementations§
source§impl ElasticGpus
impl ElasticGpus
sourcepub fn elastic_gpu_id(&self) -> Option<&str>
pub fn elastic_gpu_id(&self) -> Option<&str>
The ID of the Elastic Graphics accelerator.
sourcepub fn availability_zone(&self) -> Option<&str>
pub fn availability_zone(&self) -> Option<&str>
The Availability Zone in the which the Elastic Graphics accelerator resides.
sourcepub fn elastic_gpu_type(&self) -> Option<&str>
pub fn elastic_gpu_type(&self) -> Option<&str>
The type of Elastic Graphics accelerator.
sourcepub fn elastic_gpu_health(&self) -> Option<&ElasticGpuHealth>
pub fn elastic_gpu_health(&self) -> Option<&ElasticGpuHealth>
The status of the Elastic Graphics accelerator.
sourcepub fn elastic_gpu_state(&self) -> Option<&ElasticGpuState>
pub fn elastic_gpu_state(&self) -> Option<&ElasticGpuState>
The state of the Elastic Graphics accelerator.
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The ID of the instance to which the Elastic Graphics accelerator is attached.
The tags assigned to the Elastic Graphics accelerator.
source§impl ElasticGpus
impl ElasticGpus
sourcepub fn builder() -> ElasticGpusBuilder
pub fn builder() -> ElasticGpusBuilder
Creates a new builder-style object to manufacture ElasticGpus
.
Trait Implementations§
source§impl Clone for ElasticGpus
impl Clone for ElasticGpus
source§fn clone(&self) -> ElasticGpus
fn clone(&self) -> ElasticGpus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ElasticGpus
impl Debug for ElasticGpus
source§impl PartialEq<ElasticGpus> for ElasticGpus
impl PartialEq<ElasticGpus> for ElasticGpus
source§fn eq(&self, other: &ElasticGpus) -> bool
fn eq(&self, other: &ElasticGpus) -> bool
self
and other
values to be equal, and is used
by ==
.