aws-sdk-connect 1.166.0

AWS SDK for Amazon Connect Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListAnalyticsDataLakeDataSets`](crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per page.</p><br>
    /// - On success, responds with [`ListAnalyticsDataLakeDataSetsOutput`](crate::operation::list_analytics_data_lake_data_sets::ListAnalyticsDataLakeDataSetsOutput) with field(s):
    ///   - [`results(Option<Vec::<AnalyticsDataSetsResult>>)`](crate::operation::list_analytics_data_lake_data_sets::ListAnalyticsDataLakeDataSetsOutput::results): <p>An array of successful results: <code>DataSetId</code>, <code>DataSetName</code>. This is a paginated API, so <code>nextToken</code> is given if there are more results to be returned.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_analytics_data_lake_data_sets::ListAnalyticsDataLakeDataSetsOutput::next_token): <p>If there are additional results, this is the token for the next set of results.</p>
    /// - On failure, responds with [`SdkError<ListAnalyticsDataLakeDataSetsError>`](crate::operation::list_analytics_data_lake_data_sets::ListAnalyticsDataLakeDataSetsError)
    pub fn list_analytics_data_lake_data_sets(
        &self,
    ) -> crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder {
        crate::operation::list_analytics_data_lake_data_sets::builders::ListAnalyticsDataLakeDataSetsFluentBuilder::new(self.handle.clone())
    }
}