Module Values.AwsEc2SecurityGroupDetailsSource

Details about an Amazon EC2 security group.

Sourcetype nonrec t = {
  1. groupName : NonEmptyString.t option;
    (*

    The name of the security group.

    *)
  2. groupId : NonEmptyString.t option;
    (*

    The ID of the security group.

    *)
  3. ownerId : NonEmptyString.t option;
    (*

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

    *)
  4. vpcId : NonEmptyString.t option;
    (*

    [VPC only] The ID of the VPC for the security group.

    *)
  5. ipPermissions : AwsEc2SecurityGroupIpPermissionList.t option;
    (*

    The inbound rules associated with the security group.

    *)
  6. ipPermissionsEgress : AwsEc2SecurityGroupIpPermissionList.t option;
    (*

    [VPC only] The outbound rules associated with the security group.

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