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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetGlossary`](crate::operation::get_glossary::builders::GetGlossaryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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 unique identifier of the glossary to retrieve.</p><br>
    /// - On success, responds with [`GetGlossaryOutput`](crate::operation::get_glossary::GetGlossaryOutput) with field(s):
    ///   - [`id(Option<String>)`](crate::operation::get_glossary::GetGlossaryOutput::id): <p>The unique identifier of the glossary.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_glossary::GetGlossaryOutput::name): <p>The name of the glossary.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_glossary::GetGlossaryOutput::description): <p>The description of the glossary.</p>
    /// - On failure, responds with [`SdkError<GetGlossaryError>`](crate::operation::get_glossary::GetGlossaryError)
    pub fn get_glossary(&self) -> crate::operation::get_glossary::builders::GetGlossaryFluentBuilder {
        crate::operation::get_glossary::builders::GetGlossaryFluentBuilder::new(self.handle.clone())
    }
}