aws_sdk_datazone/client/delete_glossary.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteGlossary`](crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - On success, responds with [`DeleteGlossaryOutput`](crate::operation::delete_glossary::DeleteGlossaryOutput)
/// - On failure, responds with [`SdkError<DeleteGlossaryError>`](crate::operation::delete_glossary::DeleteGlossaryError)
pub fn delete_glossary(&self) -> crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder {
crate::operation::delete_glossary::builders::DeleteGlossaryFluentBuilder::new(self.handle.clone())
}
}