cdk-s3-upload-presignedurl-api
Version:
API to get an S3 presigned url for file uploads
14 lines (13 loc) • 394 B
TypeScript
import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
* Props for IndexFunction
*/
export interface IndexFunctionProps extends lambda.FunctionOptions {
}
/**
* An AWS Lambda function which executes src/index.
*/
export declare class IndexFunction extends lambda.Function {
constructor(scope: Construct, id: string, props?: IndexFunctionProps);
}