interface AddonAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Eks.V2.Alpha.AddonAttributes |
Go | github.com/aws/aws-cdk-go/awscdkeks-v2alpha/v2#AddonAttributes |
Java | software.amazon.awscdk.services.eks.v2.alpha.AddonAttributes |
Python | aws_cdk.aws_eks_v2_alpha.AddonAttributes |
TypeScript (source) | @aws-cdk/aws-eks-v2-alpha » AddonAttributes |
Represents the attributes of an addon for an Amazon EKS cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as eks_v2_alpha from '@aws-cdk/aws-eks-v2-alpha';
const addonAttributes: eks_v2_alpha.AddonAttributes = {
addonName: 'addonName',
clusterName: 'clusterName',
};
Properties
| Name | Type | Description |
|---|---|---|
| addon | string | The name of the addon. |
| cluster | string | The name of the Amazon EKS cluster the addon is associated with. |
addonName
Type:
string
The name of the addon.
clusterName
Type:
string
The name of the Amazon EKS cluster the addon is associated with.

.NET
Go
Java
Python
TypeScript (