// 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:
/// - [`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):<br>required: **true**<br><p>The unique identifier of the glossary in which to create the term.</p><br>
/// - [`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):<br>required: **true**<br><p>The name of the glossary term.</p><br>
/// - [`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):<br>required: **false**<br><p>A short description of the glossary term.</p><br>
/// - [`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):<br>required: **false**<br><p>A long description of the glossary term.</p><br>
/// - [`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):<br>required: **false**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p><br>
/// - 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 unique identifier of the glossary term.</p>
/// - [`glossary_id(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::glossary_id): <p>The unique identifier of the glossary containing this term.</p>
/// - [`name(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::name): <p>The name of the glossary term.</p>
/// - [`short_description(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::short_description): <p>The short description of the glossary term.</p>
/// - [`long_description(Option<String>)`](crate::operation::create_glossary_term::CreateGlossaryTermOutput::long_description): <p>The long description of the 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())
}
}