Module EKS.FargateProfile

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

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

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

and label = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-fargateprofile-label.html

and selector = {
  1. labels : label list option;
  2. namespace : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-fargateprofile-selector.html

type properties = {
  1. subnets : string list option;
  2. fargate_profile_name : string option;
  3. cluster_name : string;
  4. pod_execution_role_arn : string;
  5. selectors : selector list;
  6. tags : tag list option;
}

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

val make_properties : ?subnets:string list -> ?fargate_profile_name:string -> cluster_name:string -> pod_execution_role_arn:string -> selectors:selector list -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_label : value:string -> key:string -> unit -> label
val make_selector : ?labels:label list -> namespace:string -> unit -> selector
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_label : label -> Yojson.Safe.t
val yojson_of_selector : selector -> [> `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