aws_sdk_appsync/client/
delete_domain_name.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 [`DeleteDomainName`](crate::operation::delete_domain_name::builders::DeleteDomainNameFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_name(impl Into<String>)`](crate::operation::delete_domain_name::builders::DeleteDomainNameFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::delete_domain_name::builders::DeleteDomainNameFluentBuilder::set_domain_name):<br>required: **true**<br><p>The domain name.</p><br>
7    /// - On success, responds with [`DeleteDomainNameOutput`](crate::operation::delete_domain_name::DeleteDomainNameOutput)
8    /// - On failure, responds with [`SdkError<DeleteDomainNameError>`](crate::operation::delete_domain_name::DeleteDomainNameError)
9    pub fn delete_domain_name(&self) -> crate::operation::delete_domain_name::builders::DeleteDomainNameFluentBuilder {
10        crate::operation::delete_domain_name::builders::DeleteDomainNameFluentBuilder::new(self.handle.clone())
11    }
12}