You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::EKS::Types::CreateClusterRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EKS::Types::CreateClusterRequest
 
- Defined in:
- (unknown)
Overview
When passing CreateClusterRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
  name: "ClusterName", # required
  version: "String",
  role_arn: "String", # required
  resources_vpc_config: { # required
    subnet_ids: ["String"],
    security_group_ids: ["String"],
    endpoint_public_access: false,
    endpoint_private_access: false,
    public_access_cidrs: ["String"],
  },
  kubernetes_network_config: {
    service_ipv_4_cidr: "String",
  },
  logging: {
    cluster_logging: [
      {
        types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
        enabled: false,
      },
    ],
  },
  client_request_token: "String",
  tags: {
    "TagKey" => "TagValue",
  },
  encryption_config: [
    {
      resources: ["String"],
      provider: {
        key_arn: "String",
      },
    },
  ],
}
Instance Attribute Summary collapse
- 
  
    
      #client_request_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. 
- 
  
    
      #encryption_config  ⇒ Array<Types::EncryptionConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The encryption configuration for the cluster. 
- 
  
    
      #kubernetes_network_config  ⇒ Types::KubernetesNetworkConfigRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Kubernetes network configuration for the cluster. 
- 
  
    
      #logging  ⇒ Types::Logging 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique name to give to your cluster. 
- 
  
    
      #resources_vpc_config  ⇒ Types::VpcConfigRequest 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The VPC configuration used by the cluster control plane. 
- 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf. 
- 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The metadata to apply to the cluster to assist with categorization and organization. 
- 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The desired Kubernetes version for your cluster. 
Instance Attribute Details
#client_request_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
#encryption_config ⇒ Array<Types::EncryptionConfig>
The encryption configuration for the cluster.
#kubernetes_network_config ⇒ Types::KubernetesNetworkConfigRequest
The Kubernetes network configuration for the cluster.
#logging ⇒ Types::Logging
Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren\'t exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide .
#name ⇒ String
The unique name to give to your cluster.
#resources_vpc_config ⇒ Types::VpcConfigRequest
The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see Cluster VPC Considerations and Cluster Security Group Considerations in the Amazon EKS User Guide. You must specify at least two subnets. You can specify up to five security groups, but we recommend that you use a dedicated security group for your cluster control plane.
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf. For more information, see Amazon EKS Service IAM Role in the Amazon EKS User Guide .
#tags ⇒ Hash<String,String>
The metadata to apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define.
#version ⇒ String
The desired Kubernetes version for your cluster. If you don\'t specify a value here, the latest version available in Amazon EKS is used.