AddonAttributes
- class aws_cdk.aws_eks.AddonAttributes(*, addon_name, cluster_name)
Bases:
object
Represents the attributes of an addon for an Amazon EKS cluster.
- Parameters:
addon_name (
str
) – The name of the addon.cluster_name (
str
) – The name of the Amazon EKS cluster the addon is associated with.
- 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_attributes = eks.AddonAttributes( addon_name="addonName", cluster_name="clusterName" )
Attributes
- addon_name
The name of the addon.
- cluster_name
The name of the Amazon EKS cluster the addon is associated with.