Struct aws_sdk_sagemaker::model::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
sourceimpl 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.
sourceimpl EdgeDeploymentStatus
impl EdgeDeploymentStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EdgeDeploymentStatus
.
Trait Implementations
sourceimpl Clone for EdgeDeploymentStatus
impl Clone for EdgeDeploymentStatus
sourcefn clone(&self) -> EdgeDeploymentStatus
fn clone(&self) -> EdgeDeploymentStatus
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 EdgeDeploymentStatus
impl Debug for EdgeDeploymentStatus
sourceimpl PartialEq<EdgeDeploymentStatus> for EdgeDeploymentStatus
impl PartialEq<EdgeDeploymentStatus> for EdgeDeploymentStatus
sourcefn eq(&self, other: &EdgeDeploymentStatus) -> bool
fn eq(&self, other: &EdgeDeploymentStatus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EdgeDeploymentStatus) -> bool
fn ne(&self, other: &EdgeDeploymentStatus) -> bool
This method tests for !=
.
impl StructuralPartialEq for EdgeDeploymentStatus
Auto Trait Implementations
impl RefUnwindSafe for EdgeDeploymentStatus
impl Send for EdgeDeploymentStatus
impl Sync for EdgeDeploymentStatus
impl Unpin for EdgeDeploymentStatus
impl UnwindSafe for EdgeDeploymentStatus
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