interface EksConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Batch.Mixins.CfnComputeEnvironmentPropsMixin.EksConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbatch/mixins#CfnComputeEnvironmentPropsMixin_EksConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.batch.mixins.CfnComputeEnvironmentPropsMixin.EksConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_batch.mixins.CfnComputeEnvironmentPropsMixin.EksConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_batch » mixins » CfnComputeEnvironmentPropsMixin » EksConfigurationProperty |
Configuration for the Amazon EKS cluster that supports the AWS Batch compute environment.
The cluster must exist before the compute environment can be created.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as batch_mixins } from '@aws-cdk/mixins-preview/aws-batch';
const eksConfigurationProperty: batch_mixins.CfnComputeEnvironmentPropsMixin.EksConfigurationProperty = {
eksClusterArn: 'eksClusterArn',
kubernetesNamespace: 'kubernetesNamespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| eks | string | The Amazon Resource Name (ARN) of the Amazon EKS cluster. |
| kubernetes | string | The namespace of the Amazon EKS cluster. |
eksClusterArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon EKS cluster.
An example is arn: *aws* :eks: *us-east-1* : *123456789012* :cluster/ *ClusterForBatch* .
kubernetesNamespace?
Type:
string
(optional)
The namespace of the Amazon EKS cluster.
AWS Batch manages pods in this namespace. The value can't left empty or null. It must be fewer than 64 characters long, can't be set to default , can't start with " kube- ," and must match this regular expression: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ . For more information, see Namespaces in the Kubernetes documentation.

.NET
Go
Java
Python
TypeScript