Module Values.ModifyGlobalClusterMessageSource

Represents the input to ModifyGlobalCluster.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?newGlobalClusterIdentifier:??? -> ?deletionProtection:??? -> globalClusterIdentifier:GlobalClusterIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `String of GlobalClusterIdentifier.t ]) 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