Module Values.CreateClusterSecurityGroupMessageSource

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

    The name for the security group. Amazon Redshift stores the value as a lowercase string. Constraints: Must contain no more than 255 alphanumeric characters or hyphens. Must not be "Default". Must be unique for all security groups that are created by your Amazon Web Services account. Example: examplesecuritygroup

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

    A description for the security group.

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

    A list of tag instances.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> clusterSecurityGroupName: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