UNPKG

@goldstack/template-s3

Version:

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

11 lines 609 B
import type { Deployment } from '@goldstack/infra'; import type { AWSDeployment } from '@goldstack/infra-aws'; import type { TerraformDeployment } from '@goldstack/utils-terraform'; import type { S3DeploymentConfiguration } from './S3DeploymentConfiguration'; export type { AWSDeployment, TerraformDeployment, Deployment, S3DeploymentConfiguration }; export interface ThisDeployment extends Deployment, AWSDeployment, TerraformDeployment { configuration: S3DeploymentConfiguration; } export type { ThisDeployment as S3Deployment }; export default ThisDeployment; //# sourceMappingURL=S3Deployment.d.ts.map