Module Values.AwsRdsDbSecurityGroupEc2SecurityGroupSource

EC2 security group information for an RDS DB security group.

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

    Specifies the ID for the EC2 security group.

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

    Specifies the name of the EC2 security group.

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

    Provides the Amazon Web Services ID of the owner of the EC2 security group.

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

    Provides the status of the EC2 security group.

    *)
}
Sourceval make : ?ec2SecurityGroupId:??? -> ?ec2SecurityGroupName:??? -> ?ec2SecurityGroupOwnerId:??? -> ?status:??? -> 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