Interface CfnCapability.ArgoCdProperty

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

@Stability(Stable) public static interface CfnCapability.ArgoCdProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for an Argo CD capability.

This includes the Kubernetes namespace, IAM Identity Center integration, RBAC role mappings, and network access configuration.

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.*;
 ArgoCdProperty argoCdProperty = ArgoCdProperty.builder()
         .awsIdc(AwsIdcProperty.builder()
                 .idcInstanceArn("idcInstanceArn")
                 // the properties below are optional
                 .idcManagedApplicationArn("idcManagedApplicationArn")
                 .idcRegion("idcRegion")
                 .build())
         // the properties below are optional
         .namespace("namespace")
         .networkAccess(NetworkAccessProperty.builder()
                 .vpceIds(List.of("vpceIds"))
                 .build())
         .rbacRoleMappings(List.of(ArgoCdRoleMappingProperty.builder()
                 .identities(List.of(SsoIdentityProperty.builder()
                         .id("id")
                         .type("type")
                         .build()))
                 .role("role")
                 .build()))
         .serverUrl("serverUrl")
         .build();
 

See Also: