#[non_exhaustive]pub struct InferenceComponentSummary {
pub creation_time: Option<DateTime>,
pub inference_component_arn: Option<String>,
pub inference_component_name: Option<String>,
pub endpoint_arn: Option<String>,
pub endpoint_name: Option<String>,
pub variant_name: Option<String>,
pub inference_component_status: Option<InferenceComponentStatus>,
pub last_modified_time: Option<DateTime>,
}
Expand description
A summary of the properties of an inference component.
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.creation_time: Option<DateTime>
The time when the inference component was created.
inference_component_arn: Option<String>
The Amazon Resource Name (ARN) of the inference component.
inference_component_name: Option<String>
The name of the inference component.
endpoint_arn: Option<String>
The Amazon Resource Name (ARN) of the endpoint that hosts the inference component.
endpoint_name: Option<String>
The name of the endpoint that hosts the inference component.
variant_name: Option<String>
The name of the production variant that hosts the inference component.
inference_component_status: Option<InferenceComponentStatus>
The status of the inference component.
last_modified_time: Option<DateTime>
The time when the inference component was last updated.
Implementations§
source§impl InferenceComponentSummary
impl InferenceComponentSummary
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time when the inference component was created.
sourcepub fn inference_component_arn(&self) -> Option<&str>
pub fn inference_component_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the inference component.
sourcepub fn inference_component_name(&self) -> Option<&str>
pub fn inference_component_name(&self) -> Option<&str>
The name of the inference component.
sourcepub fn endpoint_arn(&self) -> Option<&str>
pub fn endpoint_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the endpoint that hosts the inference component.
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
The name of the endpoint that hosts the inference component.
sourcepub fn variant_name(&self) -> Option<&str>
pub fn variant_name(&self) -> Option<&str>
The name of the production variant that hosts the inference component.
sourcepub fn inference_component_status(&self) -> Option<&InferenceComponentStatus>
pub fn inference_component_status(&self) -> Option<&InferenceComponentStatus>
The status of the inference component.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The time when the inference component was last updated.
source§impl InferenceComponentSummary
impl InferenceComponentSummary
sourcepub fn builder() -> InferenceComponentSummaryBuilder
pub fn builder() -> InferenceComponentSummaryBuilder
Creates a new builder-style object to manufacture InferenceComponentSummary
.
Trait Implementations§
source§impl Clone for InferenceComponentSummary
impl Clone for InferenceComponentSummary
source§fn clone(&self) -> InferenceComponentSummary
fn clone(&self) -> InferenceComponentSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InferenceComponentSummary
impl Debug for InferenceComponentSummary
source§impl PartialEq for InferenceComponentSummary
impl PartialEq for InferenceComponentSummary
source§fn eq(&self, other: &InferenceComponentSummary) -> bool
fn eq(&self, other: &InferenceComponentSummary) -> bool
self
and other
values to be equal, and is used
by ==
.