interface EksClusterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.EksClusterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_EksClusterProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.EksClusterProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.EksClusterProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » EksClusterProperty |
The AWS EKS cluster execution block configuration.
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 eksClusterProperty: arcregionswitch.CfnPlan.EksClusterProperty = {
clusterArn: 'clusterArn',
// the properties below are optional
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The Amazon Resource Name (ARN) of an AWS EKS cluster. |
| cross | string | The cross account role for the configuration. |
| external | string | The external ID (secret key) for the configuration. |
clusterArn
Type:
string
The Amazon Resource Name (ARN) of an AWS EKS cluster.
crossAccountRole?
Type:
string
(optional)
The cross account role for the configuration.
externalId?
Type:
string
(optional)
The external ID (secret key) for the configuration.

.NET
Go
Java
Python
TypeScript