@activatedio/cdktf-google
Version:
TypeScript library for CDKTF for google
13 lines (12 loc) • 416 B
TypeScript
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 };