aws_sdk_macie2/client/
delete_custom_data_identifier.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 [`DeleteCustomDataIdentifier`](crate::operation::delete_custom_data_identifier::builders::DeleteCustomDataIdentifierFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::delete_custom_data_identifier::builders::DeleteCustomDataIdentifierFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_custom_data_identifier::builders::DeleteCustomDataIdentifierFluentBuilder::set_id):<br>required: **true**<br><p>The unique identifier for the Amazon Macie resource that the request applies to.</p><br>
7    /// - On success, responds with [`DeleteCustomDataIdentifierOutput`](crate::operation::delete_custom_data_identifier::DeleteCustomDataIdentifierOutput)
8    /// - On failure, responds with [`SdkError<DeleteCustomDataIdentifierError>`](crate::operation::delete_custom_data_identifier::DeleteCustomDataIdentifierError)
9    pub fn delete_custom_data_identifier(
10        &self,
11    ) -> crate::operation::delete_custom_data_identifier::builders::DeleteCustomDataIdentifierFluentBuilder {
12        crate::operation::delete_custom_data_identifier::builders::DeleteCustomDataIdentifierFluentBuilder::new(self.handle.clone())
13    }
14}