@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
16 lines (15 loc) • 471 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export declare class Tags {
constructor(properties: Tags);
}
export interface InsightRuleProperties {
RuleState: Value<string>;
RuleBody: Value<string>;
RuleName: Value<string>;
Tags?: Tags;
}
export default class Inner_InsightRule extends ResourceBase<InsightRuleProperties> {
static Tags: typeof Tags;
constructor(properties: InsightRuleProperties);
}