Module Values.AwsEc2SecurityGroupUserIdGroupPairSource

A relationship between a security group and a user.

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

    The ID of the security group.

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

    The name of the security group.

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

    The status of a VPC peering connection, if applicable.

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

    The ID of an Amazon Web Services account. For a referenced security group in another VPC, the account ID of the referenced security group is returned in the response. If the referenced security group is deleted, this value is not returned. [EC2-Classic] Required when adding or removing rules that reference a security group in another VPC.

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

    The ID of the VPC for the referenced security group, if applicable.

    *)
  6. vpcPeeringConnectionId : NonEmptyString.t option;
    (*

    The ID of the VPC peering connection, if applicable.

    *)
}
Sourceval make : ?groupId:??? -> ?groupName:??? -> ?peeringStatus:??? -> ?userId:??? -> ?vpcId:??? -> ?vpcPeeringConnectionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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