interface EksSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResilienceHubV2.CfnServicePropsMixin.EksSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresiliencehubv2#CfnServicePropsMixin_EksSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.resiliencehubv2.CfnServicePropsMixin.EksSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnServicePropsMixin.EksSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resiliencehubv2 » CfnServicePropsMixin » EksSourceProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resiliencehubv2 as resiliencehubv2 } from '@aws-cdk/cfn-property-mixins';
const eksSourceProperty: resiliencehubv2.CfnServicePropsMixin.EksSourceProperty = {
clusterArn: 'clusterArn',
namespaces: ['namespaces'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | ARN of the EKS cluster. |
| namespaces? | string[] | EKS namespaces. |
clusterArn?
Type:
string
(optional)
ARN of the EKS cluster.
namespaces?
Type:
string[]
(optional)
EKS namespaces.

.NET
Go
Java
Python
TypeScript