import { JsonObject } from '@angular-devkit/core'; export interface IPackageOptions extends JsonObject { /** * The path where your AWS CloudFormation template is located. */ templateFile: string; /** * */ outputTemplateFile: string; /** * * The name of the S3 bucket where this command uploads the artefacts that are referenced in your template. */ s3Bucket: string; /** * A prefix name that the command adds to the artefacts' name when it uploads them to the S3 bucket. The * prefix name is a path name (folder name) for the S3 bucket. */ s3Prefix: string | null; /** * If true, we skip the aws package command, which is unnecessary for a sub stack */ subStackOnly: boolean; /** * The region to upload resources */ region: string | null; } declare const _default: import("@angular-devkit/architect/src/internal").Builder; export default _default;