ClusterProvider is the interface to which all Cluster Providers should conform.

interface ClusterProvider {
    createCluster(scope: Construct, vpc: IVpc, secretsEncryptionKey?: IKey, kubernetesVersion?: KubernetesVersion, clusterLogging?: ControlPlaneLogType[]): ClusterInfo;
}

Implemented by

Methods