aws_sdk_entityresolution/client/delete_id_namespace.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 [`DeleteIdNamespace`](crate::operation::delete_id_namespace::builders::DeleteIdNamespaceFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`id_namespace_name(impl Into<String>)`](crate::operation::delete_id_namespace::builders::DeleteIdNamespaceFluentBuilder::id_namespace_name) / [`set_id_namespace_name(Option<String>)`](crate::operation::delete_id_namespace::builders::DeleteIdNamespaceFluentBuilder::set_id_namespace_name):<br>required: **true**<br><p>The name of the ID namespace.</p><br>
7 /// - On success, responds with [`DeleteIdNamespaceOutput`](crate::operation::delete_id_namespace::DeleteIdNamespaceOutput) with field(s):
8 /// - [`message(String)`](crate::operation::delete_id_namespace::DeleteIdNamespaceOutput::message): <p>A successful operation message.</p>
9 /// - On failure, responds with [`SdkError<DeleteIdNamespaceError>`](crate::operation::delete_id_namespace::DeleteIdNamespaceError)
10 pub fn delete_id_namespace(&self) -> crate::operation::delete_id_namespace::builders::DeleteIdNamespaceFluentBuilder {
11 crate::operation::delete_id_namespace::builders::DeleteIdNamespaceFluentBuilder::new(self.handle.clone())
12 }
13}