// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateTargetDomain`](crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`target_domain_name(impl Into<String>)`](crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder::target_domain_name) / [`set_target_domain_name(Option<String>)`](crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder::set_target_domain_name):<br>required: **true**<br>Domain name of the target domain<br>
/// - [`verification_method(DomainVerificationMethod)`](crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder::verification_method) / [`set_verification_method(Option<DomainVerificationMethod>)`](crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder::set_verification_method):<br>required: **true**<br>Verification method for the target domain<br>
/// - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder::set_tags):<br>required: **false**<br>Tags to associate with the target domain<br>
/// - On success, responds with [`CreateTargetDomainOutput`](crate::operation::create_target_domain::CreateTargetDomainOutput) with field(s):
/// - [`target_domain_id(String)`](crate::operation::create_target_domain::CreateTargetDomainOutput::target_domain_id): Unique identifier of the created target domain
/// - [`domain_name(String)`](crate::operation::create_target_domain::CreateTargetDomainOutput::domain_name): Name of the created target domain
/// - [`verification_status(TargetDomainStatus)`](crate::operation::create_target_domain::CreateTargetDomainOutput::verification_status): Current verification status of the registered target domain
/// - [`verification_details(Option<VerificationDetails>)`](crate::operation::create_target_domain::CreateTargetDomainOutput::verification_details): Verification details to verify registered target domain
/// - [`created_at(Option<DateTime>)`](crate::operation::create_target_domain::CreateTargetDomainOutput::created_at): Timestamp when the target domain was registered
/// - [`verified_at(Option<DateTime>)`](crate::operation::create_target_domain::CreateTargetDomainOutput::verified_at): Timestamp when the target domain was last successfully verified
/// - On failure, responds with [`SdkError<CreateTargetDomainError>`](crate::operation::create_target_domain::CreateTargetDomainError)
pub fn create_target_domain(&self) -> crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder {
crate::operation::create_target_domain::builders::CreateTargetDomainFluentBuilder::new(self.handle.clone())
}
}