1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetCustomDataIdentifiers`](crate::operation::batch_get_custom_data_identifiers::builders::BatchGetCustomDataIdentifiersFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`BatchGetCustomDataIdentifiersOutput`](crate::operation::batch_get_custom_data_identifiers::BatchGetCustomDataIdentifiersOutput) with field(s):
    ///   - [`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>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<BatchGetCustomDataIdentifiersError>`](crate::operation::batch_get_custom_data_identifiers::BatchGetCustomDataIdentifiersError)
    pub fn batch_get_custom_data_identifiers(
        &self,
    ) -> crate::operation::batch_get_custom_data_identifiers::builders::BatchGetCustomDataIdentifiersFluentBuilder {
        crate::operation::batch_get_custom_data_identifiers::builders::BatchGetCustomDataIdentifiersFluentBuilder::new(self.handle.clone())
    }
}