UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

26 lines (25 loc) 1.16 kB
import { CfnResource, Resolvable } from '../../base'; export declare type Dashboard_Type = 'AWS::CloudWatch::Dashboard'; export declare const Dashboard_Type = "AWS::CloudWatch::Dashboard"; /** * Resource Type definition for AWS::CloudWatch::Dashboard {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html} */ export default function Dashboard(props: Dashboard_Properties): CfnResource<Dashboard_Properties>; /** * Resource Type definition for AWS::CloudWatch::Dashboard {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html} */ export declare type Dashboard_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname} */ DashboardName?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody} */ DashboardBody: Resolvable<string>; Id?: Resolvable<string>; };