DashboardArgs

data class DashboardArgs(val dashboardBody: Output<String>? = null, val dashboardName: Output<String>? = null) : ConvertibleToJava<DashboardArgs>

Provides a CloudWatch Dashboard resource.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const main = new aws.cloudwatch.Dashboard("main", {
dashboardName: "my-dashboard",
dashboardBody: JSON.stringify({
widgets: [
{
type: "metric",
x: 0,
y: 0,
width: 12,
height: 6,
properties: {
metrics: [[
"AWS/EC2",
"CPUUtilization",
"InstanceId",
"i-012345",
]],
period: 300,
stat: "Average",
region: "us-east-1",
title: "EC2 Instance CPU",
},
},
{
type: "text",
x: 0,
y: 7,
width: 3,
height: 3,
properties: {
markdown: "Hello world",
},
},
],
}),
});
import pulumi
import json
import pulumi_aws as aws
main = aws.cloudwatch.Dashboard("main",
dashboard_name="my-dashboard",
dashboard_body=json.dumps({
"widgets": [
{
"type": "metric",
"x": 0,
"y": 0,
"width": 12,
"height": 6,
"properties": {
"metrics": [[
"AWS/EC2",
"CPUUtilization",
"InstanceId",
"i-012345",
]],
"period": 300,
"stat": "Average",
"region": "us-east-1",
"title": "EC2 Instance CPU",
},
},
{
"type": "text",
"x": 0,
"y": 7,
"width": 3,
"height": 3,
"properties": {
"markdown": "Hello world",
},
},
],
}))
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var main = new Aws.CloudWatch.Dashboard("main", new()
{
DashboardName = "my-dashboard",
DashboardBody = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["widgets"] = new[]
{
new Dictionary<string, object?>
{
["type"] = "metric",
["x"] = 0,
["y"] = 0,
["width"] = 12,
["height"] = 6,
["properties"] = new Dictionary<string, object?>
{
["metrics"] = new[]
{
new[]
{
"AWS/EC2",
"CPUUtilization",
"InstanceId",
"i-012345",
},
},
["period"] = 300,
["stat"] = "Average",
["region"] = "us-east-1",
["title"] = "EC2 Instance CPU",
},
},
new Dictionary<string, object?>
{
["type"] = "text",
["x"] = 0,
["y"] = 7,
["width"] = 3,
["height"] = 3,
["properties"] = new Dictionary<string, object?>
{
["markdown"] = "Hello world",
},
},
},
}),
});
});
package main
import (
"encoding/json"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cloudwatch"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
tmpJSON0, err := json.Marshal(map[string]interface{}{
"widgets": []interface{}{
map[string]interface{}{
"type": "metric",
"x": 0,
"y": 0,
"width": 12,
"height": 6,
"properties": map[string]interface{}{
"metrics": [][]string{
[]string{
"AWS/EC2",
"CPUUtilization",
"InstanceId",
"i-012345",
},
},
"period": 300,
"stat": "Average",
"region": "us-east-1",
"title": "EC2 Instance CPU",
},
},
map[string]interface{}{
"type": "text",
"x": 0,
"y": 7,
"width": 3,
"height": 3,
"properties": map[string]interface{}{
"markdown": "Hello world",
},
},
},
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = cloudwatch.NewDashboard(ctx, "main", &cloudwatch.DashboardArgs{
DashboardName: pulumi.String("my-dashboard"),
DashboardBody: pulumi.String(json0),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cloudwatch.Dashboard;
import com.pulumi.aws.cloudwatch.DashboardArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var main = new Dashboard("main", DashboardArgs.builder()
.dashboardName("my-dashboard")
.dashboardBody(serializeJson(
jsonObject(
jsonProperty("widgets", jsonArray(
jsonObject(
jsonProperty("type", "metric"),
jsonProperty("x", 0),
jsonProperty("y", 0),
jsonProperty("width", 12),
jsonProperty("height", 6),
jsonProperty("properties", jsonObject(
jsonProperty("metrics", jsonArray(jsonArray(
"AWS/EC2",
"CPUUtilization",
"InstanceId",
"i-012345"
))),
jsonProperty("period", 300),
jsonProperty("stat", "Average"),
jsonProperty("region", "us-east-1"),
jsonProperty("title", "EC2 Instance CPU")
))
),
jsonObject(
jsonProperty("type", "text"),
jsonProperty("x", 0),
jsonProperty("y", 7),
jsonProperty("width", 3),
jsonProperty("height", 3),
jsonProperty("properties", jsonObject(
jsonProperty("markdown", "Hello world")
))
)
))
)))
.build());
}
}
resources:
main:
type: aws:cloudwatch:Dashboard
properties:
dashboardName: my-dashboard
dashboardBody:
fn::toJSON:
widgets:
- type: metric
x: 0
y: 0
width: 12
height: 6
properties:
metrics:
- - AWS/EC2
- CPUUtilization
- InstanceId
- i-012345
period: 300
stat: Average
region: us-east-1
title: EC2 Instance CPU
- type: text
x: 0
y: 7
width: 3
height: 3
properties:
markdown: Hello world

Import

Using pulumi import, import CloudWatch dashboards using the dashboard_name. For example:

$ pulumi import aws:cloudwatch/dashboard:Dashboard sample dashboard_name

Constructors

Link copied to clipboard
constructor(dashboardBody: Output<String>? = null, dashboardName: Output<String>? = null)

Properties

Link copied to clipboard
val dashboardBody: Output<String>? = null

The detailed information about the dashboard, including what widgets are included and their location on the dashboard. You can read more about the body structure in the documentation.

Link copied to clipboard
val dashboardName: Output<String>? = null

The name of the dashboard.

Functions

Link copied to clipboard
open override fun toJava(): DashboardArgs