Module Values.EC2SecurityGroupSource

Describes an Amazon EC2 security group.

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

    The status of the EC2 security group.

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

    The name of the EC2 Security Group.

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

    The Amazon Web Services account ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field.

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

    The list of tags for the EC2 security group.

    *)
}
Sourceval make : ?status:??? -> ?eC2SecurityGroupName:??? -> ?eC2SecurityGroupOwnerId:??? -> ?tags:??? -> 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