aws_sdk_redshift/client/describe_redshift_idc_applications.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 [`DescribeRedshiftIdcApplications`](crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`redshift_idc_application_arn(impl Into<String>)`](crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder::redshift_idc_application_arn) / [`set_redshift_idc_application_arn(Option<String>)`](crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder::set_redshift_idc_application_arn):<br>required: **false**<br><p>The ARN for the Redshift application that integrates with IAM Identity Center.</p><br>
8 /// - [`max_records(i32)`](crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.</p><br>
9 /// - [`marker(impl Into<String>)`](crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder::set_marker):<br>required: **false**<br><p>A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.</p><br>
10 /// - On success, responds with [`DescribeRedshiftIdcApplicationsOutput`](crate::operation::describe_redshift_idc_applications::DescribeRedshiftIdcApplicationsOutput) with field(s):
11 /// - [`redshift_idc_applications(Option<Vec::<RedshiftIdcApplication>>)`](crate::operation::describe_redshift_idc_applications::DescribeRedshiftIdcApplicationsOutput::redshift_idc_applications): <p>The list of Amazon Redshift IAM Identity Center applications.</p>
12 /// - [`marker(Option<String>)`](crate::operation::describe_redshift_idc_applications::DescribeRedshiftIdcApplicationsOutput::marker): <p>A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker parameter and retrying the command. If the Marker field is empty, all response records have been retrieved for the request.</p>
13 /// - On failure, responds with [`SdkError<DescribeRedshiftIdcApplicationsError>`](crate::operation::describe_redshift_idc_applications::DescribeRedshiftIdcApplicationsError)
14 pub fn describe_redshift_idc_applications(
15 &self,
16 ) -> crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder {
17 crate::operation::describe_redshift_idc_applications::builders::DescribeRedshiftIdcApplicationsFluentBuilder::new(self.handle.clone())
18 }
19}