1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeEdgeDeploymentPlan`](crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`edge_deployment_plan_name(impl Into<String>)`](crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder::edge_deployment_plan_name) / [`set_edge_deployment_plan_name(Option<String>)`](crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder::set_edge_deployment_plan_name): <p>The name of the deployment plan to describe.</p>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder::set_next_token): <p>If the edge deployment plan has enough stages to require tokening, then this is the response from the last list of stages returned.</p>
    ///   - [`max_results(i32)`](crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder::set_max_results): <p>The maximum number of results to select (50 by default).</p>
    /// - On success, responds with [`DescribeEdgeDeploymentPlanOutput`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput) with field(s):
    ///   - [`edge_deployment_plan_arn(Option<String>)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::edge_deployment_plan_arn): <p>The ARN of edge deployment plan.</p>
    ///   - [`edge_deployment_plan_name(Option<String>)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::edge_deployment_plan_name): <p>The name of the edge deployment plan.</p>
    ///   - [`model_configs(Option<Vec<EdgeDeploymentModelConfig>>)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::model_configs): <p>List of models associated with the edge deployment plan.</p>
    ///   - [`device_fleet_name(Option<String>)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::device_fleet_name): <p>The device fleet used for this edge deployment plan.</p>
    ///   - [`edge_deployment_success(i32)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::edge_deployment_success): <p>The number of edge devices with the successful deployment.</p>
    ///   - [`edge_deployment_pending(i32)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::edge_deployment_pending): <p>The number of edge devices yet to pick up deployment, or in progress.</p>
    ///   - [`edge_deployment_failed(i32)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::edge_deployment_failed): <p>The number of edge devices that failed the deployment.</p>
    ///   - [`stages(Option<Vec<DeploymentStageStatusSummary>>)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::stages): <p>List of stages in the edge deployment plan.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::next_token): <p>Token to use when calling the next set of stages in the edge deployment plan.</p>
    ///   - [`creation_time(Option<DateTime>)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::creation_time): <p>The time when the edge deployment plan was created.</p>
    ///   - [`last_modified_time(Option<DateTime>)`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanOutput::last_modified_time): <p>The time when the edge deployment plan was last updated.</p>
    /// - On failure, responds with [`SdkError<DescribeEdgeDeploymentPlanError>`](crate::operation::describe_edge_deployment_plan::DescribeEdgeDeploymentPlanError)
    pub fn describe_edge_deployment_plan(
        &self,
    ) -> crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder {
        crate::operation::describe_edge_deployment_plan::builders::DescribeEdgeDeploymentPlanFluentBuilder::new(self.handle.clone())
    }
}