Interface CfnCapabilityMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCapabilityMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:59.030Z") @Stability(Stable) public interface CfnCapabilityMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnCapabilityPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.eks.*;
 CfnCapabilityMixinProps cfnCapabilityMixinProps = CfnCapabilityMixinProps.builder()
         .capabilityName("capabilityName")
         .clusterName("clusterName")
         .configuration(CapabilityConfigurationProperty.builder()
                 .argoCd(ArgoCdProperty.builder()
                         .awsIdc(AwsIdcProperty.builder()
                                 .idcInstanceArn("idcInstanceArn")
                                 .idcManagedApplicationArn("idcManagedApplicationArn")
                                 .idcRegion("idcRegion")
                                 .build())
                         .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())
                 .build())
         .deletePropagationPolicy("deletePropagationPolicy")
         .roleArn("roleArn")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .type("type")
         .build();
 

See Also: