Files
2026-05-06 18:55:16 -05:00

15 lines
496 B
TypeScript

import type { Construct } from 'constructs';
import type * as lambda from '../../aws-lambda';
import type * as s3 from '../../aws-s3';
/**
* Use a S3 bucket as a Lambda destination
*/
export declare class S3Destination implements lambda.IDestination {
private readonly bucket;
constructor(bucket: s3.IBucket);
/**
* Returns a destination configuration
*/
bind(_scope: Construct, fn: lambda.IFunction, _options?: lambda.DestinationOptions): lambda.DestinationConfig;
}