Interface CfnCapability.ArgoCdRoleMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCapability.ArgoCdRoleMappingProperty.Jsii$Proxy
Enclosing class:
CfnCapability

@Stability(Stable) public static interface CfnCapability.ArgoCdRoleMappingProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.eks.*;
 ArgoCdRoleMappingProperty argoCdRoleMappingProperty = ArgoCdRoleMappingProperty.builder()
         .identities(List.of(SsoIdentityProperty.builder()
                 .id("id")
                 .type("type")
                 .build()))
         .role("role")
         .build();
 

See Also: