ClusterReference
- class aws_cdk.aws_eks.ClusterReference(*, cluster_arn, cluster_name)
Bases:
object
A reference to a Cluster resource.
- Parameters:
cluster_arn (
str
) – The ARN of the Cluster resource.cluster_name (
str
) – The Name of the Cluster 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 cluster_reference = eks.ClusterReference( cluster_arn="clusterArn", cluster_name="clusterName" )
Attributes
- cluster_arn
The ARN of the Cluster resource.
- cluster_name
The Name of the Cluster resource.