EKS.Addon
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-addon.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
preserve_on_delete : bool option;
addon_version : string option;
service_account_role_arn : string option;
cluster_name : string;
addon_name : string;
resolve_conflicts : string option;
configuration_values : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-addon.html;
val make_properties :
?preserve_on_delete:bool ->
?addon_version:string ->
?service_account_role_arn:string ->
cluster_name:string ->
addon_name:string ->
?resolve_conflicts:string ->
?tags:tag list ->
?configuration_values:string ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes