Struct aws_sdk_sagemaker::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput
source · #[non_exhaustive]pub struct DescribeEdgeDeploymentPlanOutput { /* private fields */ }
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) -> Option<&[EdgeDeploymentModelConfig]>
pub fn model_configs(&self) -> Option<&[EdgeDeploymentModelConfig]>
List of models associated with the edge deployment plan.
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) -> 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 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 stages(&self) -> Option<&[DeploymentStageStatusSummary]>
pub fn stages(&self) -> Option<&[DeploymentStageStatusSummary]>
List of stages in the edge deployment plan.
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
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 PartialEq<DescribeEdgeDeploymentPlanOutput> for DescribeEdgeDeploymentPlanOutput
impl PartialEq<DescribeEdgeDeploymentPlanOutput> for DescribeEdgeDeploymentPlanOutput
source§fn eq(&self, other: &DescribeEdgeDeploymentPlanOutput) -> bool
fn eq(&self, other: &DescribeEdgeDeploymentPlanOutput) -> bool
This method tests for
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>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeEdgeDeploymentPlanOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeEdgeDeploymentPlanOutput
impl Send for DescribeEdgeDeploymentPlanOutput
impl Sync for DescribeEdgeDeploymentPlanOutput
impl Unpin for DescribeEdgeDeploymentPlanOutput
impl UnwindSafe for DescribeEdgeDeploymentPlanOutput
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
Mutably borrows from an owned value. Read more