Module ServiceDiscovery.Service

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html

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

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

and health_check_config = {
  1. type_ : string;
  2. resource_path : string option;
  3. failure_threshold : float option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html

and health_check_custom_config = {
  1. failure_threshold : float option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckcustomconfig.html

and dns_record = {
  1. type_ : string;
  2. ttl : float;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsrecord.html

and dns_config = {
  1. dns_records : dns_record list;
  2. routing_policy : string option;
  3. namespace_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html

type properties = {
  1. type_ : string option;
  2. description : string option;
  3. health_check_custom_config : health_check_custom_config option;
  4. dns_config : dns_config option;
  5. namespace_id : string option;
  6. health_check_config : health_check_config option;
  7. tags : tag list option;
  8. name : string option;
}

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

val make_properties : ?type_:string -> ?description:string -> ?health_check_custom_config:health_check_custom_config -> ?dns_config:dns_config -> ?namespace_id:string -> ?health_check_config:health_check_config -> ?tags:tag list -> ?name:string -> unit -> properties
val make_tag : key:string -> value:string -> unit -> tag
val make_health_check_config : type_:string -> ?resource_path:string -> ?failure_threshold:float -> unit -> health_check_config
val make_health_check_custom_config : ?failure_threshold:float -> unit -> health_check_custom_config
val make_dns_record : type_:string -> ttl:float -> unit -> dns_record
val make_dns_config : dns_records:dns_record list -> ?routing_policy:string -> ?namespace_id:string -> unit -> dns_config
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_health_check_config : health_check_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_health_check_custom_config : health_check_custom_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_dns_record : dns_record -> Yojson.Safe.t
val yojson_of_dns_config : dns_config -> [> `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. id : string;
  3. arn : string;
  4. name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string