// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateGlossaryTerm`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::set_domain_identifier): <p>The ID of the Amazon DataZone domain in which this business glossary term is created.</p>
/// - [`glossary_identifier(impl Into<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::glossary_identifier) / [`set_glossary_identifier(Option<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::set_glossary_identifier): <p>The ID of the business glossary in which this term is created.</p>
/// - [`name(impl Into<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::set_name): <p>The name of this business glossary term.</p>
/// - [`status(GlossaryTermStatus)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::status) / [`set_status(Option<GlossaryTermStatus>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::set_status): <p>The status of this business glossary term.</p>
/// - [`short_description(impl Into<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::short_description) / [`set_short_description(Option<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::set_short_description): <p>The short description of this business glossary term.</p>
/// - [`long_description(impl Into<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::long_description) / [`set_long_description(Option<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::set_long_description): <p>The long description of this business glossary term.</p>
/// - [`term_relations(TermRelations)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::term_relations) / [`set_term_relations(Option<TermRelations>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::set_term_relations): <p>The term relations of this business glossary term.</p>
/// - [`client_token(impl Into<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::set_client_token): <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
/// - On success, responds with [`CreateGlossaryTermOutput`](crate::operation::create_glossary_term::CreateGlossaryTermOutput) with field(s):
/// - [`id(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::id): <p>The ID of this business glossary term.</p>
/// - [`domain_id(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::domain_id): <p>The ID of the Amazon DataZone domain in which this business glossary term is created.</p>
/// - [`glossary_id(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::glossary_id): <p>The ID of the business glossary in which this term is created.</p>
/// - [`name(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::name): <p>The name of this business glossary term.</p>
/// - [`status(Option<GlossaryTermStatus>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::status): <p>The status of this business glossary term.</p>
/// - [`short_description(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::short_description): <p>The short description of this business glossary term.</p>
/// - [`long_description(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::long_description): <p>The long description of this business glossary term.</p>
/// - [`term_relations(Option<TermRelations>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::term_relations): <p>The term relations of this business glossary term.</p>
/// - On failure, responds with [`SdkError<CreateGlossaryTermError>`](crate::operation::create_glossary_term::CreateGlossaryTermError)
pub fn create_glossary_term(&self) -> crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder {
crate::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder::new(self.handle.clone())
}
}