UNPKG

@sheplu/aws-safe-modules

Version:

A collection of CDKTF modules for AWS, with security and compliance in mind

11 lines (10 loc) 307 B
import { Construct } from 'constructs'; export type ManagedS3Config = { bucket?: string; worm?: boolean; addBucketPermission?: Array<any>; }; export declare class ManagedS3 extends Construct { readonly instance: any; constructor(scope: Construct, id: string, config: ManagedS3Config); }