package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. cidr_block : Aws.BaseTypes.String.t option;
  2. dry_run : Aws.BaseTypes.Boolean.t option;
  3. egress : Aws.BaseTypes.Boolean.t;
  4. icmp_type_code : IcmpTypeCode.t option;
  5. ipv6_cidr_block : Aws.BaseTypes.String.t option;
  6. network_acl_id : Aws.BaseTypes.String.t;
  7. port_range : PortRange.t option;
  8. protocol : Aws.BaseTypes.String.t;
  9. rule_action : RuleAction.t;
  10. rule_number : Aws.BaseTypes.Integer.t;
}
val make : ?cidr_block:Aws.BaseTypes.String.t -> ?dry_run:Aws.BaseTypes.Boolean.t -> egress:Aws.BaseTypes.Boolean.t -> ?icmp_type_code:IcmpTypeCode.t -> ?ipv6_cidr_block:Aws.BaseTypes.String.t -> network_acl_id:Aws.BaseTypes.String.t -> ?port_range:PortRange.t -> protocol:Aws.BaseTypes.String.t -> rule_action:RuleAction.t -> rule_number:Aws.BaseTypes.Integer.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t