interface EksSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnService.EksSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnService_EksSourceProperty |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnService.EksSourceProperty |
Python | aws_cdk.aws_resiliencehubv2.CfnService.EksSourceProperty |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnService » 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-lib';
const eksSourceProperty: resiliencehubv2.CfnService.EksSourceProperty = {
clusterArn: 'clusterArn',
namespaces: ['namespaces'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | ARN of the EKS cluster. |
| namespaces | string[] | EKS namespaces. |
clusterArn
Type:
string
ARN of the EKS cluster.
namespaces
Type:
string[]
EKS namespaces.

.NET
Go
Java
Python
TypeScript