1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeConnectorProfiles`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`connector_profile_names(impl Into<String>)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::connector_profile_names) / [`set_connector_profile_names(Option<Vec::<String>>)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::set_connector_profile_names):<br>required: **false**<br><p> The name of the connector profile. The name is unique for each <code>ConnectorProfile</code> in the Amazon Web Services account. </p><br>
    ///   - [`connector_type(ConnectorType)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::connector_type) / [`set_connector_type(Option<ConnectorType>)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::set_connector_type):<br>required: **false**<br><p> The type of connector, such as Salesforce, Amplitude, and so on. </p><br>
    ///   - [`connector_label(impl Into<String>)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::connector_label) / [`set_connector_label(Option<String>)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::set_connector_label):<br>required: **false**<br><p>The name of the connector. The name is unique for each <code>ConnectorRegistration</code> in your Amazon Web Services account. Only needed if calling for CUSTOMCONNECTOR connector type/.</p><br>
    ///   - [`max_results(i32)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::set_max_results):<br>required: **false**<br><p> Specifies the maximum number of items that should be returned in the result set. The default for <code>maxResults</code> is 20 (for all paginated API operations). </p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::set_next_token):<br>required: **false**<br><p> The pagination token for the next page of data. </p><br>
    /// - On success, responds with [`DescribeConnectorProfilesOutput`](crate::operation::describe_connector_profiles::DescribeConnectorProfilesOutput) with field(s):
    ///   - [`connector_profile_details(Option<Vec::<ConnectorProfile>>)`](crate::operation::describe_connector_profiles::DescribeConnectorProfilesOutput::connector_profile_details): <p> Returns information about the connector profiles associated with the flow. </p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_connector_profiles::DescribeConnectorProfilesOutput::next_token): <p> The pagination token for the next page of data. If <code>nextToken=null</code>, this means that all records have been fetched. </p>
    /// - On failure, responds with [`SdkError<DescribeConnectorProfilesError>`](crate::operation::describe_connector_profiles::DescribeConnectorProfilesError)
    pub fn describe_connector_profiles(&self) -> crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder {
        crate::operation::describe_connector_profiles::builders::DescribeConnectorProfilesFluentBuilder::new(self.handle.clone())
    }
}