aws_sdk_datazone/client/
delete_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 [`DeleteGlossary`](crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the Amazon DataZone domain in which the business glossary is deleted.</p><br>
7    ///   - [`identifier(impl Into<String>)`](crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the business glossary that is deleted.</p><br>
8    /// - On success, responds with [`DeleteGlossaryOutput`](crate::operation::delete_glossary::DeleteGlossaryOutput)
9    /// - On failure, responds with [`SdkError<DeleteGlossaryError>`](crate::operation::delete_glossary::DeleteGlossaryError)
10    pub fn delete_glossary(&self) -> crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder {
11        crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder::new(self.handle.clone())
12    }
13}