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.

10 lines (9 loc) 288 B
import * as AWSLambda from 'aws-lambda'; /** * @internal */ export interface DeleteResourcesProps { ServiceToken: string; ImageVersionArn: string; } export declare function handler(event: AWSLambda.CloudFormationCustomResourceEvent, _context: AWSLambda.Context): Promise<void>;