Struct aws_sdk_sagemaker::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput
source · #[non_exhaustive]pub struct DescribeEdgeDeploymentPlanOutput {
pub edge_deployment_plan_arn: Option<String>,
pub edge_deployment_plan_name: Option<String>,
pub model_configs: Option<Vec<EdgeDeploymentModelConfig>>,
pub device_fleet_name: Option<String>,
pub edge_deployment_success: Option<i32>,
pub edge_deployment_pending: Option<i32>,
pub edge_deployment_failed: Option<i32>,
pub stages: Option<Vec<DeploymentStageStatusSummary>>,
pub next_token: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
/* private fields */
}
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.edge_deployment_plan_arn: Option<String>
The ARN of edge deployment plan.
edge_deployment_plan_name: Option<String>
The name of the edge deployment plan.
model_configs: Option<Vec<EdgeDeploymentModelConfig>>
List of models associated with the edge deployment plan.
device_fleet_name: Option<String>
The device fleet used for this edge deployment plan.
edge_deployment_success: Option<i32>
The number of edge devices with the successful deployment.
edge_deployment_pending: Option<i32>
The number of edge devices yet to pick up deployment, or in progress.
edge_deployment_failed: Option<i32>
The number of edge devices that failed the deployment.
stages: Option<Vec<DeploymentStageStatusSummary>>
List of stages in the edge deployment plan.
next_token: Option<String>
Token to use when calling the next set of stages in the edge deployment plan.
creation_time: Option<DateTime>
The time when the edge deployment plan was created.
last_modified_time: Option<DateTime>
The time when the edge deployment plan was last updated.
Implementations§
source§impl DescribeEdgeDeploymentPlanOutput
impl DescribeEdgeDeploymentPlanOutput
sourcepub fn edge_deployment_plan_arn(&self) -> Option<&str>
pub fn edge_deployment_plan_arn(&self) -> Option<&str>
The ARN of 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 model_configs(&self) -> &[EdgeDeploymentModelConfig]
pub fn model_configs(&self) -> &[EdgeDeploymentModelConfig]
List of models associated with the edge deployment plan.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .model_configs.is_none()
.
sourcepub fn device_fleet_name(&self) -> Option<&str>
pub fn device_fleet_name(&self) -> Option<&str>
The device fleet used for this edge deployment plan.
sourcepub fn edge_deployment_success(&self) -> Option<i32>
pub fn edge_deployment_success(&self) -> Option<i32>
The number of edge devices with the successful deployment.
sourcepub fn edge_deployment_pending(&self) -> Option<i32>
pub fn edge_deployment_pending(&self) -> Option<i32>
The number of edge devices yet to pick up deployment, or in progress.
sourcepub fn edge_deployment_failed(&self) -> Option<i32>
pub fn edge_deployment_failed(&self) -> Option<i32>
The number of edge devices that failed the deployment.
sourcepub fn stages(&self) -> &[DeploymentStageStatusSummary]
pub fn stages(&self) -> &[DeploymentStageStatusSummary]
List of stages in the edge deployment plan.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .stages.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Token to use when calling the next set of stages in the edge deployment plan.
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 DescribeEdgeDeploymentPlanOutput
impl DescribeEdgeDeploymentPlanOutput
sourcepub fn builder() -> DescribeEdgeDeploymentPlanOutputBuilder
pub fn builder() -> DescribeEdgeDeploymentPlanOutputBuilder
Creates a new builder-style object to manufacture DescribeEdgeDeploymentPlanOutput
.
Trait Implementations§
source§impl Clone for DescribeEdgeDeploymentPlanOutput
impl Clone for DescribeEdgeDeploymentPlanOutput
source§fn clone(&self) -> DescribeEdgeDeploymentPlanOutput
fn clone(&self) -> DescribeEdgeDeploymentPlanOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeEdgeDeploymentPlanOutput
impl PartialEq for DescribeEdgeDeploymentPlanOutput
source§fn eq(&self, other: &DescribeEdgeDeploymentPlanOutput) -> bool
fn eq(&self, other: &DescribeEdgeDeploymentPlanOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeEdgeDeploymentPlanOutput
impl RequestId for DescribeEdgeDeploymentPlanOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.