aws_sdk_redshift/client/
describe_inbound_integrations.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 [`DescribeInboundIntegrations`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`integration_arn(impl Into<String>)`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::integration_arn) / [`set_integration_arn(Option<String>)`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::set_integration_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the inbound integration.</p><br>
8    ///   - [`target_arn(impl Into<String>)`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::target_arn) / [`set_target_arn(Option<String>)`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::set_target_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the target of an inbound integration.</p><br>
9    ///   - [`max_records(i32)`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::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 <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.</p> <p>Default: <code>100</code></p> <p>Constraints: minimum 20, maximum 100.</p><br>
10    ///   - [`marker(impl Into<String>)`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::set_marker):<br>required: **false**<br><p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <code>DescribeInboundIntegrations</code> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request.</p><br>
11    /// - On success, responds with [`DescribeInboundIntegrationsOutput`](crate::operation::describe_inbound_integrations::DescribeInboundIntegrationsOutput) with field(s):
12    ///   - [`marker(Option<String>)`](crate::operation::describe_inbound_integrations::DescribeInboundIntegrationsOutput::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 <code>Marker</code> parameter and retrying the command. If the <code>Marker</code> field is empty, all response records have been retrieved for the request.</p>
13    ///   - [`inbound_integrations(Option<Vec::<InboundIntegration>>)`](crate::operation::describe_inbound_integrations::DescribeInboundIntegrationsOutput::inbound_integrations): <p>A list of <code>InboundIntegration</code> instances.</p>
14    /// - On failure, responds with [`SdkError<DescribeInboundIntegrationsError>`](crate::operation::describe_inbound_integrations::DescribeInboundIntegrationsError)
15    pub fn describe_inbound_integrations(
16        &self,
17    ) -> crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder {
18        crate::operation::describe_inbound_integrations::builders::DescribeInboundIntegrationsFluentBuilder::new(self.handle.clone())
19    }
20}