Module Values_0.EC2SecurityGroupSource

This data type is used as a response element in the following actions: AuthorizeDBSecurityGroupIngress DescribeDBSecurityGroups RevokeDBSecurityGroupIngress

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

    Provides the status of the EC2 security group. Status can be "authorizing", "authorized", "revoking", and "revoked".

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

    Specifies the name of the EC2 security group.

    *)
  3. eC2SecurityGroupId : String_.t option;
    (*

    Specifies the id of the EC2 security group.

    *)
  4. eC2SecurityGroupOwnerId : String_.t option;
    (*

    Specifies the Amazon Web Services ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field.

    *)
}
Sourceval make : ?status:??? -> ?eC2SecurityGroupName:??? -> ?eC2SecurityGroupId:??? -> ?eC2SecurityGroupOwnerId:??? -> 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