Module Values.BatchAssociateScramSecretRequestSource

Associates sasl scram secrets to cluster.

Sourcetype nonrec t = {
  1. clusterArn : string;
    (*

    The Amazon Resource Name (ARN) of the cluster to be updated.

    *)
  2. secretArnList : string list;
    (*

    List of AWS Secrets Manager secret ARNs.

    *)
}
Sourceval context_ : string
Sourceval make : clusterArn:string -> secretArnList:string list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t