interface KubernetesResourceTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.KubernetesResourceTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_KubernetesResourceTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.KubernetesResourceTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.KubernetesResourceTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » 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 { aws_arcregionswitch as arcregionswitch } from '@aws-cdk/cfn-property-mixins';
const kubernetesResourceTypeProperty: arcregionswitch.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