Class: Aws::EKS::Types::ArgoCdNetworkAccessConfigRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-eks/types.rb

Overview

Configuration for network access to the Argo CD capability’s managed API server endpoint. When VPC endpoint IDs are specified, public access is blocked and the Argo CD server is only accessible through the specified VPC endpoints.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#vpce_idsArray<String>

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.

Returns:

  • (Array<String>)


674
675
676
677
678
# File 'lib/aws-sdk-eks/types.rb', line 674

class ArgoCdNetworkAccessConfigRequest < Struct.new(
  :vpce_ids)
  SENSITIVE = []
  include Aws::Structure
end