Module Route53Resolver.FirewallRuleGroup

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewallrulegroup.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and firewall_rule = {
  1. qtype : string option;
  2. action : string;
  3. priority : int;
  4. block_override_domain : string option;
  5. firewall_domain_list_id : string;
  6. block_response : string option;
  7. block_override_ttl : int option;
  8. block_override_dns_type : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53resolver-firewallrulegroup-firewallrule.html

type properties = {
  1. firewall_rules : firewall_rule list option;
  2. tags : tag list option;
  3. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewallrulegroup.html;

val make_properties : ?firewall_rules:firewall_rule list -> ?tags:tag list -> ?name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_firewall_rule : ?qtype:string -> action:string -> priority:int -> ?block_override_domain:string -> firewall_domain_list_id:string -> ?block_response:string -> ?block_override_ttl:int -> ?block_override_dns_type:string -> unit -> firewall_rule
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_firewall_rule : firewall_rule -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. rule_count : int;
  3. status : string;
  4. owner_id : string;
  5. creation_time : string;
  6. share_status : string;
  7. modification_time : string;
  8. id : string;
  9. arn : string;
  10. creator_request_id : string;
  11. status_message : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string