Class: Aws::EKS::Types::ArgoCdConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ArgoCdConfigRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Configuration settings for an Argo CD capability. This includes the Kubernetes namespace, IAM Identity CenterIAM; Identity Center integration, RBAC role mappings, and network access configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_idc ⇒ Types::ArgoCdAwsIdcConfigRequest
Configuration for IAM Identity CenterIAM; Identity Center integration.
-
#namespace ⇒ String
The Kubernetes namespace where Argo CD resources will be created.
-
#network_access ⇒ Types::ArgoCdNetworkAccessConfigRequest
Configuration for network access to the Argo CD capability’s managed API server endpoint.
-
#rbac_role_mappings ⇒ Array<Types::ArgoCdRoleMapping>
A list of role mappings that define which IAM Identity CenterIAM; Identity Center users or groups have which Argo CD roles.
Instance Attribute Details
#aws_idc ⇒ Types::ArgoCdAwsIdcConfigRequest
Configuration for IAM Identity CenterIAM; Identity Center integration. When configured, users can authenticate to Argo CD using their IAM Identity CenterIAM; Identity Center credentials.
608 609 610 611 612 613 614 615 |
# File 'lib/aws-sdk-eks/types.rb', line 608 class ArgoCdConfigRequest < Struct.new( :namespace, :aws_idc, :rbac_role_mappings, :network_access) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The Kubernetes namespace where Argo CD resources will be created. If not specified, the default namespace is used.
608 609 610 611 612 613 614 615 |
# File 'lib/aws-sdk-eks/types.rb', line 608 class ArgoCdConfigRequest < Struct.new( :namespace, :aws_idc, :rbac_role_mappings, :network_access) SENSITIVE = [] include Aws::Structure end |
#network_access ⇒ Types::ArgoCdNetworkAccessConfigRequest
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. When VPC endpoints are configured, public access is blocked and the Argo CD server is only accessible through the specified VPC endpoints.
608 609 610 611 612 613 614 615 |
# File 'lib/aws-sdk-eks/types.rb', line 608 class ArgoCdConfigRequest < Struct.new( :namespace, :aws_idc, :rbac_role_mappings, :network_access) SENSITIVE = [] include Aws::Structure end |
#rbac_role_mappings ⇒ Array<Types::ArgoCdRoleMapping>
A list of role mappings that define which IAM Identity CenterIAM; Identity Center users or groups have which Argo CD roles. Each mapping associates an Argo CD role (‘ADMIN`, `EDITOR`, or `VIEWER`) with one or more IAM Identity CenterIAM; Identity Center identities.
608 609 610 611 612 613 614 615 |
# File 'lib/aws-sdk-eks/types.rb', line 608 class ArgoCdConfigRequest < Struct.new( :namespace, :aws_idc, :rbac_role_mappings, :network_access) SENSITIVE = [] include Aws::Structure end |