aws_sdk_robomaker/client/describe_deployment_job.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeDeploymentJob`](crate::operation::describe_deployment_job::builders::DescribeDeploymentJobFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`job(impl Into<String>)`](crate::operation::describe_deployment_job::builders::DescribeDeploymentJobFluentBuilder::job) / [`set_job(Option<String>)`](crate::operation::describe_deployment_job::builders::DescribeDeploymentJobFluentBuilder::set_job):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the deployment job.</p><br>
7 /// - On success, responds with [`DescribeDeploymentJobOutput`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput) with field(s):
8 /// - [`arn(Option<String>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::arn): <p>The Amazon Resource Name (ARN) of the deployment job.</p>
9 /// - [`fleet(Option<String>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::fleet): <p>The Amazon Resource Name (ARN) of the fleet.</p>
10 /// - [`status(Option<DeploymentStatus>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::status): <p>The status of the deployment job.</p>
11 /// - [`deployment_config(Option<DeploymentConfig>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::deployment_config): <p>The deployment configuration.</p>
12 /// - [`deployment_application_configs(Option<Vec::<DeploymentApplicationConfig>>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::deployment_application_configs): <p>The deployment application configuration.</p>
13 /// - [`failure_reason(Option<String>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::failure_reason): <p>A short description of the reason why the deployment job failed.</p>
14 /// - [`failure_code(Option<DeploymentJobErrorCode>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::failure_code): <p>The deployment job failure code.</p>
15 /// - [`created_at(Option<DateTime>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::created_at): <p>The time, in milliseconds since the epoch, when the deployment job was created.</p>
16 /// - [`robot_deployment_summary(Option<Vec::<RobotDeployment>>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::robot_deployment_summary): <p>A list of robot deployment summaries.</p>
17 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_deployment_job::DescribeDeploymentJobOutput::tags): <p>The list of all tags added to the specified deployment job.</p>
18 /// - On failure, responds with [`SdkError<DescribeDeploymentJobError>`](crate::operation::describe_deployment_job::DescribeDeploymentJobError)
19 #[deprecated(
20 note = "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html."
21 )]
22 pub fn describe_deployment_job(&self) -> crate::operation::describe_deployment_job::builders::DescribeDeploymentJobFluentBuilder {
23 crate::operation::describe_deployment_job::builders::DescribeDeploymentJobFluentBuilder::new(self.handle.clone())
24 }
25}