AddonReference
- class aws_cdk.aws_eks.AddonReference(*, addon_arn, addon_name, cluster_name)
Bases:
object
A reference to a Addon resource.
- Parameters:
addon_arn (
str
) – The ARN of the Addon resource.addon_name (
str
) – The AddonName of the Addon resource.cluster_name (
str
) – The ClusterName of the Addon 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 addon_reference = eks.AddonReference( addon_arn="addonArn", addon_name="addonName", cluster_name="clusterName" )
Attributes
- addon_arn
The ARN of the Addon resource.
- addon_name
The AddonName of the Addon resource.
- cluster_name
The ClusterName of the Addon resource.