Module Values.CreateDBClusterParameterGroupMessageSource

Represents the input of CreateDBClusterParameterGroup.

Sourcetype nonrec t = {
  1. dBClusterParameterGroupName : String_.t;
    (*

    The name of the cluster parameter group. Constraints: Must not match the name of an existing DBClusterParameterGroup. This value is stored as a lowercase string.

    *)
  2. dBParameterGroupFamily : String_.t;
    (*

    The cluster parameter group family name.

    *)
  3. description : String_.t;
    (*

    The description for the cluster parameter group.

    *)
  4. tags : TagList.t option;
    (*

    The tags to be assigned to the cluster parameter group.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> dBClusterParameterGroupName:String_.t -> dBParameterGroupFamily:String_.t -> description:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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