UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

20 lines (19 loc) 645 B
import { ResourceBase } from "../../resource"; import { Value, List } from "../../data-types"; export declare class Content { S3ObjectVersion?: Value<string>; S3Bucket: Value<string>; S3Key: Value<string>; constructor(properties: Content); } export interface LayerVersionProperties { CompatibleRuntimes?: List<Value<string>>; LicenseInfo?: Value<string>; Description?: Value<string>; LayerName?: Value<string>; Content: Content; } export default class Inner_LayerVersion extends ResourceBase<LayerVersionProperties> { static Content: typeof Content; constructor(properties: LayerVersionProperties); }