aws-sdk-glue 1.163.0

AWS SDK for AWS Glue
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateGlossaryTerm`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identifier(impl Into<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::set_identifier):<br>required: **true**<br><p>The unique identifier of the glossary term to update.</p><br>
    ///   - [`name(impl Into<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::set_name):<br>required: **false**<br><p>The updated name of the glossary term.</p><br>
    ///   - [`short_description(impl Into<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::short_description) / [`set_short_description(Option<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::set_short_description):<br>required: **false**<br><p>The updated short description of the glossary term.</p><br>
    ///   - [`long_description(impl Into<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::long_description) / [`set_long_description(Option<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::set_long_description):<br>required: **false**<br><p>The updated long description of the glossary term.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::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 [`UpdateGlossaryTermOutput`](crate::operation::update_glossary_term::UpdateGlossaryTermOutput) with field(s):
    ///   - [`id(Option<String>)`](crate::operation::update_glossary_term::UpdateGlossaryTermOutput::id): <p>The unique identifier of the glossary term.</p>
    ///   - [`glossary_id(Option<String>)`](crate::operation::update_glossary_term::UpdateGlossaryTermOutput::glossary_id): <p>The unique identifier of the glossary containing this term.</p>
    ///   - [`name(Option<String>)`](crate::operation::update_glossary_term::UpdateGlossaryTermOutput::name): <p>The name of the glossary term.</p>
    ///   - [`short_description(Option<String>)`](crate::operation::update_glossary_term::UpdateGlossaryTermOutput::short_description): <p>The short description of the glossary term.</p>
    ///   - [`long_description(Option<String>)`](crate::operation::update_glossary_term::UpdateGlossaryTermOutput::long_description): <p>The long description of the glossary term.</p>
    /// - On failure, responds with [`SdkError<UpdateGlossaryTermError>`](crate::operation::update_glossary_term::UpdateGlossaryTermError)
    pub fn update_glossary_term(&self) -> crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder {
        crate::operation::update_glossary_term::builders::UpdateGlossaryTermFluentBuilder::new(self.handle.clone())
    }
}