interface KubernetesResourceTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ARCRegionSwitch.Mixins.CfnPlanPropsMixin.KubernetesResourceTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsarcregionswitch/mixins#CfnPlanPropsMixin_KubernetesResourceTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.arcregionswitch.mixins.CfnPlanPropsMixin.KubernetesResourceTypeProperty |
Python | aws_cdk.mixins_preview.aws_arcregionswitch.mixins.CfnPlanPropsMixin.KubernetesResourceTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_arcregionswitch » mixins » CfnPlanPropsMixin » KubernetesResourceTypeProperty |
Defines the type of 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 { mixins as arcregionswitch_mixins } from '@aws-cdk/mixins-preview/aws-arcregionswitch';
const kubernetesResourceTypeProperty: arcregionswitch_mixins.CfnPlanPropsMixin.KubernetesResourceTypeProperty = {
apiVersion: 'apiVersion',
kind: 'kind',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API version type for the Kubernetes resource. |
| kind? | string | The kind for the Kubernetes resource. |
apiVersion?
Type:
string
(optional)
The API version type for the Kubernetes resource.
kind?
Type:
string
(optional)
The kind for the Kubernetes resource.

.NET
Go
Java
Python
TypeScript