UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

17 lines (16 loc) 582 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export declare class SourceBundle { S3Bucket: Value<string>; S3Key: Value<string>; constructor(properties: SourceBundle); } export interface ApplicationVersionProperties { ApplicationName: Value<string>; Description?: Value<string>; SourceBundle: SourceBundle; } export default class Inner_ApplicationVersion extends ResourceBase<ApplicationVersionProperties> { static SourceBundle: typeof SourceBundle; constructor(properties: ApplicationVersionProperties); }