Class: Aws::EKS::Types::CreateAccessConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::CreateAccessConfigRequest
- Includes:
- Structure
- Defined in:
- 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`.
1208 1209 1210 1211 1212 1213 |
# File 'lib/aws-sdk-eks/types.rb', line 1208 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`.
1208 1209 1210 1211 1212 1213 |
# File 'lib/aws-sdk-eks/types.rb', line 1208 class CreateAccessConfigRequest < Struct.new( :bootstrap_cluster_creator_admin_permissions, :authentication_mode) SENSITIVE = [] include Aws::Structure end |