aws_sdk_macie2/client/
list_managed_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 [`ListManagedDataIdentifiers`](crate::operation::list_managed_data_identifiers::builders::ListManagedDataIdentifiersFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_managed_data_identifiers::builders::ListManagedDataIdentifiersFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`next_token(impl Into<String>)`](crate::operation::list_managed_data_identifiers::builders::ListManagedDataIdentifiersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_managed_data_identifiers::builders::ListManagedDataIdentifiersFluentBuilder::set_next_token):<br>required: **false**<br><p>The nextToken string that specifies which page of results to return in a paginated response.</p><br>
8    /// - On success, responds with [`ListManagedDataIdentifiersOutput`](crate::operation::list_managed_data_identifiers::ListManagedDataIdentifiersOutput) with field(s):
9    ///   - [`items(Option<Vec::<ManagedDataIdentifierSummary>>)`](crate::operation::list_managed_data_identifiers::ListManagedDataIdentifiersOutput::items): <p>An array of objects, one for each managed data identifier.</p>
10    ///   - [`next_token(Option<String>)`](crate::operation::list_managed_data_identifiers::ListManagedDataIdentifiersOutput::next_token): <p>The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.</p>
11    /// - On failure, responds with [`SdkError<ListManagedDataIdentifiersError>`](crate::operation::list_managed_data_identifiers::ListManagedDataIdentifiersError)
12    pub fn list_managed_data_identifiers(
13        &self,
14    ) -> crate::operation::list_managed_data_identifiers::builders::ListManagedDataIdentifiersFluentBuilder {
15        crate::operation::list_managed_data_identifiers::builders::ListManagedDataIdentifiersFluentBuilder::new(self.handle.clone())
16    }
17}