Module Values.CreateClusterParameterGroupMessageSource

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

    The name of the cluster parameter group. Constraints: Must be 1 to 255 alphanumeric characters or hyphens First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens. Must be unique withing your Amazon Web Services account. This value is stored as a lower-case string.

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

    The Amazon Redshift engine version to which the cluster parameter group applies. The cluster engine version determines the set of parameters. To get a list of valid parameter group family names, you can call DescribeClusterParameterGroups. By default, Amazon Redshift returns a list of all the parameter groups that are owned by your Amazon Web Services account, including the default parameter groups for each Amazon Redshift engine version. The parameter group family names associated with the default parameter groups provide you the valid values. For example, a valid family name is "redshift-1.0".

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

    A description of the parameter group.

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

    A list of tag instances.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> parameterGroupName:String_.t -> parameterGroupFamily: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