aws_sdk_datazone/client/
update_glossary.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`UpdateGlossary`](crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    ///   - [`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>
9    ///   - [`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>
10    ///   - [`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>
11    ///   - [`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>
12    /// - On success, responds with [`UpdateGlossaryOutput`](crate::operation::update_glossary::UpdateGlossaryOutput) with field(s):
13    ///   - [`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>
14    ///   - [`id(String)`](crate::operation::update_glossary::UpdateGlossaryOutput::id): <p>The identifier of the business glossary that is to be updated.</p>
15    ///   - [`name(String)`](crate::operation::update_glossary::UpdateGlossaryOutput::name): <p>The name to be updated as part of the <code>UpdateGlossary</code> action.</p>
16    ///   - [`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>
17    ///   - [`description(Option<String>)`](crate::operation::update_glossary::UpdateGlossaryOutput::description): <p>The description to be updated as part of the <code>UpdateGlossary</code> action.</p>
18    ///   - [`status(Option<GlossaryStatus>)`](crate::operation::update_glossary::UpdateGlossaryOutput::status): <p>The status to be updated as part of the <code>UpdateGlossary</code> action.</p>
19    /// - On failure, responds with [`SdkError<UpdateGlossaryError>`](crate::operation::update_glossary::UpdateGlossaryError)
20    pub fn update_glossary(&self) -> crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder {
21        crate::operation::update_glossary::builders::UpdateGlossaryFluentBuilder::new(self.handle.clone())
22    }
23}