Interface CfnCluster.OutpostConfigProperty

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

@Stability(Stable) public static interface CfnCluster.OutpostConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration of your local Amazon EKS cluster on an AWS Outpost.

Before creating a cluster on an Outpost, review Creating a local cluster on an Outpost in the Amazon EKS User Guide . This API isn't available for Amazon EKS clusters on the AWS cloud.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.eks.*;
 OutpostConfigProperty outpostConfigProperty = OutpostConfigProperty.builder()
         .controlPlaneInstanceType("controlPlaneInstanceType")
         .outpostArns(List.of("outpostArns"))
         // the properties below are optional
         .controlPlanePlacement(ControlPlanePlacementProperty.builder()
                 .groupName("groupName")
                 .build())
         .build();
 

See Also: