ClusterAddOn is the interface to which all Cluster addons should conform. If the Promise is returned then the framework will ensure promises are resolved before the Teams setup() and postDeploy() methods are invoked. If void is returned, then no dependency features apply.

Promise<cdk.Construct> | void

interface ClusterAddOn {
    id?: string;
    deploy(clusterInfo: ClusterInfo): void | Promise<Construct>;
}

Implemented by

Properties

Methods

Properties

id?: string

Optional identifier of the addon. This is needed for add-ons that can be added multiple times to the blueprint.

Methods