interface AddonReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EKS.AddonReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awseks#AddonReference |
Java | software.amazon.awscdk.interfaces.eks.AddonReference |
Python | aws_cdk.interfaces.aws_eks.AddonReference |
TypeScript | aws-cdk-lib » interfaces » aws_eks » AddonReference |
A reference to a Addon resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as interfaces_aws_eks } from 'aws-cdk-lib/interfaces';
const addonReference: interfaces_aws_eks.AddonReference = {
addonArn: 'addonArn',
addonName: 'addonName',
clusterName: 'clusterName',
};
Properties
| Name | Type | Description |
|---|---|---|
| addon | string | The ARN of the Addon resource. |
| addon | string | The AddonName of the Addon resource. |
| cluster | string | The ClusterName of the Addon resource. |
addonArn
Type:
string
The ARN of the Addon resource.
addonName
Type:
string
The AddonName of the Addon resource.
clusterName
Type:
string
The ClusterName of the Addon resource.

.NET
Go
Java
Python
TypeScript