Module EKS.Addon

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-addon.html

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

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

type properties = {
  1. preserve_on_delete : bool option;
  2. addon_version : string option;
  3. service_account_role_arn : string option;
  4. cluster_name : string;
  5. addon_name : string;
  6. resolve_conflicts : string option;
  7. tags : tag list option;
  8. 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 ]
type attributes = {
  1. ref_ : string;
  2. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string