interface NetworkAccessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnCapabilityPropsMixin.NetworkAccessProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnCapabilityPropsMixin_NetworkAccessProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnCapabilityPropsMixin.NetworkAccessProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnCapabilityPropsMixin.NetworkAccessProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnCapabilityPropsMixin » NetworkAccessProperty |
Configuration for network access to the Argo CD capability's managed API server endpoint.
By default, the Argo CD server is accessible via a public endpoint. You can optionally specify one or more VPC endpoint IDs to enable private connectivity from your VPCs.
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 networkAccessProperty: eks_mixins.CfnCapabilityPropsMixin.NetworkAccessProperty = {
vpceIds: ['vpceIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| vpce | string[] | A list of VPC endpoint IDs to associate with the managed Argo CD API server endpoint. |
vpceIds?
Type:
string[]
(optional)
A list of VPC endpoint IDs to associate with the managed Argo CD API server endpoint.
Each VPC endpoint provides private connectivity from a specific VPC to the Argo CD server. You can specify multiple VPC endpoint IDs to enable access from multiple VPCs.

.NET
Go
Java
Python
TypeScript