interface KubernetesResourceTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.KubernetesResourceTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_KubernetesResourceTypeProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.KubernetesResourceTypeProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.KubernetesResourceTypeProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » 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 { aws_arcregionswitch as arcregionswitch } from 'aws-cdk-lib';
const kubernetesResourceTypeProperty: arcregionswitch.CfnPlan.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
The API version type for the Kubernetes resource.
kind
Type:
string
The kind for the Kubernetes resource.

.NET
Go
Java
Python
TypeScript