aws_sdk_kafka/client/batch_disassociate_scram_secret.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 [`BatchDisassociateScramSecret`](crate::operation::batch_disassociate_scram_secret::builders::BatchDisassociateScramSecretFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`BatchDisassociateScramSecretOutput`](crate::operation::batch_disassociate_scram_secret::BatchDisassociateScramSecretOutput) with field(s):
9 /// - [`cluster_arn(Option<String>)`](crate::operation::batch_disassociate_scram_secret::BatchDisassociateScramSecretOutput::cluster_arn): <p>The Amazon Resource Name (ARN) of the cluster.</p>
10 /// - [`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>
11 /// - On failure, responds with [`SdkError<BatchDisassociateScramSecretError>`](crate::operation::batch_disassociate_scram_secret::BatchDisassociateScramSecretError)
12 pub fn batch_disassociate_scram_secret(
13 &self,
14 ) -> crate::operation::batch_disassociate_scram_secret::builders::BatchDisassociateScramSecretFluentBuilder {
15 crate::operation::batch_disassociate_scram_secret::builders::BatchDisassociateScramSecretFluentBuilder::new(self.handle.clone())
16 }
17}