aws_sdk_connectcases/client/
delete_layout.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteLayout`](crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DeleteLayoutOutput`](crate::operation::delete_layout::DeleteLayoutOutput)
    /// - On failure, responds with [`SdkError<DeleteLayoutError>`](crate::operation::delete_layout::DeleteLayoutError)
    pub fn delete_layout(&self) -> crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder {
        crate::operation::delete_layout::builders::DeleteLayoutFluentBuilder::new(self.handle.clone())
    }
}