1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchAssociateScramSecret`](crate::operation::batch_associate_scram_secret::builders::BatchAssociateScramSecretFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_arn(impl ::std::convert::Into<String>)`](crate::operation::batch_associate_scram_secret::builders::BatchAssociateScramSecretFluentBuilder::cluster_arn) / [`set_cluster_arn(Option<String>)`](crate::operation::batch_associate_scram_secret::builders::BatchAssociateScramSecretFluentBuilder::set_cluster_arn): <p>The Amazon Resource Name (ARN) of the cluster to be updated.</p>
    ///   - [`secret_arn_list(Vec<String>)`](crate::operation::batch_associate_scram_secret::builders::BatchAssociateScramSecretFluentBuilder::secret_arn_list) / [`set_secret_arn_list(Option<Vec<String>>)`](crate::operation::batch_associate_scram_secret::builders::BatchAssociateScramSecretFluentBuilder::set_secret_arn_list): <p>List of AWS Secrets Manager secret ARNs.</p>
    /// - On success, responds with [`BatchAssociateScramSecretOutput`](crate::operation::batch_associate_scram_secret::BatchAssociateScramSecretOutput) with field(s):
    ///   - [`cluster_arn(Option<String>)`](crate::operation::batch_associate_scram_secret::BatchAssociateScramSecretOutput::cluster_arn): <p>The Amazon Resource Name (ARN) of the cluster.</p>
    ///   - [`unprocessed_scram_secrets(Option<Vec<UnprocessedScramSecret>>)`](crate::operation::batch_associate_scram_secret::BatchAssociateScramSecretOutput::unprocessed_scram_secrets): <p>List of errors when associating secrets to cluster.</p>
    /// - On failure, responds with [`SdkError<BatchAssociateScramSecretError>`](crate::operation::batch_associate_scram_secret::BatchAssociateScramSecretError)
    pub fn batch_associate_scram_secret(&self) -> crate::operation::batch_associate_scram_secret::builders::BatchAssociateScramSecretFluentBuilder {
        crate::operation::batch_associate_scram_secret::builders::BatchAssociateScramSecretFluentBuilder::new(self.handle.clone())
    }
}