AwsAuthProps

class aws_cdk.aws_eks.AwsAuthProps(*, cluster)

Bases: object

Configuration props for the AwsAuth construct.

Parameters:

cluster (Cluster) – The EKS cluster to apply this configuration to. [disable-awslint:ref-via-interface]

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

# cluster: eks.Cluster

aws_auth_props = eks.AwsAuthProps(
    cluster=cluster
)

Attributes

cluster

The EKS cluster to apply this configuration to.

[disable-awslint:ref-via-interface]