Interface CfnCapability.AwsIdcProperty

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

@Stability(Stable) public static interface CfnCapability.AwsIdcProperty extends software.amazon.jsii.JsiiSerializable
Configuration for integrating Argo CD with IAM Identity Center.

This allows you to use your organization's identity provider for authentication to 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.*;
 AwsIdcProperty awsIdcProperty = AwsIdcProperty.builder()
         .idcInstanceArn("idcInstanceArn")
         // the properties below are optional
         .idcManagedApplicationArn("idcManagedApplicationArn")
         .idcRegion("idcRegion")
         .build();
 

See Also: