Module Values_2.SecurityGroupSource

Describes a security group.

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

    The ID of the security group.

    *)
  2. ipPermissionsEgress : Values_1.IpPermissionList.t option;
    (*

    The outbound rules associated with the security group.

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

    Any tags assigned to the security group.

    *)
  4. vpcId : Values_0.String_.t option;
    (*

    The ID of the VPC for the security group.

    *)
  5. securityGroupArn : Values_0.String_.t option;
    (*

    The ARN of the security group.

    *)
  6. ownerId : Values_0.String_.t option;
    (*

    The Amazon Web Services account ID of the owner of the security group.

    *)
  7. groupName : Values_0.String_.t option;
    (*

    The name of the security group.

    *)
  8. description : Values_0.String_.t option;
    (*

    A description of the security group.

    *)
  9. ipPermissions : Values_1.IpPermissionList.t option;
    (*

    The inbound rules associated with the security group.

    *)
}
Sourceval make : ?groupId:??? -> ?ipPermissionsEgress:??? -> ?tags:??? -> ?vpcId:??? -> ?securityGroupArn:??? -> ?ownerId:??? -> ?groupName:??? -> ?description:??? -> ?ipPermissions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of int | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) list ] list | `String of Values_0.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