aws_sdk_securitylake/client/
list_data_lake_exceptions.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 [`ListDataLakeExceptions`](crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`regions(impl Into<String>)`](crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder::regions) / [`set_regions(Option<Vec::<String>>)`](crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder::set_regions):<br>required: **false**<br><p>The Amazon Web Services Regions from which exceptions are retrieved.</p><br>
8    ///   - [`max_results(i32)`](crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder::set_max_results):<br>required: **false**<br><p>Lists the maximum number of failures in Security Lake.</p><br>
9    ///   - [`next_token(impl Into<String>)`](crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder::set_next_token):<br>required: **false**<br><p>Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.</p> <p>Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.</p><br>
10    /// - On success, responds with [`ListDataLakeExceptionsOutput`](crate::operation::list_data_lake_exceptions::ListDataLakeExceptionsOutput) with field(s):
11    ///   - [`exceptions(Option<Vec::<DataLakeException>>)`](crate::operation::list_data_lake_exceptions::ListDataLakeExceptionsOutput::exceptions): <p>Lists the failures that cannot be retried.</p>
12    ///   - [`next_token(Option<String>)`](crate::operation::list_data_lake_exceptions::ListDataLakeExceptionsOutput::next_token): <p>Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.</p> <p>Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.</p>
13    /// - On failure, responds with [`SdkError<ListDataLakeExceptionsError>`](crate::operation::list_data_lake_exceptions::ListDataLakeExceptionsError)
14    pub fn list_data_lake_exceptions(&self) -> crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder {
15        crate::operation::list_data_lake_exceptions::builders::ListDataLakeExceptionsFluentBuilder::new(self.handle.clone())
16    }
17}