UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

16 lines (15 loc) 741 B
import { ResourceBase } from "../../resource"; import { Value, List } from "../../data-types"; export declare class NotebookInstanceLifecycleHook { Content?: Value<string>; constructor(properties: NotebookInstanceLifecycleHook); } export interface NotebookInstanceLifecycleConfigProperties { OnStart?: List<NotebookInstanceLifecycleHook>; NotebookInstanceLifecycleConfigName?: Value<string>; OnCreate?: List<NotebookInstanceLifecycleHook>; } export default class Inner_NotebookInstanceLifecycleConfig extends ResourceBase<NotebookInstanceLifecycleConfigProperties> { static NotebookInstanceLifecycleHook: typeof NotebookInstanceLifecycleHook; constructor(properties: NotebookInstanceLifecycleConfigProperties); }