interface KubernetesScalingResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.KubernetesScalingResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_KubernetesScalingResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.KubernetesScalingResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.KubernetesScalingResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » CfnPlanPropsMixin » KubernetesScalingResourceProperty |
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 { aws_arcregionswitch as arcregionswitch } from '@aws-cdk/cfn-property-mixins';
const kubernetesScalingResourceProperty: arcregionswitch.CfnPlanPropsMixin.KubernetesScalingResourceProperty = {
hpaName: 'hpaName',
name: 'name',
namespace: 'namespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| hpa | string | The hpaname for the Kubernetes resource. |
| name? | string | The name for the Kubernetes resource. |
| namespace? | string | The namespace for the Kubernetes resource. |
hpaName?
Type:
string
(optional)
The hpaname for the Kubernetes resource.
name?
Type:
string
(optional)
The name for the Kubernetes resource.
namespace?
Type:
string
(optional)
The namespace for the Kubernetes resource.

.NET
Go
Java
Python
TypeScript