aws_sdk_glue/client/
delete_usage_profile.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteUsageProfile`](crate::operation::delete_usage_profile::builders::DeleteUsageProfileFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::delete_usage_profile::builders::DeleteUsageProfileFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_usage_profile::builders::DeleteUsageProfileFluentBuilder::set_name):<br>required: **true**<br><p>The name of the usage profile to delete.</p><br>
    /// - On success, responds with [`DeleteUsageProfileOutput`](crate::operation::delete_usage_profile::DeleteUsageProfileOutput)
    /// - On failure, responds with [`SdkError<DeleteUsageProfileError>`](crate::operation::delete_usage_profile::DeleteUsageProfileError)
    pub fn delete_usage_profile(&self) -> crate::operation::delete_usage_profile::builders::DeleteUsageProfileFluentBuilder {
        crate::operation::delete_usage_profile::builders::DeleteUsageProfileFluentBuilder::new(self.handle.clone())
    }
}