aws_sdk_sagemaker/client/
delete_compute_quota.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 [`DeleteComputeQuota`](crate::operation::delete_compute_quota::builders::DeleteComputeQuotaFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`compute_quota_id(impl Into<String>)`](crate::operation::delete_compute_quota::builders::DeleteComputeQuotaFluentBuilder::compute_quota_id) / [`set_compute_quota_id(Option<String>)`](crate::operation::delete_compute_quota::builders::DeleteComputeQuotaFluentBuilder::set_compute_quota_id):<br>required: **true**<br><p>ID of the compute allocation definition.</p><br>
7    /// - On success, responds with [`DeleteComputeQuotaOutput`](crate::operation::delete_compute_quota::DeleteComputeQuotaOutput)
8    /// - On failure, responds with [`SdkError<DeleteComputeQuotaError>`](crate::operation::delete_compute_quota::DeleteComputeQuotaError)
9    pub fn delete_compute_quota(&self) -> crate::operation::delete_compute_quota::builders::DeleteComputeQuotaFluentBuilder {
10        crate::operation::delete_compute_quota::builders::DeleteComputeQuotaFluentBuilder::new(self.handle.clone())
11    }
12}