aws_sdk_macie2/client/
batch_get_custom_data_identifiers.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 [`BatchGetCustomDataIdentifiers`](crate::operation::batch_get_custom_data_identifiers::builders::BatchGetCustomDataIdentifiersFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`ids(impl Into<String>)`](crate::operation::batch_get_custom_data_identifiers::builders::BatchGetCustomDataIdentifiersFluentBuilder::ids) / [`set_ids(Option<Vec::<String>>)`](crate::operation::batch_get_custom_data_identifiers::builders::BatchGetCustomDataIdentifiersFluentBuilder::set_ids):<br>required: **false**<br><p>An array of custom data identifier IDs, one for each custom data identifier to retrieve information about.</p><br>
7    /// - On success, responds with [`BatchGetCustomDataIdentifiersOutput`](crate::operation::batch_get_custom_data_identifiers::BatchGetCustomDataIdentifiersOutput) with field(s):
8    ///   - [`custom_data_identifiers(Option<Vec::<BatchGetCustomDataIdentifierSummary>>)`](crate::operation::batch_get_custom_data_identifiers::BatchGetCustomDataIdentifiersOutput::custom_data_identifiers): <p>An array of objects, one for each custom data identifier that matches the criteria specified in the request.</p>
9    ///   - [`not_found_identifier_ids(Option<Vec::<String>>)`](crate::operation::batch_get_custom_data_identifiers::BatchGetCustomDataIdentifiersOutput::not_found_identifier_ids): <p>An array of custom data identifier IDs, one for each custom data identifier that was specified in the request but doesn't correlate to an existing custom data identifier.</p>
10    /// - On failure, responds with [`SdkError<BatchGetCustomDataIdentifiersError>`](crate::operation::batch_get_custom_data_identifiers::BatchGetCustomDataIdentifiersError)
11    pub fn batch_get_custom_data_identifiers(
12        &self,
13    ) -> crate::operation::batch_get_custom_data_identifiers::builders::BatchGetCustomDataIdentifiersFluentBuilder {
14        crate::operation::batch_get_custom_data_identifiers::builders::BatchGetCustomDataIdentifiersFluentBuilder::new(self.handle.clone())
15    }
16}