interface AccessEntryReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EKS.AccessEntryReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awseks#AccessEntryReference |
Java | software.amazon.awscdk.interfaces.eks.AccessEntryReference |
Python | aws_cdk.interfaces.aws_eks.AccessEntryReference |
TypeScript | aws-cdk-lib » interfaces » aws_eks » AccessEntryReference |
A reference to a AccessEntry resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as interfaces_aws_eks } from 'aws-cdk-lib/interfaces';
const accessEntryReference: interfaces_aws_eks.AccessEntryReference = {
accessEntryArn: 'accessEntryArn',
clusterName: 'clusterName',
principalArn: 'principalArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The ARN of the AccessEntry resource. |
| cluster | string | The ClusterName of the AccessEntry resource. |
| principal | string | The PrincipalArn of the AccessEntry resource. |
accessEntryArn
Type:
string
The ARN of the AccessEntry resource.
clusterName
Type:
string
The ClusterName of the AccessEntry resource.
principalArn
Type:
string
The PrincipalArn of the AccessEntry resource.

.NET
Go
Java
Python
TypeScript