aws_sdk_datazone/client/
get_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 [`GetGlossary`](crate::operation::get_glossary::builders::GetGlossaryFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::get_glossary::builders::GetGlossaryFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_glossary::builders::GetGlossaryFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the Amazon DataZone domain in which this business glossary exists.</p><br>
7    ///   - [`identifier(impl Into<String>)`](crate::operation::get_glossary::builders::GetGlossaryFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_glossary::builders::GetGlossaryFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the business glossary.</p><br>
8    /// - On success, responds with [`GetGlossaryOutput`](crate::operation::get_glossary::GetGlossaryOutput) with field(s):
9    ///   - [`domain_id(String)`](crate::operation::get_glossary::GetGlossaryOutput::domain_id): <p>The ID of the Amazon DataZone domain in which this business glossary exists.</p>
10    ///   - [`id(String)`](crate::operation::get_glossary::GetGlossaryOutput::id): <p>The ID of the business glossary.</p>
11    ///   - [`owning_project_id(String)`](crate::operation::get_glossary::GetGlossaryOutput::owning_project_id): <p>The ID of the project that owns this business glossary.</p>
12    ///   - [`name(String)`](crate::operation::get_glossary::GetGlossaryOutput::name): <p>The name of the business glossary.</p>
13    ///   - [`description(Option<String>)`](crate::operation::get_glossary::GetGlossaryOutput::description): <p>The description of the business glossary.</p>
14    ///   - [`status(GlossaryStatus)`](crate::operation::get_glossary::GetGlossaryOutput::status): <p>The status of the business glossary.</p>
15    ///   - [`created_at(Option<DateTime>)`](crate::operation::get_glossary::GetGlossaryOutput::created_at): <p>The timestamp of when this business glossary was created.</p>
16    ///   - [`created_by(Option<String>)`](crate::operation::get_glossary::GetGlossaryOutput::created_by): <p>The Amazon DataZone user who created this business glossary.</p>
17    ///   - [`updated_at(Option<DateTime>)`](crate::operation::get_glossary::GetGlossaryOutput::updated_at): <p>The timestamp of when the business glossary was updated.</p>
18    ///   - [`updated_by(Option<String>)`](crate::operation::get_glossary::GetGlossaryOutput::updated_by): <p>The Amazon DataZone user who updated the business glossary.</p>
19    /// - On failure, responds with [`SdkError<GetGlossaryError>`](crate::operation::get_glossary::GetGlossaryError)
20    pub fn get_glossary(&self) -> crate::operation::get_glossary::builders::GetGlossaryFluentBuilder {
21        crate::operation::get_glossary::builders::GetGlossaryFluentBuilder::new(self.handle.clone())
22    }
23}