aws-sdk-glue 1.163.0

AWS SDK for AWS Glue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateGlossary`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identifier(impl Into<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::set_identifier):<br>required: **true**<br><p>The unique identifier of the glossary to update.</p><br>
    ///   - [`name(impl Into<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::set_name):<br>required: **false**<br><p>The updated name of the glossary.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::set_description):<br>required: **false**<br><p>The updated description of the glossary.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::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 [`UpdateGlossaryOutput`](crate::operation::update_glossary::UpdateGlossaryOutput) with field(s):
    ///   - [`id(Option<String>)`](crate::operation::update_glossary::UpdateGlossaryOutput::id): <p>The unique identifier of the glossary.</p>
    ///   - [`name(Option<String>)`](crate::operation::update_glossary::UpdateGlossaryOutput::name): <p>The name of the glossary.</p>
    ///   - [`description(Option<String>)`](crate::operation::update_glossary::UpdateGlossaryOutput::description): <p>The description of the glossary.</p>
    /// - On failure, responds with [`SdkError<UpdateGlossaryError>`](crate::operation::update_glossary::UpdateGlossaryError)
    pub fn update_glossary(&self) -> crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder {
        crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::new(self.handle.clone())
    }
}