interface CapabilityConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCapability.CapabilityConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCapability_CapabilityConfigurationProperty |
Java | software.amazon.awscdk.services.eks.CfnCapability.CapabilityConfigurationProperty |
Python | aws_cdk.aws_eks.CfnCapability.CapabilityConfigurationProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCapability » CapabilityConfigurationProperty |
Configuration settings for a capability.
The structure of this object varies depending on the capability type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as eks } from 'aws-cdk-lib';
const capabilityConfigurationProperty: eks.CfnCapability.CapabilityConfigurationProperty = {
argoCd: {
awsIdc: {
idcInstanceArn: 'idcInstanceArn',
// the properties below are optional
idcManagedApplicationArn: 'idcManagedApplicationArn',
idcRegion: 'idcRegion',
},
// the properties below are optional
namespace: 'namespace',
networkAccess: {
vpceIds: ['vpceIds'],
},
rbacRoleMappings: [{
identities: [{
id: 'id',
type: 'type',
}],
role: 'role',
}],
serverUrl: 'serverUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| argo | IResolvable | Argo | Configuration settings for an Argo CD capability. |
argoCd?
Type:
IResolvable | Argo
(optional)
Configuration settings for an Argo CD capability.
This includes the Kubernetes namespace, IAM Identity Center integration, RBAC role mappings, and network access configuration.

.NET
Go
Java
Python
TypeScript