aws-sdk-glue 1.163.0

AWS SDK for AWS Glue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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:
    ///   - [`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 the 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 the 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 you provide to ensure the idempotency of the request.</p><br>
    /// - On success, responds with [`CreateGlossaryOutput`](crate::operation::create_glossary::CreateGlossaryOutput) with field(s):
    ///   - [`id(Option<String>)`](crate::operation::create_glossary::CreateGlossaryOutput::id): <p>The unique identifier of the glossary.</p>
    ///   - [`name(Option<String>)`](crate::operation::create_glossary::CreateGlossaryOutput::name): <p>The name of the glossary.</p>
    ///   - [`description(Option<String>)`](crate::operation::create_glossary::CreateGlossaryOutput::description): <p>The description of the 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())
    }
}