1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateGlossary`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_domain_identifier): <p>The ID of the Amazon DataZone domain in which this business glossary is created.</p>
    ///   - [`name(impl Into<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_name): <p>The name of this business glossary.</p>
    ///   - [`owning_project_identifier(impl Into<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::owning_project_identifier) / [`set_owning_project_identifier(Option<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_owning_project_identifier): <p>The ID of the project that currently owns business glossary.</p>
    ///   - [`description(impl Into<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_description): <p>The description of this business glossary.</p>
    ///   - [`status(GlossaryStatus)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::status) / [`set_status(Option<GlossaryStatus>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_status): <p>The status of this business glossary.</p>
    ///   - [`client_token(impl Into<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_client_token): <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
    /// - On success, responds with [`CreateGlossaryOutput`](crate::operation::create_glossary::CreateGlossaryOutput) with field(s):
    ///   - [`domain_id(Option<String>)`](crate::operation::create_glossary::CreateGlossaryOutput::domain_id): <p>The ID of the Amazon DataZone domain in which this business glossary is created.</p>
    ///   - [`id(Option<String>)`](crate::operation::create_glossary::CreateGlossaryOutput::id): <p>The ID of this business glossary.</p>
    ///   - [`name(Option<String>)`](crate::operation::create_glossary::CreateGlossaryOutput::name): <p>The name of this business glossary.</p>
    ///   - [`owning_project_id(Option<String>)`](crate::operation::create_glossary::CreateGlossaryOutput::owning_project_id): <p>The ID of the project that currently owns this business glossary.</p>
    ///   - [`description(Option<String>)`](crate::operation::create_glossary::CreateGlossaryOutput::description): <p>The description of this business glossary.</p>
    ///   - [`status(Option<GlossaryStatus>)`](crate::operation::create_glossary::CreateGlossaryOutput::status): <p>The status of this business glossary.</p>
    /// - On failure, responds with [`SdkError<CreateGlossaryError>`](crate::operation::create_glossary::CreateGlossaryError)
    pub fn create_glossary(&self) -> crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder {
        crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::new(self.handle.clone())
    }
}