AccessEntryAttributes
- class aws_cdk.aws_eks_v2.AccessEntryAttributes(*, access_entry_arn, access_entry_name)
Bases:
objectRepresents the attributes of an access entry.
- Parameters:
access_entry_arn (
str) – The Amazon Resource Name (ARN) of the access entry.access_entry_name (
str) – The name of the access entry.
- 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_v2 as eks_v2 access_entry_attributes = eks_v2.AccessEntryAttributes( access_entry_arn="accessEntryArn", access_entry_name="accessEntryName" )
Attributes
- access_entry_arn
The Amazon Resource Name (ARN) of the access entry.
- access_entry_name
The name of the access entry.