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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlan.KubernetesScalingResourcePropertystatic final classAn implementation forCfnPlan.KubernetesScalingResourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name for the Kubernetes resource.- See Also:
-
getNamespace
The namespace for the Kubernetes resource.- See Also:
-
getHpaName
The hpaname for the Kubernetes resource.- See Also:
-
builder
-