interface ArgoCdRoleMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnCapabilityPropsMixin.ArgoCdRoleMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnCapabilityPropsMixin_ArgoCdRoleMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnCapabilityPropsMixin.ArgoCdRoleMappingProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnCapabilityPropsMixin.ArgoCdRoleMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnCapabilityPropsMixin » ArgoCdRoleMappingProperty |
A mapping between an Argo CD role and IAM Identity CenterIAM;
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 { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const argoCdRoleMappingProperty: eks_mixins.CfnCapabilityPropsMixin.ArgoCdRoleMappingProperty = {
identities: [{
id: 'id',
type: 'type',
}],
role: 'role',
};
Properties
| Name | Type | Description |
|---|---|---|
| identities? | IResolvable | (IResolvable | Sso)[] | A list of IAM Identity CenterIAM; |
| role? | string | The Argo CD role to assign. Valid values are:. |
identities?
Type:
IResolvable | (IResolvable | Sso)[]
(optional)
A list of IAM Identity CenterIAM;
Identity Center identities (users or groups) that should be assigned this Argo CD role.
role?
Type:
string
(optional)
The Argo CD role to assign. Valid values are:.
ADMIN– Full administrative access to Argo CD.EDITOR– Edit access to Argo CD resources.VIEWER– Read-only access to Argo CD resources.

.NET
Go
Java
Python
TypeScript