Struct aws_sdk_ec2::model::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
sourceimpl 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.
sourceimpl ElasticGpus
impl ElasticGpus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ElasticGpus
.
Trait Implementations
sourceimpl Clone for ElasticGpus
impl Clone for ElasticGpus
sourcefn clone(&self) -> ElasticGpus
fn clone(&self) -> ElasticGpus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ElasticGpus
impl Debug for ElasticGpus
sourceimpl PartialEq<ElasticGpus> for ElasticGpus
impl PartialEq<ElasticGpus> for ElasticGpus
sourcefn eq(&self, other: &ElasticGpus) -> bool
fn eq(&self, other: &ElasticGpus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ElasticGpus) -> bool
fn ne(&self, other: &ElasticGpus) -> bool
This method tests for !=
.
impl StructuralPartialEq for ElasticGpus
Auto Trait Implementations
impl RefUnwindSafe for ElasticGpus
impl Send for ElasticGpus
impl Sync for ElasticGpus
impl Unpin for ElasticGpus
impl UnwindSafe for ElasticGpus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more