interface ArgoCdRoleMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCapability.ArgoCdRoleMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCapability_ArgoCdRoleMappingProperty |
Java | software.amazon.awscdk.services.eks.CfnCapability.ArgoCdRoleMappingProperty |
Python | aws_cdk.aws_eks.CfnCapability.ArgoCdRoleMappingProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCapability » ArgoCdRoleMappingProperty |
A mapping between an Argo CD role and IAM Identity Center identities.
This defines which users or groups have specific permissions in Argo CD.
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 argoCdRoleMappingProperty: eks.CfnCapability.ArgoCdRoleMappingProperty = {
identities: [{
id: 'id',
type: 'type',
}],
role: 'role',
};
Properties
| Name | Type | Description |
|---|---|---|
| identities | IResolvable | (IResolvable | Sso)[] | A list of IAM Identity Center identities (users or groups) that should be assigned this Argo CD role. |
| role | string | The Argo CD role to assign. |
identities
Type:
IResolvable | (IResolvable | Sso)[]
A list of IAM Identity Center identities (users or groups) that should be assigned this Argo CD role.
role
Type:
string
The Argo CD role to assign.
Valid values are: ADMIN (full administrative access to Argo CD), EDITOR (edit access to Argo CD resources), or VIEWER (read-only access to Argo CD resources).

.NET
Go
Java
Python
TypeScript