Class: Aws::EKS::Types::ArgoCdNetworkAccessConfigResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ArgoCdNetworkAccessConfigResponse
- 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
-
#vpce_ids ⇒ Array<String>
The list of VPC endpoint IDs associated with the managed Argo CD API server endpoint.
Instance Attribute Details
#vpce_ids ⇒ Array<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.
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 |