Show / Hide Table of Contents

Enum AccessEntryType

Represents the different types of access entries that can be used in an Amazon EKS cluster.

Namespace: Amazon.CDK.AWS.EKS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum AccessEntryType
Syntax (vb)
Public Enum AccessEntryType
Remarks

Enum: true

ExampleMetadata: infused

Examples
Cluster cluster;
             Role nodeRole;


             // For EKS Auto Mode node roles
             cluster.GrantAccess("NodeAccess", nodeRole.RoleArn, new [] {  }, new GrantAccessOptions { AccessEntryType = AccessEntryType.EC2 });

Synopsis

Fields

EC2

Represents an EC2 access entry for EKS Auto Mode.

EC2_LINUX

Represents an EC2 Linux access entry.

EC2_WINDOWS

Represents an EC2 Windows access entry.

FARGATE_LINUX

Represents a Fargate Linux access entry.

HYBRID_LINUX

Represents a Hybrid Linux access entry for EKS Hybrid Nodes.

HYPERPOD_LINUX

Represents a HyperPod Linux access entry for Amazon SageMaker HyperPod.

STANDARD

Represents a standard access entry.

Fields

Name Description
EC2

Represents an EC2 access entry for EKS Auto Mode.

EC2_LINUX

Represents an EC2 Linux access entry.

EC2_WINDOWS

Represents an EC2 Windows access entry.

FARGATE_LINUX

Represents a Fargate Linux access entry.

HYBRID_LINUX

Represents a Hybrid Linux access entry for EKS Hybrid Nodes.

HYPERPOD_LINUX

Represents a HyperPod Linux access entry for Amazon SageMaker HyperPod.

STANDARD

Represents a standard access entry.

Back to top Generated by DocFX