Struct aws_sdk_sagemaker::types::EdgeDeploymentStatus
source · #[non_exhaustive]pub struct EdgeDeploymentStatus {
pub stage_status: Option<StageStatus>,
pub edge_deployment_success_in_stage: i32,
pub edge_deployment_pending_in_stage: i32,
pub edge_deployment_failed_in_stage: i32,
pub edge_deployment_status_message: Option<String>,
pub edge_deployment_stage_start_time: Option<DateTime>,
}
Expand description
Contains information summarizing the deployment stage results.
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.stage_status: Option<StageStatus>
The general status of the current stage.
edge_deployment_success_in_stage: i32
The number of edge devices with the successful deployment in the current stage.
edge_deployment_pending_in_stage: i32
The number of edge devices yet to pick up the deployment in current stage, or in progress.
edge_deployment_failed_in_stage: i32
The number of edge devices that failed the deployment in current stage.
edge_deployment_status_message: Option<String>
A detailed message about deployment status in current stage.
edge_deployment_stage_start_time: Option<DateTime>
The time when the deployment API started.
Implementations§
source§impl EdgeDeploymentStatus
impl EdgeDeploymentStatus
sourcepub fn stage_status(&self) -> Option<&StageStatus>
pub fn stage_status(&self) -> Option<&StageStatus>
The general status of the current stage.
sourcepub fn edge_deployment_success_in_stage(&self) -> i32
pub fn edge_deployment_success_in_stage(&self) -> i32
The number of edge devices with the successful deployment in the current stage.
sourcepub fn edge_deployment_pending_in_stage(&self) -> i32
pub fn edge_deployment_pending_in_stage(&self) -> i32
The number of edge devices yet to pick up the deployment in current stage, or in progress.
sourcepub fn edge_deployment_failed_in_stage(&self) -> i32
pub fn edge_deployment_failed_in_stage(&self) -> i32
The number of edge devices that failed the deployment in current stage.
sourcepub fn edge_deployment_status_message(&self) -> Option<&str>
pub fn edge_deployment_status_message(&self) -> Option<&str>
A detailed message about deployment status in current stage.
sourcepub fn edge_deployment_stage_start_time(&self) -> Option<&DateTime>
pub fn edge_deployment_stage_start_time(&self) -> Option<&DateTime>
The time when the deployment API started.
source§impl EdgeDeploymentStatus
impl EdgeDeploymentStatus
sourcepub fn builder() -> EdgeDeploymentStatusBuilder
pub fn builder() -> EdgeDeploymentStatusBuilder
Creates a new builder-style object to manufacture EdgeDeploymentStatus
.
Trait Implementations§
source§impl Clone for EdgeDeploymentStatus
impl Clone for EdgeDeploymentStatus
source§fn clone(&self) -> EdgeDeploymentStatus
fn clone(&self) -> EdgeDeploymentStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EdgeDeploymentStatus
impl Debug for EdgeDeploymentStatus
source§impl PartialEq<EdgeDeploymentStatus> for EdgeDeploymentStatus
impl PartialEq<EdgeDeploymentStatus> for EdgeDeploymentStatus
source§fn eq(&self, other: &EdgeDeploymentStatus) -> bool
fn eq(&self, other: &EdgeDeploymentStatus) -> bool
self
and other
values to be equal, and is used
by ==
.