aws_sdk_robomaker/client/delete_robot.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 [`DeleteRobot`](crate::operation::delete_robot::builders::DeleteRobotFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`robot(impl Into<String>)`](crate::operation::delete_robot::builders::DeleteRobotFluentBuilder::robot) / [`set_robot(Option<String>)`](crate::operation::delete_robot::builders::DeleteRobotFluentBuilder::set_robot):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the robot.</p><br>
7 /// - On success, responds with [`DeleteRobotOutput`](crate::operation::delete_robot::DeleteRobotOutput)
8 /// - On failure, responds with [`SdkError<DeleteRobotError>`](crate::operation::delete_robot::DeleteRobotError)
9 #[deprecated(
10 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."
11 )]
12 pub fn delete_robot(&self) -> crate::operation::delete_robot::builders::DeleteRobotFluentBuilder {
13 crate::operation::delete_robot::builders::DeleteRobotFluentBuilder::new(self.handle.clone())
14 }
15}