aws_sdk_datazone/client/create_glossary.rs
// 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):<br>required: **true**<br><p>The ID of the Amazon DataZone domain in which this business glossary is created.</p><br>
/// - [`name(impl Into<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_name):<br>required: **true**<br><p>The name of this business glossary.</p><br>
/// - [`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):<br>required: **true**<br><p>The ID of the project that currently owns business glossary.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_description):<br>required: **false**<br><p>The description of this business glossary.</p><br>
/// - [`status(GlossaryStatus)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::status) / [`set_status(Option<GlossaryStatus>)`](crate::operation::create_glossary::builders::CreateGlossaryFluentBuilder::set_status):<br>required: **false**<br><p>The status of this business glossary.</p><br>
/// - [`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):<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 [`CreateGlossaryOutput`](crate::operation::create_glossary::CreateGlossaryOutput) with field(s):
/// - [`domain_id(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(String)`](crate::operation::create_glossary::CreateGlossaryOutput::id): <p>The ID of this business glossary.</p>
/// - [`name(String)`](crate::operation::create_glossary::CreateGlossaryOutput::name): <p>The name of this business glossary.</p>
/// - [`owning_project_id(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())
}
}