Class: Aws::EKS::Types::CreateAccessConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::CreateAccessConfigRequest
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
The access configuration information for the cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authentication_mode ⇒ String
The desired authentication mode for the cluster.
-
#bootstrap_cluster_creator_admin_permissions ⇒ Boolean
Specifies whether or not the cluster creator IAM principal was set as a cluster admin access entry during cluster creation time.
Instance Attribute Details
#authentication_mode ⇒ String
The desired authentication mode for the cluster. If you create a
cluster by using the EKS API, Amazon Web Services SDKs, or
CloudFormation, the default is CONFIG_MAP
. If you create the
cluster by using the Amazon Web Services Management Console, the
default value is API_AND_CONFIG_MAP
.
1293 1294 1295 1296 1297 1298 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 1293 class CreateAccessConfigRequest < Struct.new( :bootstrap_cluster_creator_admin_permissions, :authentication_mode) SENSITIVE = [] include Aws::Structure end |
#bootstrap_cluster_creator_admin_permissions ⇒ Boolean
Specifies whether or not the cluster creator IAM principal was set
as a cluster admin access entry during cluster creation time. The
default value is true
.
1293 1294 1295 1296 1297 1298 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 1293 class CreateAccessConfigRequest < Struct.new( :bootstrap_cluster_creator_admin_permissions, :authentication_mode) SENSITIVE = [] include Aws::Structure end |