Module Values.ClusterSecurityGroupSource

Describes a security group.

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

    The name of the cluster security group to which the operation was applied.

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

    A description of the security group.

    *)
  3. eC2SecurityGroups : EC2SecurityGroupList.t option;
    (*

    A list of EC2 security groups that are permitted to access clusters associated with this cluster security group.

    *)
  4. iPRanges : IPRangeList.t option;
    (*

    A list of IP ranges (CIDR blocks) that are permitted to access clusters associated with this cluster security group.

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

    The list of tags for the cluster security group.

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