Module Values.SecurityGroupMembershipSource

An individual VPC security group and its status.

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

    The unique ID for this security group.

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

    The status of this security group.

    *)
}
Sourceval make : ?securityGroupIdentifier:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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