#[non_exhaustive]pub struct ElasticInferenceAccelerator {
pub accelerator_health: Option<ElasticInferenceAcceleratorHealth>,
pub accelerator_type: Option<String>,
pub accelerator_id: Option<String>,
pub availability_zone: Option<String>,
pub attached_resource: Option<String>,
}
Expand description
The details of an Elastic Inference Accelerator.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.accelerator_health: Option<ElasticInferenceAcceleratorHealth>
The health of the Elastic Inference Accelerator.
accelerator_type: Option<String>
The type of the Elastic Inference Accelerator.
accelerator_id: Option<String>
The ID of the Elastic Inference Accelerator.
availability_zone: Option<String>
The availability zone where the Elastic Inference Accelerator is present.
attached_resource: Option<String>
The ARN of the resource that the Elastic Inference Accelerator is attached to.
Implementations§
source§impl ElasticInferenceAccelerator
impl ElasticInferenceAccelerator
sourcepub fn accelerator_health(&self) -> Option<&ElasticInferenceAcceleratorHealth>
pub fn accelerator_health(&self) -> Option<&ElasticInferenceAcceleratorHealth>
The health of the Elastic Inference Accelerator.
sourcepub fn accelerator_type(&self) -> Option<&str>
pub fn accelerator_type(&self) -> Option<&str>
The type of the Elastic Inference Accelerator.
sourcepub fn accelerator_id(&self) -> Option<&str>
pub fn accelerator_id(&self) -> Option<&str>
The ID of the Elastic Inference Accelerator.
sourcepub fn availability_zone(&self) -> Option<&str>
pub fn availability_zone(&self) -> Option<&str>
The availability zone where the Elastic Inference Accelerator is present.
sourcepub fn attached_resource(&self) -> Option<&str>
pub fn attached_resource(&self) -> Option<&str>
The ARN of the resource that the Elastic Inference Accelerator is attached to.
source§impl ElasticInferenceAccelerator
impl ElasticInferenceAccelerator
sourcepub fn builder() -> ElasticInferenceAcceleratorBuilder
pub fn builder() -> ElasticInferenceAcceleratorBuilder
Creates a new builder-style object to manufacture ElasticInferenceAccelerator
.
Trait Implementations§
source§impl Clone for ElasticInferenceAccelerator
impl Clone for ElasticInferenceAccelerator
source§fn clone(&self) -> ElasticInferenceAccelerator
fn clone(&self) -> ElasticInferenceAccelerator
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ElasticInferenceAccelerator
impl Debug for ElasticInferenceAccelerator
source§impl PartialEq for ElasticInferenceAccelerator
impl PartialEq for ElasticInferenceAccelerator
source§fn eq(&self, other: &ElasticInferenceAccelerator) -> bool
fn eq(&self, other: &ElasticInferenceAccelerator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ElasticInferenceAccelerator
Auto Trait Implementations§
impl RefUnwindSafe for ElasticInferenceAccelerator
impl Send for ElasticInferenceAccelerator
impl Sync for ElasticInferenceAccelerator
impl Unpin for ElasticInferenceAccelerator
impl UnwindSafe for ElasticInferenceAccelerator
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.