Module EKS.AccessEntry

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

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

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

and access_scope = {
  1. namespaces : string list option;
  2. type_ : string;
}

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

and access_policy = {
  1. policy_arn : string;
  2. access_scope : access_scope;
}

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

type properties = {
  1. type_ : string option;
  2. principal_arn : string;
  3. kubernetes_groups : string list option;
  4. username : string option;
  5. cluster_name : string;
  6. access_policies : access_policy list option;
  7. tags : tag list option;
}

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

val make_properties : ?type_:string -> principal_arn:string -> ?kubernetes_groups:string list -> ?username:string -> cluster_name:string -> ?access_policies:access_policy list -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_access_scope : ?namespaces:string list -> type_:string -> unit -> access_scope
val make_access_policy : policy_arn:string -> access_scope:access_scope -> unit -> access_policy
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_access_scope : access_scope -> Yojson.Safe.t
val yojson_of_access_policy : access_policy -> [> `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. access_entry_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string