Values.CreateGlobalClusterMessageSourceRepresents the input to CreateGlobalCluster.
type nonrec t = {globalClusterIdentifier : GlobalClusterIdentifier.t;The cluster identifier of the new global cluster.
*)sourceDBClusterIdentifier : String_.t option;The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. This parameter is optional.
*)engine : String_.t option;The name of the database engine to be used for this cluster.
*)engineVersion : String_.t option;The engine version of the global cluster.
*)deletionProtection : BooleanOptional.t option;The deletion protection setting for the new global cluster. The global cluster can't be deleted when deletion protection is enabled.
*)databaseName : String_.t option;The name for your database of up to 64 alpha-numeric characters. If you do not provide a name, Amazon DocumentDB will not create a database in the global cluster you are creating.
*)storageEncrypted : BooleanOptional.t option;The storage encryption setting for the new global cluster.
*)}val make :
?sourceDBClusterIdentifier:??? ->
?engine:??? ->
?engineVersion:??? ->
?deletionProtection:??? ->
?databaseName:??? ->
?storageEncrypted:??? ->
globalClusterIdentifier:GlobalClusterIdentifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `String of GlobalClusterIdentifier.t ])
list ]