1 | import { Construct } from 'constructs';
|
2 | import { CfnElement } from './cfn-element';
|
3 |
|
4 |
|
5 |
|
6 | export interface CfnHookProps {
|
7 | |
8 |
|
9 |
|
10 |
|
11 | readonly type: string;
|
12 | |
13 |
|
14 |
|
15 |
|
16 |
|
17 | readonly properties?: {
|
18 | [name: string]: any;
|
19 | };
|
20 | }
|
21 |
|
22 |
|
23 |
|
24 | export declare class CfnHook extends CfnElement {
|
25 | |
26 |
|
27 |
|
28 |
|
29 | readonly type: string;
|
30 | private readonly _cfnHookProperties?;
|
31 | |
32 |
|
33 |
|
34 | constructor(scope: Construct, id: string, props: CfnHookProps);
|
35 | /** @internal */
|
36 | _toCloudFormation(): object;
|
37 | protected renderProperties(props?: {
|
38 | [key: string]: any;
|
39 | }): {
|
40 | [key: string]: any;
|
41 | } | undefined;
|
42 | }
|