aws_sdk_sagemaker/client/delete_device_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 [`DeleteDeviceFleet`](crate::operation::delete_device_fleet::builders::DeleteDeviceFleetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`device_fleet_name(impl Into<String>)`](crate::operation::delete_device_fleet::builders::DeleteDeviceFleetFluentBuilder::device_fleet_name) / [`set_device_fleet_name(Option<String>)`](crate::operation::delete_device_fleet::builders::DeleteDeviceFleetFluentBuilder::set_device_fleet_name):<br>required: **true**<br><p>The name of the fleet to delete.</p><br>
7 /// - On success, responds with [`DeleteDeviceFleetOutput`](crate::operation::delete_device_fleet::DeleteDeviceFleetOutput)
8 /// - On failure, responds with [`SdkError<DeleteDeviceFleetError>`](crate::operation::delete_device_fleet::DeleteDeviceFleetError)
9 pub fn delete_device_fleet(&self) -> crate::operation::delete_device_fleet::builders::DeleteDeviceFleetFluentBuilder {
10 crate::operation::delete_device_fleet::builders::DeleteDeviceFleetFluentBuilder::new(self.handle.clone())
11 }
12}