Module Values_0.RevokeDBSecurityGroupIngressMessageSource

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

    The name of the DB security group to revoke ingress from.

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

    The IP range to revoke access from. Must be a valid CIDR range. If CIDRIP is specified, EC2SecurityGroupName, EC2SecurityGroupId and EC2SecurityGroupOwnerId can't be provided.

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

    The name of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

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

    The id of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

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

    The Amazon Web Services account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The Amazon Web Services access key ID isn't an acceptable value. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

    *)
}
Sourceval context_ : string
Sourceval make : ?cIDRIP:??? -> ?eC2SecurityGroupName:??? -> ?eC2SecurityGroupId:??? -> ?eC2SecurityGroupOwnerId:??? -> dBSecurityGroupName:String_.t -> 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