AccessEntryAttributes
- class aws_cdk.aws_eks.AccessEntryAttributes(*, access_entry_arn, access_entry_name)
Bases:
object
Represents 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 as eks access_entry_attributes = eks.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.