interface AwsIdcProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnCapabilityPropsMixin.AwsIdcProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnCapabilityPropsMixin_AwsIdcProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnCapabilityPropsMixin.AwsIdcProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnCapabilityPropsMixin.AwsIdcProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnCapabilityPropsMixin » AwsIdcProperty |
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 { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const awsIdcProperty: eks_mixins.CfnCapabilityPropsMixin.AwsIdcProperty = {
idcInstanceArn: 'idcInstanceArn',
idcManagedApplicationArn: 'idcManagedApplicationArn',
idcRegion: 'idcRegion',
};
Properties
| Name | Type | Description |
|---|---|---|
| idc | string | The ARN of the IAM Identity Center instance to use for authentication. |
| idc | string | The ARN of the managed application created in IAM Identity Center for this Argo CD capability. |
| idc | string | The Region where your IAM Identity Center instance is located. |
idcInstanceArn?
Type:
string
(optional)
The ARN of the IAM Identity Center instance to use for authentication.
idcManagedApplicationArn?
Type:
string
(optional)
The ARN of the managed application created in IAM Identity Center for this Argo CD capability.
This application is automatically created and managed by EKS.
idcRegion?
Type:
string
(optional)
The Region where your IAM Identity Center instance is located.

.NET
Go
Java
Python
TypeScript