AccessEntryReference

class aws_cdk.aws_eks.AccessEntryReference(*, access_entry_arn, cluster_name, principal_arn)

Bases: object

A reference to a AccessEntry resource.

Parameters:
  • access_entry_arn (str) – The ARN of the AccessEntry resource.

  • cluster_name (str) – The ClusterName of the AccessEntry resource.

  • principal_arn (str) – The PrincipalArn of the AccessEntry resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_eks as eks

access_entry_reference = eks.AccessEntryReference(
    access_entry_arn="accessEntryArn",
    cluster_name="clusterName",
    principal_arn="principalArn"
)

Attributes

access_entry_arn

The ARN of the AccessEntry resource.

cluster_name

The ClusterName of the AccessEntry resource.

principal_arn

The PrincipalArn of the AccessEntry resource.