#[non_exhaustive]pub struct EdgeDeploymentPlanSummary { /* private fields */ }
Expand description
Contains information summarizing an edge deployment plan.
Implementations§
source§impl EdgeDeploymentPlanSummary
impl EdgeDeploymentPlanSummary
sourcepub fn edge_deployment_plan_arn(&self) -> Option<&str>
pub fn edge_deployment_plan_arn(&self) -> Option<&str>
The ARN of the edge deployment plan.
sourcepub fn edge_deployment_plan_name(&self) -> Option<&str>
pub fn edge_deployment_plan_name(&self) -> Option<&str>
The name of the edge deployment plan.
sourcepub fn device_fleet_name(&self) -> Option<&str>
pub fn device_fleet_name(&self) -> Option<&str>
The name of the device fleet used for the deployment.
sourcepub fn edge_deployment_success(&self) -> i32
pub fn edge_deployment_success(&self) -> i32
The number of edge devices with the successful deployment.
sourcepub fn edge_deployment_pending(&self) -> i32
pub fn edge_deployment_pending(&self) -> i32
The number of edge devices yet to pick up the deployment, or in progress.
sourcepub fn edge_deployment_failed(&self) -> i32
pub fn edge_deployment_failed(&self) -> i32
The number of edge devices that failed the deployment.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time when the edge deployment plan was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The time when the edge deployment plan was last updated.
source§impl EdgeDeploymentPlanSummary
impl EdgeDeploymentPlanSummary
sourcepub fn builder() -> EdgeDeploymentPlanSummaryBuilder
pub fn builder() -> EdgeDeploymentPlanSummaryBuilder
Creates a new builder-style object to manufacture EdgeDeploymentPlanSummary
.
Trait Implementations§
source§impl Clone for EdgeDeploymentPlanSummary
impl Clone for EdgeDeploymentPlanSummary
source§fn clone(&self) -> EdgeDeploymentPlanSummary
fn clone(&self) -> EdgeDeploymentPlanSummary
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 EdgeDeploymentPlanSummary
impl Debug for EdgeDeploymentPlanSummary
source§impl PartialEq<EdgeDeploymentPlanSummary> for EdgeDeploymentPlanSummary
impl PartialEq<EdgeDeploymentPlanSummary> for EdgeDeploymentPlanSummary
source§fn eq(&self, other: &EdgeDeploymentPlanSummary) -> bool
fn eq(&self, other: &EdgeDeploymentPlanSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.