UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

42 lines (41 loc) 1.76 kB
import { CfnResource, Resolvable } from '../../base'; export declare type InsightRule_Type = 'AWS::CloudWatch::InsightRule'; export declare const InsightRule_Type = "AWS::CloudWatch::InsightRule"; /** * Resource Type definition for AWS::CloudWatch::InsightRule {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html} */ export default function InsightRule(props: InsightRule_Properties): CfnResource<InsightRule_Properties>; /** * Resource Type definition for AWS::CloudWatch::InsightRule {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html} */ export declare type InsightRule_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulestate} */ RuleState: Resolvable<string>; Id?: Resolvable<string>; Arn?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody} */ RuleBody: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulename} */ RuleName: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-tags} */ Tags?: Tags; }; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-insightrule-tags.html} */ export declare type Tags = {};