UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

49 lines (48 loc) 1.36 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource schema for AWS::IoTSiteWise::Dashboard */ export declare function getDashboard(args: GetDashboardArgs, opts?: pulumi.InvokeOptions): Promise<GetDashboardResult>; export interface GetDashboardArgs { /** * The ID of the dashboard. */ dashboardId: string; } export interface GetDashboardResult { /** * The ARN of the dashboard. */ readonly dashboardArn?: string; /** * The dashboard definition specified in a JSON literal. */ readonly dashboardDefinition?: string; /** * A description for the dashboard. */ readonly dashboardDescription?: string; /** * The ID of the dashboard. */ readonly dashboardId?: string; /** * A friendly name for the dashboard. */ readonly dashboardName?: string; /** * A list of key-value pairs that contain metadata for the dashboard. */ readonly tags?: outputs.Tag[]; } /** * Resource schema for AWS::IoTSiteWise::Dashboard */ export declare function getDashboardOutput(args: GetDashboardOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDashboardResult>; export interface GetDashboardOutputArgs { /** * The ID of the dashboard. */ dashboardId: pulumi.Input<string>; }