aws_sdk_customerprofiles/client/
delete_domain_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 [`DeleteDomainLayout`](crate::operation::delete_domain_layout::builders::DeleteDomainLayoutFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_name(impl Into<String>)`](crate::operation::delete_domain_layout::builders::DeleteDomainLayoutFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::delete_domain_layout::builders::DeleteDomainLayoutFluentBuilder::set_domain_name):<br>required: **true**<br><p>The unique name of the domain.</p><br>
7    ///   - [`layout_definition_name(impl Into<String>)`](crate::operation::delete_domain_layout::builders::DeleteDomainLayoutFluentBuilder::layout_definition_name) / [`set_layout_definition_name(Option<String>)`](crate::operation::delete_domain_layout::builders::DeleteDomainLayoutFluentBuilder::set_layout_definition_name):<br>required: **true**<br><p>The unique name of the layout.</p><br>
8    /// - On success, responds with [`DeleteDomainLayoutOutput`](crate::operation::delete_domain_layout::DeleteDomainLayoutOutput) with field(s):
9    ///   - [`message(String)`](crate::operation::delete_domain_layout::DeleteDomainLayoutOutput::message): <p>A message that indicates the delete request is done.</p>
10    /// - On failure, responds with [`SdkError<DeleteDomainLayoutError>`](crate::operation::delete_domain_layout::DeleteDomainLayoutError)
11    pub fn delete_domain_layout(&self) -> crate::operation::delete_domain_layout::builders::DeleteDomainLayoutFluentBuilder {
12        crate::operation::delete_domain_layout::builders::DeleteDomainLayoutFluentBuilder::new(self.handle.clone())
13    }
14}