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