Module Route53Resolver.ResolverRule

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

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

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

and target_address = {
  1. ipv6 : string option;
  2. ip : string option;
  3. port : string option;
  4. protocol : string option;
}

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

type properties = {
  1. resolver_endpoint_id : string option;
  2. domain_name : string;
  3. rule_type : string;
  4. tags : tag list option;
  5. target_ips : target_address list option;
  6. name : string option;
}

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

val make_properties : ?resolver_endpoint_id:string -> domain_name:string -> rule_type:string -> ?tags:tag list -> ?target_ips:target_address list -> ?name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_target_address : ?ipv6:string -> ?ip:string -> ?port:string -> ?protocol:string -> unit -> target_address
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_target_address : target_address -> [> `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. resolver_endpoint_id : string;
  3. domain_name : string;
  4. resolver_rule_id : string;
  5. arn : string;
  6. name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string