UNPKG

@goldstack/template-s3

Version:

Building blocks for linking a package to an AWS S3 bucket.

14 lines 523 B
import type { DeploymentConfiguration } from '@goldstack/infra'; export type { DeploymentConfiguration }; /** * The name of the bucket. No spaces, numbers or special characters other than '-' allowed. * * @title Bucket Name * @pattern ^[A-Za-z0-9-]*$ */ type BucketName = string; export interface ThisDeploymentConfiguration extends DeploymentConfiguration { bucketName: BucketName; } export type { ThisDeploymentConfiguration as S3DeploymentConfiguration }; //# sourceMappingURL=S3DeploymentConfiguration.d.ts.map