UNPKG

@activatedio/cdktf-google

Version:
13 lines (12 loc) 416 B
import { Construct } from 'constructs'; import * as google from '@cdktf/provider-google'; interface IPrivateBucketProps { prefix: string; location: string; policy?: string; } declare class PrivateBucket extends Construct { readonly bucket: google.storageBucket.StorageBucket; constructor(scope: Construct, id: string, props: IPrivateBucketProps); } export { PrivateBucket, IPrivateBucketProps };