Interface CfnCapability.CapabilityConfigurationProperty

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

@Stability(Stable) public static interface CfnCapability.CapabilityConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for a capability.

The structure of this object varies depending on the capability type.

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.*;
 CapabilityConfigurationProperty capabilityConfigurationProperty = CapabilityConfigurationProperty.builder()
         .argoCd(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())
         .build();
 

See Also: