interface AddonAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.AddonAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#AddonAttributes |
Java | software.amazon.awscdk.services.eks.AddonAttributes |
Python | aws_cdk.aws_eks.AddonAttributes |
TypeScript (source) | aws-cdk-lib » aws_eks » 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 { aws_eks as eks } from 'aws-cdk-lib';
const addonAttributes: eks.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 (