1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteFargateProfile`](crate::operation::delete_fargate_profile::builders::DeleteFargateProfileFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_name(impl Into<String>)`](crate::operation::delete_fargate_profile::builders::DeleteFargateProfileFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::delete_fargate_profile::builders::DeleteFargateProfileFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of your cluster.</p><br>
    ///   - [`fargate_profile_name(impl Into<String>)`](crate::operation::delete_fargate_profile::builders::DeleteFargateProfileFluentBuilder::fargate_profile_name) / [`set_fargate_profile_name(Option<String>)`](crate::operation::delete_fargate_profile::builders::DeleteFargateProfileFluentBuilder::set_fargate_profile_name):<br>required: **true**<br><p>The name of the Fargate profile to delete.</p><br>
    /// - On success, responds with [`DeleteFargateProfileOutput`](crate::operation::delete_fargate_profile::DeleteFargateProfileOutput) with field(s):
    ///   - [`fargate_profile(Option<FargateProfile>)`](crate::operation::delete_fargate_profile::DeleteFargateProfileOutput::fargate_profile): <p>The deleted Fargate profile.</p>
    /// - On failure, responds with [`SdkError<DeleteFargateProfileError>`](crate::operation::delete_fargate_profile::DeleteFargateProfileError)
    pub fn delete_fargate_profile(&self) -> crate::operation::delete_fargate_profile::builders::DeleteFargateProfileFluentBuilder {
        crate::operation::delete_fargate_profile::builders::DeleteFargateProfileFluentBuilder::new(self.handle.clone())
    }
}