aws_sdk_robomaker/client/describe_fleet.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 [`DescribeFleet`](crate::operation::describe_fleet::builders::DescribeFleetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`fleet(impl Into<String>)`](crate::operation::describe_fleet::builders::DescribeFleetFluentBuilder::fleet) / [`set_fleet(Option<String>)`](crate::operation::describe_fleet::builders::DescribeFleetFluentBuilder::set_fleet):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the fleet.</p><br>
7 /// - On success, responds with [`DescribeFleetOutput`](crate::operation::describe_fleet::DescribeFleetOutput) with field(s):
8 /// - [`name(Option<String>)`](crate::operation::describe_fleet::DescribeFleetOutput::name): <p>The name of the fleet.</p>
9 /// - [`arn(Option<String>)`](crate::operation::describe_fleet::DescribeFleetOutput::arn): <p>The Amazon Resource Name (ARN) of the fleet.</p>
10 /// - [`robots(Option<Vec::<Robot>>)`](crate::operation::describe_fleet::DescribeFleetOutput::robots): <p>A list of robots.</p>
11 /// - [`created_at(Option<DateTime>)`](crate::operation::describe_fleet::DescribeFleetOutput::created_at): <p>The time, in milliseconds since the epoch, when the fleet was created.</p>
12 /// - [`last_deployment_status(Option<DeploymentStatus>)`](crate::operation::describe_fleet::DescribeFleetOutput::last_deployment_status): <p>The status of the last deployment.</p>
13 /// - [`last_deployment_job(Option<String>)`](crate::operation::describe_fleet::DescribeFleetOutput::last_deployment_job): <p>The Amazon Resource Name (ARN) of the last deployment job.</p>
14 /// - [`last_deployment_time(Option<DateTime>)`](crate::operation::describe_fleet::DescribeFleetOutput::last_deployment_time): <p>The time of the last deployment.</p>
15 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_fleet::DescribeFleetOutput::tags): <p>The list of all tags added to the specified fleet.</p>
16 /// - On failure, responds with [`SdkError<DescribeFleetError>`](crate::operation::describe_fleet::DescribeFleetError)
17 #[deprecated(
18 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."
19 )]
20 pub fn describe_fleet(&self) -> crate::operation::describe_fleet::builders::DescribeFleetFluentBuilder {
21 crate::operation::describe_fleet::builders::DescribeFleetFluentBuilder::new(self.handle.clone())
22 }
23}