1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribePartners`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`account_id(impl ::std::convert::Into<String>)`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::set_account_id): <p>The Amazon Web Services account ID that owns the cluster.</p>
    ///   - [`cluster_identifier(impl ::std::convert::Into<String>)`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::cluster_identifier) / [`set_cluster_identifier(Option<String>)`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::set_cluster_identifier): <p>The cluster identifier of the cluster whose partner integration is being described.</p>
    ///   - [`database_name(impl ::std::convert::Into<String>)`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::set_database_name): <p>The name of the database whose partner integration is being described. If database name is not specified, then all databases in the cluster are described.</p>
    ///   - [`partner_name(impl ::std::convert::Into<String>)`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::partner_name) / [`set_partner_name(Option<String>)`](crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::set_partner_name): <p>The name of the partner that is being described. If partner name is not specified, then all partner integrations are described.</p>
    /// - On success, responds with [`DescribePartnersOutput`](crate::operation::describe_partners::DescribePartnersOutput) with field(s):
    ///   - [`partner_integration_info_list(Option<Vec<PartnerIntegrationInfo>>)`](crate::operation::describe_partners::DescribePartnersOutput::partner_integration_info_list): <p>A list of partner integrations.</p>
    /// - On failure, responds with [`SdkError<DescribePartnersError>`](crate::operation::describe_partners::DescribePartnersError)
    pub fn describe_partners(
        &self,
    ) -> crate::operation::describe_partners::builders::DescribePartnersFluentBuilder {
        crate::operation::describe_partners::builders::DescribePartnersFluentBuilder::new(
            self.handle.clone(),
        )
    }
}