UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

20 lines (19 loc) 606 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export declare class S3Location { Bucket: Value<string>; Key: Value<string>; ObjectVersion?: Value<string>; RoleArn: Value<string>; constructor(properties: S3Location); } export interface BuildProperties { Name?: Value<string>; OperatingSystem?: Value<string>; StorageLocation?: S3Location; Version?: Value<string>; } export default class Inner_Build extends ResourceBase<BuildProperties> { static S3Location: typeof S3Location; constructor(properties: BuildProperties); }