Interface CfnPlan.KubernetesScalingResourceProperty

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

@Stability(Stable) public static interface CfnPlan.KubernetesScalingResourceProperty extends software.amazon.jsii.JsiiSerializable
Defines a Kubernetes resource to scale in an Amazon EKS cluster.

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.*;
 KubernetesScalingResourceProperty kubernetesScalingResourceProperty = KubernetesScalingResourceProperty.builder()
         .name("name")
         .namespace("namespace")
         // the properties below are optional
         .hpaName("hpaName")
         .build();
 

See Also: