aws_sdk_datazone/client/update_glossary.rs
// 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:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon DataZone domain in which a business glossary is to be updated.</p><br>
/// - [`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 identifier of the business glossary to be updated.</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 name to be updated as part of the <code>UpdateGlossary</code> action.</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 description to be updated as part of the <code>UpdateGlossary</code> action.</p><br>
/// - [`status(GlossaryStatus)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::status) / [`set_status(Option<GlossaryStatus>)`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::set_status):<br>required: **false**<br><p>The status to be updated as part of the <code>UpdateGlossary</code> action.</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 is provided to ensure the idempotency of the request.</p><br>
/// - On success, responds with [`UpdateGlossaryOutput`](crate::operation::update_glossary::UpdateGlossaryOutput) with field(s):
/// - [`domain_id(String)`](crate::operation::update_glossary::UpdateGlossaryOutput::domain_id): <p>The identifier of the Amazon DataZone domain in which a business glossary is to be updated.</p>
/// - [`id(String)`](crate::operation::update_glossary::UpdateGlossaryOutput::id): <p>The identifier of the business glossary that is to be updated.</p>
/// - [`name(String)`](crate::operation::update_glossary::UpdateGlossaryOutput::name): <p>The name to be updated as part of the <code>UpdateGlossary</code> action.</p>
/// - [`owning_project_id(String)`](crate::operation::update_glossary::UpdateGlossaryOutput::owning_project_id): <p>The identifier of the project in which to update a business glossary.</p>
/// - [`description(Option<String>)`](crate::operation::update_glossary::UpdateGlossaryOutput::description): <p>The description to be updated as part of the <code>UpdateGlossary</code> action.</p>
/// - [`status(Option<GlossaryStatus>)`](crate::operation::update_glossary::UpdateGlossaryOutput::status): <p>The status to be updated as part of the <code>UpdateGlossary</code> action.</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())
}
}