Values.ModifyGlobalClusterMessageSourceRepresents the input to ModifyGlobalCluster.
type nonrec t = {globalClusterIdentifier : GlobalClusterIdentifier.t;The identifier for the global cluster being modified. This parameter isn't case-sensitive. Constraints: Must match the identifier of an existing global cluster.
*)newGlobalClusterIdentifier : GlobalClusterIdentifier.t option;The new identifier for a global cluster when you modify a global cluster. This value is stored as a lowercase string. Must contain from 1 to 63 letters, numbers, or hyphens The first character must be a letter Can't end with a hyphen or contain two consecutive hyphens Example: my-cluster2
*)deletionProtection : BooleanOptional.t option;Indicates if the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
*)}val make :
?newGlobalClusterIdentifier:??? ->
?deletionProtection:??? ->
globalClusterIdentifier:GlobalClusterIdentifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `String of GlobalClusterIdentifier.t ])
list ]