Struct aws_sdk_sagemaker::types::EdgeDeploymentStatus
source · #[non_exhaustive]pub struct EdgeDeploymentStatus {
pub stage_status: Option<StageStatus>,
pub edge_deployment_success_in_stage: Option<i32>,
pub edge_deployment_pending_in_stage: Option<i32>,
pub edge_deployment_failed_in_stage: Option<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: Option<i32>
The number of edge devices with the successful deployment in the current stage.
edge_deployment_pending_in_stage: Option<i32>
The number of edge devices yet to pick up the deployment in current stage, or in progress.
edge_deployment_failed_in_stage: Option<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) -> Option<i32>
pub fn edge_deployment_success_in_stage(&self) -> Option<i32>
The number of edge devices with the successful deployment in the current stage.
sourcepub fn edge_deployment_pending_in_stage(&self) -> Option<i32>
pub fn edge_deployment_pending_in_stage(&self) -> Option<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) -> Option<i32>
pub fn edge_deployment_failed_in_stage(&self) -> Option<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 for EdgeDeploymentStatus
impl PartialEq for EdgeDeploymentStatus
impl StructuralPartialEq for EdgeDeploymentStatus
Auto Trait Implementations§
impl Freeze for EdgeDeploymentStatus
impl RefUnwindSafe for EdgeDeploymentStatus
impl Send for EdgeDeploymentStatus
impl Sync for EdgeDeploymentStatus
impl Unpin for EdgeDeploymentStatus
impl UnwindSafe for EdgeDeploymentStatus
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more