Class: Aws::EKS::Types::ArgoCdNetworkAccessConfigResponse

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

Overview

The response object containing network access configuration for the Argo CD capability’s managed API server endpoint. If VPC endpoint IDs are present, 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>

The list of VPC endpoint IDs associated with the managed Argo CD API server endpoint. Each VPC endpoint provides private connectivity from a specific VPC to the Argo CD server.

Returns:

  • (Array<String>)


693
694
695
696
697
# File 'lib/aws-sdk-eks/types.rb', line 693

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