aws_sdk_gamelift/client/delete_container_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 [`DeleteContainerFleet`](crate::operation::delete_container_fleet::builders::DeleteContainerFleetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`fleet_id(impl Into<String>)`](crate::operation::delete_container_fleet::builders::DeleteContainerFleetFluentBuilder::fleet_id) / [`set_fleet_id(Option<String>)`](crate::operation::delete_container_fleet::builders::DeleteContainerFleetFluentBuilder::set_fleet_id):<br>required: **true**<br><p>A unique identifier for the container fleet to delete. You can use either the fleet ID or ARN value.</p><br>
7 /// - On success, responds with [`DeleteContainerFleetOutput`](crate::operation::delete_container_fleet::DeleteContainerFleetOutput)
8 /// - On failure, responds with [`SdkError<DeleteContainerFleetError>`](crate::operation::delete_container_fleet::DeleteContainerFleetError)
9 pub fn delete_container_fleet(&self) -> crate::operation::delete_container_fleet::builders::DeleteContainerFleetFluentBuilder {
10 crate::operation::delete_container_fleet::builders::DeleteContainerFleetFluentBuilder::new(self.handle.clone())
11 }
12}