Module Values.CreateGlobalClusterMessageSource

Represents the input to CreateGlobalCluster.

Sourcetype nonrec t = {
  1. globalClusterIdentifier : GlobalClusterIdentifier.t;
    (*

    The cluster identifier of the new global cluster.

    *)
  2. sourceDBClusterIdentifier : String_.t option;
    (*

    The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. This parameter is optional.

    *)
  3. engine : String_.t option;
    (*

    The name of the database engine to be used for this cluster.

    *)
  4. engineVersion : String_.t option;
    (*

    The engine version of the global cluster.

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

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

    *)
  7. storageEncrypted : BooleanOptional.t option;
    (*

    The storage encryption setting for the new global cluster.

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceDBClusterIdentifier:??? -> ?engine:??? -> ?engineVersion:??? -> ?deletionProtection:??? -> ?databaseName:??? -> ?storageEncrypted:??? -> 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