@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.
14 lines (13 loc) • 399 B
TypeScript
import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
* Props for StatusFunction
*/
export interface StatusFunctionProps extends lambda.FunctionOptions {
}
/**
* An AWS Lambda function which executes src/status.
*/
export declare class StatusFunction extends lambda.Function {
constructor(scope: Construct, id: string, props?: StatusFunctionProps);
}