EKS.AccessEntry
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-accessentry.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-eks-accessentry-accessscope.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-accessentry-accesspolicy.html
type properties = {
type_ : string option;
principal_arn : string;
kubernetes_groups : string list option;
username : string option;
cluster_name : string;
access_policies : access_policy 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 ]
val create_attributes : string -> attributes