@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.
12 lines (11 loc) • 337 B
TypeScript
import * as AWSLambda from 'aws-lambda';
/**
* @internal
*/
export interface BuildImageFunctionProperties {
ServiceToken: string;
RepoName: string;
ProjectName: string;
WaitHandle: string;
}
export declare function handler(event: AWSLambda.CloudFormationCustomResourceEvent, context: AWSLambda.Context): Promise<void>;