11 lines
353 B
TypeScript
11 lines
353 B
TypeScript
import type { Construct } from 'constructs';
|
|
import * as lambda from '../../aws-lambda';
|
|
/**
|
|
* An AWS Lambda layer that includes the AWS CLI.
|
|
*/
|
|
export declare class AwsCliLayer extends lambda.LayerVersion {
|
|
/** Uniquely identifies this class. */
|
|
static readonly PROPERTY_INJECTION_ID: string;
|
|
constructor(scope: Construct, id: string);
|
|
}
|