Interface CfnPlan.EksResourceScalingConfigurationProperty

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

@Stability(Stable) public static interface CfnPlan.EksResourceScalingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The AWS EKS resource scaling configuration.

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.arcregionswitch.*;
 EksResourceScalingConfigurationProperty eksResourceScalingConfigurationProperty = EksResourceScalingConfigurationProperty.builder()
         .kubernetesResourceType(KubernetesResourceTypeProperty.builder()
                 .apiVersion("apiVersion")
                 .kind("kind")
                 .build())
         // the properties below are optional
         .capacityMonitoringApproach("capacityMonitoringApproach")
         .eksClusters(List.of(EksClusterProperty.builder()
                 .clusterArn("clusterArn")
                 // the properties below are optional
                 .crossAccountRole("crossAccountRole")
                 .externalId("externalId")
                 .build()))
         .scalingResources(List.of(Map.of(
                 "scalingResourcesKey", Map.of(
                         "scalingResourcesKey", KubernetesScalingResourceProperty.builder()
                                 .name("name")
                                 .namespace("namespace")
                                 // the properties below are optional
                                 .hpaName("hpaName")
                                 .build()))))
         .targetPercent(123)
         .timeoutMinutes(123)
         .ungraceful(EksResourceScalingUngracefulProperty.builder()
                 .minimumSuccessPercentage(123)
                 .build())
         .build();
 

See Also: