aws_sdk_deadline/client/delete_limit.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 [`DeleteLimit`](crate::operation::delete_limit::builders::DeleteLimitFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`farm_id(impl Into<String>)`](crate::operation::delete_limit::builders::DeleteLimitFluentBuilder::farm_id) / [`set_farm_id(Option<String>)`](crate::operation::delete_limit::builders::DeleteLimitFluentBuilder::set_farm_id):<br>required: **true**<br><p>The unique identifier of the farm that contains the limit to delete.</p><br>
7 /// - [`limit_id(impl Into<String>)`](crate::operation::delete_limit::builders::DeleteLimitFluentBuilder::limit_id) / [`set_limit_id(Option<String>)`](crate::operation::delete_limit::builders::DeleteLimitFluentBuilder::set_limit_id):<br>required: **true**<br><p>The unique identifier of the limit to delete.</p><br>
8 /// - On success, responds with [`DeleteLimitOutput`](crate::operation::delete_limit::DeleteLimitOutput)
9 /// - On failure, responds with [`SdkError<DeleteLimitError>`](crate::operation::delete_limit::DeleteLimitError)
10 pub fn delete_limit(&self) -> crate::operation::delete_limit::builders::DeleteLimitFluentBuilder {
11 crate::operation::delete_limit::builders::DeleteLimitFluentBuilder::new(self.handle.clone())
12 }
13}