interface NetworkAccessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCapability.NetworkAccessProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCapability_NetworkAccessProperty |
Java | software.amazon.awscdk.services.eks.CfnCapability.NetworkAccessProperty |
Python | aws_cdk.aws_eks.CfnCapability.NetworkAccessProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCapability » 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 { aws_eks as eks } from 'aws-cdk-lib';
const networkAccessProperty: eks.CfnCapability.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