aws_sdk_connectcases/client/delete_layout.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 [`DeleteLayout`](crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`domain_id(impl Into<String>)`](crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder::domain_id) / [`set_domain_id(Option<String>)`](crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder::set_domain_id):<br>required: **true**<br><p>The unique identifier of the Cases domain.</p><br>
7 /// - [`layout_id(impl Into<String>)`](crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder::layout_id) / [`set_layout_id(Option<String>)`](crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder::set_layout_id):<br>required: **true**<br><p>The unique identifier of the layout.</p><br>
8 /// - On success, responds with [`DeleteLayoutOutput`](crate::operation::delete_layout::DeleteLayoutOutput)
9 /// - On failure, responds with [`SdkError<DeleteLayoutError>`](crate::operation::delete_layout::DeleteLayoutError)
10 pub fn delete_layout(&self) -> crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder {
11 crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder::new(self.handle.clone())
12 }
13}