UNPKG

@cloudsnorkel/cdk-github-runners

Version:

CDK construct to create GitHub Actions self-hosted runners. Creates ephemeral runners on demand. Easy to deploy and highly customizable.

11 lines (10 loc) 393 B
import * as cdk from 'aws-cdk-lib'; import { Construct } from 'constructs'; /** * @internal */ export declare abstract class ImageBuilderObjectBase extends cdk.Resource { protected constructor(scope: Construct, id: string); protected generateVersion(type: 'Component' | 'ImageRecipe' | 'ContainerRecipe' | 'Workflow', name: string, data: any): string; private versionFunction; }