aws_sdk_connectcases/client/update_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 [`UpdateLayout`](crate::operation::update_layout::builders::UpdateLayoutFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`domain_id(impl Into<String>)`](crate::operation::update_layout::builders::UpdateLayoutFluentBuilder::domain_id) / [`set_domain_id(Option<String>)`](crate::operation::update_layout::builders::UpdateLayoutFluentBuilder::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::update_layout::builders::UpdateLayoutFluentBuilder::layout_id) / [`set_layout_id(Option<String>)`](crate::operation::update_layout::builders::UpdateLayoutFluentBuilder::set_layout_id):<br>required: **true**<br><p>The unique identifier of the layout.</p><br>
8 /// - [`name(impl Into<String>)`](crate::operation::update_layout::builders::UpdateLayoutFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_layout::builders::UpdateLayoutFluentBuilder::set_name):<br>required: **false**<br><p>The name of the layout. It must be unique per domain.</p><br>
9 /// - [`content(LayoutContent)`](crate::operation::update_layout::builders::UpdateLayoutFluentBuilder::content) / [`set_content(Option<LayoutContent>)`](crate::operation::update_layout::builders::UpdateLayoutFluentBuilder::set_content):<br>required: **false**<br><p>Information about which fields will be present in the layout, the order of the fields.</p><br>
10 /// - On success, responds with [`UpdateLayoutOutput`](crate::operation::update_layout::UpdateLayoutOutput)
11 /// - On failure, responds with [`SdkError<UpdateLayoutError>`](crate::operation::update_layout::UpdateLayoutError)
12 pub fn update_layout(&self) -> crate::operation::update_layout::builders::UpdateLayoutFluentBuilder {
13 crate::operation::update_layout::builders::UpdateLayoutFluentBuilder::new(self.handle.clone())
14 }
15}