VpcLattice.TargetGroup
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-targetgroup.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-targetgroup-target.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-targetgroup-matcher.html
and health_check_config = {
path : string option;
health_check_interval_seconds : int option;
matcher : matcher option;
healthy_threshold_count : int option;
port : int option;
enabled : bool option;
protocol : string option;
protocol_version : string option;
unhealthy_threshold_count : int option;
health_check_timeout_seconds : int option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-targetgroup-healthcheckconfig.html
and target_group_config = {
ip_address_type : string option;
port : int option;
health_check : health_check_config option;
lambda_event_structure_version : string option;
vpc_identifier : string option;
protocol : string option;
protocol_version : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-targetgroup-targetgroupconfig.html
type properties = {
type_ : string;
config : target_group_config option;
targets : target list option;
name : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-targetgroup.html;
val make_properties :
type_:string ->
?config:target_group_config ->
?targets:target list ->
?tags:tag list ->
?name:string ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val make_target : ?port:int -> id:string -> unit -> target
val make_matcher : http_code:string -> unit -> matcher
val make_health_check_config :
?path:string ->
?health_check_interval_seconds:int ->
?matcher:matcher ->
?healthy_threshold_count:int ->
?port:int ->
?enabled:bool ->
?protocol:string ->
?protocol_version:string ->
?unhealthy_threshold_count:int ->
?health_check_timeout_seconds:int ->
unit ->
health_check_config
val make_target_group_config :
?ip_address_type:string ->
?port:int ->
?health_check:health_check_config ->
?lambda_event_structure_version:string ->
?vpc_identifier:string ->
?protocol:string ->
?protocol_version:string ->
unit ->
target_group_config
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_target : target -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_matcher : matcher -> Yojson.Safe.t
val yojson_of_health_check_config : health_check_config -> Yojson.Safe.t
val yojson_of_target_group_config :
target_group_config ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes