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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCapability.ArgoCdRoleMappingPropertystatic final classAn implementation forCfnCapability.ArgoCdRoleMappingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdentities
A list of IAM Identity Center identities (users or groups) that should be assigned this Argo CD role.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnCapability.SsoIdentityProperty>- See Also:
-
getRole
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).
- See Also:
-
builder
-