Interface CfnComputeEnvironmentPropsMixin.EksConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnComputeEnvironmentPropsMixin.EksConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnComputeEnvironmentPropsMixin

@Stability(Stable) public static interface CfnComputeEnvironmentPropsMixin.EksConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.mixins.preview.services.batch.mixins.*;
 EksConfigurationProperty eksConfigurationProperty = EksConfigurationProperty.builder()
         .eksClusterArn("eksClusterArn")
         .kubernetesNamespace("kubernetesNamespace")
         .build();
 

See Also: