1. Packages
  2. AWS
  3. API Docs
  4. quicksight
  5. Dashboard
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.quicksight.Dashboard

Explore with Pulumi AI

Resource for managing a QuickSight Dashboard.

Example Usage

From Source Template

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.quicksight.Dashboard("example", {
    dashboardId: "example-id",
    name: "example-name",
    versionDescription: "version",
    sourceEntity: {
        sourceTemplate: {
            arn: source.arn,
            dataSetReferences: [{
                dataSetArn: dataset.arn,
                dataSetPlaceholder: "1",
            }],
        },
    },
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.quicksight.Dashboard("example",
    dashboard_id="example-id",
    name="example-name",
    version_description="version",
    source_entity={
        "source_template": {
            "arn": source["arn"],
            "data_set_references": [{
                "data_set_arn": dataset["arn"],
                "data_set_placeholder": "1",
            }],
        },
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/quicksight"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := quicksight.NewDashboard(ctx, "example", &quicksight.DashboardArgs{
			DashboardId:        pulumi.String("example-id"),
			Name:               pulumi.String("example-name"),
			VersionDescription: pulumi.String("version"),
			SourceEntity: &quicksight.DashboardSourceEntityArgs{
				SourceTemplate: &quicksight.DashboardSourceEntitySourceTemplateArgs{
					Arn: pulumi.Any(source.Arn),
					DataSetReferences: quicksight.DashboardSourceEntitySourceTemplateDataSetReferenceArray{
						&quicksight.DashboardSourceEntitySourceTemplateDataSetReferenceArgs{
							DataSetArn:         pulumi.Any(dataset.Arn),
							DataSetPlaceholder: pulumi.String("1"),
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.Quicksight.Dashboard("example", new()
    {
        DashboardId = "example-id",
        Name = "example-name",
        VersionDescription = "version",
        SourceEntity = new Aws.Quicksight.Inputs.DashboardSourceEntityArgs
        {
            SourceTemplate = new Aws.Quicksight.Inputs.DashboardSourceEntitySourceTemplateArgs
            {
                Arn = source.Arn,
                DataSetReferences = new[]
                {
                    new Aws.Quicksight.Inputs.DashboardSourceEntitySourceTemplateDataSetReferenceArgs
                    {
                        DataSetArn = dataset.Arn,
                        DataSetPlaceholder = "1",
                    },
                },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.quicksight.Dashboard;
import com.pulumi.aws.quicksight.DashboardArgs;
import com.pulumi.aws.quicksight.inputs.DashboardSourceEntityArgs;
import com.pulumi.aws.quicksight.inputs.DashboardSourceEntitySourceTemplateArgs;
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 example = new Dashboard("example", DashboardArgs.builder()
            .dashboardId("example-id")
            .name("example-name")
            .versionDescription("version")
            .sourceEntity(DashboardSourceEntityArgs.builder()
                .sourceTemplate(DashboardSourceEntitySourceTemplateArgs.builder()
                    .arn(source.arn())
                    .dataSetReferences(DashboardSourceEntitySourceTemplateDataSetReferenceArgs.builder()
                        .dataSetArn(dataset.arn())
                        .dataSetPlaceholder("1")
                        .build())
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: aws:quicksight:Dashboard
    properties:
      dashboardId: example-id
      name: example-name
      versionDescription: version
      sourceEntity:
        sourceTemplate:
          arn: ${source.arn}
          dataSetReferences:
            - dataSetArn: ${dataset.arn}
              dataSetPlaceholder: '1'
Copy

With Definition

Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  example:
    type: aws:quicksight:Dashboard
    properties:
      dashboardId: example-id
      name: example-name
      versionDescription: version
      definition:
        dataSetIdentifiersDeclarations:
          - dataSetArn: ${dataset.arn}
            identifier: '1'
        sheets:
          - title: Example
            sheetId: Example1
            visuals:
              - lineChartVisual:
                  visualId: LineChart
                  title:
                    formatText:
                      plainText: Line Chart Example
                  chartConfiguration:
                    fieldWells:
                      lineChartAggregatedFieldWells:
                        categories:
                          - categoricalDimensionField:
                              fieldId: '1'
                              column:
                                dataSetIdentifier: '1'
                                columnName: Column1
                        values:
                          - categoricalMeasureField:
                              fieldId: '2'
                              column:
                                dataSetIdentifier: '1'
                                columnName: Column1
                              aggregationFunction: COUNT
Copy

Create Dashboard Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Dashboard(name: string, args: DashboardArgs, opts?: CustomResourceOptions);
@overload
def Dashboard(resource_name: str,
              args: DashboardArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def Dashboard(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              dashboard_id: Optional[str] = None,
              version_description: Optional[str] = None,
              aws_account_id: Optional[str] = None,
              dashboard_publish_options: Optional[DashboardDashboardPublishOptionsArgs] = None,
              name: Optional[str] = None,
              parameters: Optional[DashboardParametersArgs] = None,
              permissions: Optional[Sequence[DashboardPermissionArgs]] = None,
              source_entity: Optional[DashboardSourceEntityArgs] = None,
              tags: Optional[Mapping[str, str]] = None,
              theme_arn: Optional[str] = None)
func NewDashboard(ctx *Context, name string, args DashboardArgs, opts ...ResourceOption) (*Dashboard, error)
public Dashboard(string name, DashboardArgs args, CustomResourceOptions? opts = null)
public Dashboard(String name, DashboardArgs args)
public Dashboard(String name, DashboardArgs args, CustomResourceOptions options)
type: aws:quicksight:Dashboard
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DashboardArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DashboardArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DashboardArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DashboardArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DashboardArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var awsDashboardResource = new Aws.Quicksight.Dashboard("awsDashboardResource", new()
{
    DashboardId = "string",
    VersionDescription = "string",
    AwsAccountId = "string",
    DashboardPublishOptions = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsArgs
    {
        AdHocFilteringOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsAdHocFilteringOptionArgs
        {
            AvailabilityStatus = "string",
        },
        DataPointDrillUpDownOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsDataPointDrillUpDownOptionArgs
        {
            AvailabilityStatus = "string",
        },
        DataPointMenuLabelOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsDataPointMenuLabelOptionArgs
        {
            AvailabilityStatus = "string",
        },
        DataPointTooltipOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsDataPointTooltipOptionArgs
        {
            AvailabilityStatus = "string",
        },
        ExportToCsvOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsExportToCsvOptionArgs
        {
            AvailabilityStatus = "string",
        },
        ExportWithHiddenFieldsOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsExportWithHiddenFieldsOptionArgs
        {
            AvailabilityStatus = "string",
        },
        SheetControlsOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsSheetControlsOptionArgs
        {
            VisibilityState = "string",
        },
        SheetLayoutElementMaximizationOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOptionArgs
        {
            AvailabilityStatus = "string",
        },
        VisualAxisSortOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsVisualAxisSortOptionArgs
        {
            AvailabilityStatus = "string",
        },
        VisualMenuOption = new Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsVisualMenuOptionArgs
        {
            AvailabilityStatus = "string",
        },
    },
    Name = "string",
    Parameters = new Aws.Quicksight.Inputs.DashboardParametersArgs
    {
        DateTimeParameters = new[]
        {
            new Aws.Quicksight.Inputs.DashboardParametersDateTimeParameterArgs
            {
                Name = "string",
                Values = new[]
                {
                    "string",
                },
            },
        },
        DecimalParameters = new[]
        {
            new Aws.Quicksight.Inputs.DashboardParametersDecimalParameterArgs
            {
                Name = "string",
                Values = new[]
                {
                    0,
                },
            },
        },
        IntegerParameters = new[]
        {
            new Aws.Quicksight.Inputs.DashboardParametersIntegerParameterArgs
            {
                Name = "string",
                Values = new[]
                {
                    0,
                },
            },
        },
        StringParameters = new[]
        {
            new Aws.Quicksight.Inputs.DashboardParametersStringParameterArgs
            {
                Name = "string",
                Values = new[]
                {
                    "string",
                },
            },
        },
    },
    Permissions = new[]
    {
        new Aws.Quicksight.Inputs.DashboardPermissionArgs
        {
            Actions = new[]
            {
                "string",
            },
            Principal = "string",
        },
    },
    SourceEntity = new Aws.Quicksight.Inputs.DashboardSourceEntityArgs
    {
        SourceTemplate = new Aws.Quicksight.Inputs.DashboardSourceEntitySourceTemplateArgs
        {
            Arn = "string",
            DataSetReferences = new[]
            {
                new Aws.Quicksight.Inputs.DashboardSourceEntitySourceTemplateDataSetReferenceArgs
                {
                    DataSetArn = "string",
                    DataSetPlaceholder = "string",
                },
            },
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
    ThemeArn = "string",
});
Copy
example, err := quicksight.NewDashboard(ctx, "awsDashboardResource", &quicksight.DashboardArgs{
	DashboardId:        pulumi.String("string"),
	VersionDescription: pulumi.String("string"),
	AwsAccountId:       pulumi.String("string"),
	DashboardPublishOptions: &quicksight.DashboardDashboardPublishOptionsArgs{
		AdHocFilteringOption: &quicksight.DashboardDashboardPublishOptionsAdHocFilteringOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
		DataPointDrillUpDownOption: &quicksight.DashboardDashboardPublishOptionsDataPointDrillUpDownOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
		DataPointMenuLabelOption: &quicksight.DashboardDashboardPublishOptionsDataPointMenuLabelOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
		DataPointTooltipOption: &quicksight.DashboardDashboardPublishOptionsDataPointTooltipOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
		ExportToCsvOption: &quicksight.DashboardDashboardPublishOptionsExportToCsvOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
		ExportWithHiddenFieldsOption: &quicksight.DashboardDashboardPublishOptionsExportWithHiddenFieldsOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
		SheetControlsOption: &quicksight.DashboardDashboardPublishOptionsSheetControlsOptionArgs{
			VisibilityState: pulumi.String("string"),
		},
		SheetLayoutElementMaximizationOption: &quicksight.DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
		VisualAxisSortOption: &quicksight.DashboardDashboardPublishOptionsVisualAxisSortOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
		VisualMenuOption: &quicksight.DashboardDashboardPublishOptionsVisualMenuOptionArgs{
			AvailabilityStatus: pulumi.String("string"),
		},
	},
	Name: pulumi.String("string"),
	Parameters: &quicksight.DashboardParametersArgs{
		DateTimeParameters: quicksight.DashboardParametersDateTimeParameterArray{
			&quicksight.DashboardParametersDateTimeParameterArgs{
				Name: pulumi.String("string"),
				Values: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
		DecimalParameters: quicksight.DashboardParametersDecimalParameterArray{
			&quicksight.DashboardParametersDecimalParameterArgs{
				Name: pulumi.String("string"),
				Values: pulumi.Float64Array{
					pulumi.Float64(0),
				},
			},
		},
		IntegerParameters: quicksight.DashboardParametersIntegerParameterArray{
			&quicksight.DashboardParametersIntegerParameterArgs{
				Name: pulumi.String("string"),
				Values: pulumi.IntArray{
					pulumi.Int(0),
				},
			},
		},
		StringParameters: quicksight.DashboardParametersStringParameterArray{
			&quicksight.DashboardParametersStringParameterArgs{
				Name: pulumi.String("string"),
				Values: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	Permissions: quicksight.DashboardPermissionArray{
		&quicksight.DashboardPermissionArgs{
			Actions: pulumi.StringArray{
				pulumi.String("string"),
			},
			Principal: pulumi.String("string"),
		},
	},
	SourceEntity: &quicksight.DashboardSourceEntityArgs{
		SourceTemplate: &quicksight.DashboardSourceEntitySourceTemplateArgs{
			Arn: pulumi.String("string"),
			DataSetReferences: quicksight.DashboardSourceEntitySourceTemplateDataSetReferenceArray{
				&quicksight.DashboardSourceEntitySourceTemplateDataSetReferenceArgs{
					DataSetArn:         pulumi.String("string"),
					DataSetPlaceholder: pulumi.String("string"),
				},
			},
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ThemeArn: pulumi.String("string"),
})
Copy
var awsDashboardResource = new Dashboard("awsDashboardResource", DashboardArgs.builder()
    .dashboardId("string")
    .versionDescription("string")
    .awsAccountId("string")
    .dashboardPublishOptions(DashboardDashboardPublishOptionsArgs.builder()
        .adHocFilteringOption(DashboardDashboardPublishOptionsAdHocFilteringOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .dataPointDrillUpDownOption(DashboardDashboardPublishOptionsDataPointDrillUpDownOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .dataPointMenuLabelOption(DashboardDashboardPublishOptionsDataPointMenuLabelOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .dataPointTooltipOption(DashboardDashboardPublishOptionsDataPointTooltipOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .exportToCsvOption(DashboardDashboardPublishOptionsExportToCsvOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .exportWithHiddenFieldsOption(DashboardDashboardPublishOptionsExportWithHiddenFieldsOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .sheetControlsOption(DashboardDashboardPublishOptionsSheetControlsOptionArgs.builder()
            .visibilityState("string")
            .build())
        .sheetLayoutElementMaximizationOption(DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .visualAxisSortOption(DashboardDashboardPublishOptionsVisualAxisSortOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .visualMenuOption(DashboardDashboardPublishOptionsVisualMenuOptionArgs.builder()
            .availabilityStatus("string")
            .build())
        .build())
    .name("string")
    .parameters(DashboardParametersArgs.builder()
        .dateTimeParameters(DashboardParametersDateTimeParameterArgs.builder()
            .name("string")
            .values("string")
            .build())
        .decimalParameters(DashboardParametersDecimalParameterArgs.builder()
            .name("string")
            .values(0)
            .build())
        .integerParameters(DashboardParametersIntegerParameterArgs.builder()
            .name("string")
            .values(0)
            .build())
        .stringParameters(DashboardParametersStringParameterArgs.builder()
            .name("string")
            .values("string")
            .build())
        .build())
    .permissions(DashboardPermissionArgs.builder()
        .actions("string")
        .principal("string")
        .build())
    .sourceEntity(DashboardSourceEntityArgs.builder()
        .sourceTemplate(DashboardSourceEntitySourceTemplateArgs.builder()
            .arn("string")
            .dataSetReferences(DashboardSourceEntitySourceTemplateDataSetReferenceArgs.builder()
                .dataSetArn("string")
                .dataSetPlaceholder("string")
                .build())
            .build())
        .build())
    .tags(Map.of("string", "string"))
    .themeArn("string")
    .build());
Copy
aws_dashboard_resource = aws.quicksight.Dashboard("awsDashboardResource",
    dashboard_id="string",
    version_description="string",
    aws_account_id="string",
    dashboard_publish_options={
        "ad_hoc_filtering_option": {
            "availability_status": "string",
        },
        "data_point_drill_up_down_option": {
            "availability_status": "string",
        },
        "data_point_menu_label_option": {
            "availability_status": "string",
        },
        "data_point_tooltip_option": {
            "availability_status": "string",
        },
        "export_to_csv_option": {
            "availability_status": "string",
        },
        "export_with_hidden_fields_option": {
            "availability_status": "string",
        },
        "sheet_controls_option": {
            "visibility_state": "string",
        },
        "sheet_layout_element_maximization_option": {
            "availability_status": "string",
        },
        "visual_axis_sort_option": {
            "availability_status": "string",
        },
        "visual_menu_option": {
            "availability_status": "string",
        },
    },
    name="string",
    parameters={
        "date_time_parameters": [{
            "name": "string",
            "values": ["string"],
        }],
        "decimal_parameters": [{
            "name": "string",
            "values": [0],
        }],
        "integer_parameters": [{
            "name": "string",
            "values": [0],
        }],
        "string_parameters": [{
            "name": "string",
            "values": ["string"],
        }],
    },
    permissions=[{
        "actions": ["string"],
        "principal": "string",
    }],
    source_entity={
        "source_template": {
            "arn": "string",
            "data_set_references": [{
                "data_set_arn": "string",
                "data_set_placeholder": "string",
            }],
        },
    },
    tags={
        "string": "string",
    },
    theme_arn="string")
Copy
const awsDashboardResource = new aws.quicksight.Dashboard("awsDashboardResource", {
    dashboardId: "string",
    versionDescription: "string",
    awsAccountId: "string",
    dashboardPublishOptions: {
        adHocFilteringOption: {
            availabilityStatus: "string",
        },
        dataPointDrillUpDownOption: {
            availabilityStatus: "string",
        },
        dataPointMenuLabelOption: {
            availabilityStatus: "string",
        },
        dataPointTooltipOption: {
            availabilityStatus: "string",
        },
        exportToCsvOption: {
            availabilityStatus: "string",
        },
        exportWithHiddenFieldsOption: {
            availabilityStatus: "string",
        },
        sheetControlsOption: {
            visibilityState: "string",
        },
        sheetLayoutElementMaximizationOption: {
            availabilityStatus: "string",
        },
        visualAxisSortOption: {
            availabilityStatus: "string",
        },
        visualMenuOption: {
            availabilityStatus: "string",
        },
    },
    name: "string",
    parameters: {
        dateTimeParameters: [{
            name: "string",
            values: ["string"],
        }],
        decimalParameters: [{
            name: "string",
            values: [0],
        }],
        integerParameters: [{
            name: "string",
            values: [0],
        }],
        stringParameters: [{
            name: "string",
            values: ["string"],
        }],
    },
    permissions: [{
        actions: ["string"],
        principal: "string",
    }],
    sourceEntity: {
        sourceTemplate: {
            arn: "string",
            dataSetReferences: [{
                dataSetArn: "string",
                dataSetPlaceholder: "string",
            }],
        },
    },
    tags: {
        string: "string",
    },
    themeArn: "string",
});
Copy
type: aws:quicksight:Dashboard
properties:
    awsAccountId: string
    dashboardId: string
    dashboardPublishOptions:
        adHocFilteringOption:
            availabilityStatus: string
        dataPointDrillUpDownOption:
            availabilityStatus: string
        dataPointMenuLabelOption:
            availabilityStatus: string
        dataPointTooltipOption:
            availabilityStatus: string
        exportToCsvOption:
            availabilityStatus: string
        exportWithHiddenFieldsOption:
            availabilityStatus: string
        sheetControlsOption:
            visibilityState: string
        sheetLayoutElementMaximizationOption:
            availabilityStatus: string
        visualAxisSortOption:
            availabilityStatus: string
        visualMenuOption:
            availabilityStatus: string
    name: string
    parameters:
        dateTimeParameters:
            - name: string
              values:
                - string
        decimalParameters:
            - name: string
              values:
                - 0
        integerParameters:
            - name: string
              values:
                - 0
        stringParameters:
            - name: string
              values:
                - string
    permissions:
        - actions:
            - string
          principal: string
    sourceEntity:
        sourceTemplate:
            arn: string
            dataSetReferences:
                - dataSetArn: string
                  dataSetPlaceholder: string
    tags:
        string: string
    themeArn: string
    versionDescription: string
Copy

Dashboard Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Dashboard resource accepts the following input properties:

DashboardId
This property is required.
Changes to this property will trigger replacement.
string
Identifier for the dashboard.
VersionDescription This property is required. string

A description of the current dashboard version being created/updated.

The following arguments are optional:

AwsAccountId Changes to this property will trigger replacement. string
AWS account ID.
DashboardPublishOptions DashboardDashboardPublishOptions
Options for publishing the dashboard. See dashboard_publish_options.
Name string
Display name for the dashboard.
Parameters DashboardParameters
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
Permissions List<DashboardPermission>
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
SourceEntity DashboardSourceEntity
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
Tags Dictionary<string, string>
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
ThemeArn string
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
DashboardId
This property is required.
Changes to this property will trigger replacement.
string
Identifier for the dashboard.
VersionDescription This property is required. string

A description of the current dashboard version being created/updated.

The following arguments are optional:

AwsAccountId Changes to this property will trigger replacement. string
AWS account ID.
DashboardPublishOptions DashboardDashboardPublishOptionsArgs
Options for publishing the dashboard. See dashboard_publish_options.
Name string
Display name for the dashboard.
Parameters DashboardParametersArgs
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
Permissions []DashboardPermissionArgs
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
SourceEntity DashboardSourceEntityArgs
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
Tags map[string]string
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
ThemeArn string
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
dashboardId
This property is required.
Changes to this property will trigger replacement.
String
Identifier for the dashboard.
versionDescription This property is required. String

A description of the current dashboard version being created/updated.

The following arguments are optional:

awsAccountId Changes to this property will trigger replacement. String
AWS account ID.
dashboardPublishOptions DashboardDashboardPublishOptions
Options for publishing the dashboard. See dashboard_publish_options.
name String
Display name for the dashboard.
parameters DashboardParameters
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
permissions List<DashboardPermission>
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
sourceEntity DashboardSourceEntity
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
tags Map<String,String>
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
themeArn String
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
dashboardId
This property is required.
Changes to this property will trigger replacement.
string
Identifier for the dashboard.
versionDescription This property is required. string

A description of the current dashboard version being created/updated.

The following arguments are optional:

awsAccountId Changes to this property will trigger replacement. string
AWS account ID.
dashboardPublishOptions DashboardDashboardPublishOptions
Options for publishing the dashboard. See dashboard_publish_options.
name string
Display name for the dashboard.
parameters DashboardParameters
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
permissions DashboardPermission[]
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
sourceEntity DashboardSourceEntity
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
tags {[key: string]: string}
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
themeArn string
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
dashboard_id
This property is required.
Changes to this property will trigger replacement.
str
Identifier for the dashboard.
version_description This property is required. str

A description of the current dashboard version being created/updated.

The following arguments are optional:

aws_account_id Changes to this property will trigger replacement. str
AWS account ID.
dashboard_publish_options DashboardDashboardPublishOptionsArgs
Options for publishing the dashboard. See dashboard_publish_options.
name str
Display name for the dashboard.
parameters DashboardParametersArgs
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
permissions Sequence[DashboardPermissionArgs]
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
source_entity DashboardSourceEntityArgs
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
tags Mapping[str, str]
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
theme_arn str
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
dashboardId
This property is required.
Changes to this property will trigger replacement.
String
Identifier for the dashboard.
versionDescription This property is required. String

A description of the current dashboard version being created/updated.

The following arguments are optional:

awsAccountId Changes to this property will trigger replacement. String
AWS account ID.
dashboardPublishOptions Property Map
Options for publishing the dashboard. See dashboard_publish_options.
name String
Display name for the dashboard.
parameters Property Map
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
permissions List<Property Map>
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
sourceEntity Property Map
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
tags Map<String>
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
themeArn String
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.

Outputs

All input properties are implicitly available as output properties. Additionally, the Dashboard resource produces the following output properties:

Arn string
ARN of the dashboard.
CreatedTime string
The time that the dashboard was created.
Id string
The provider-assigned unique ID for this managed resource.
LastPublishedTime string
LastUpdatedTime string
The time that the dashboard was last updated.
SourceEntityArn string
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
Status string
The dashboard creation status.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

VersionNumber int
The version number of the dashboard version.
Arn string
ARN of the dashboard.
CreatedTime string
The time that the dashboard was created.
Id string
The provider-assigned unique ID for this managed resource.
LastPublishedTime string
LastUpdatedTime string
The time that the dashboard was last updated.
SourceEntityArn string
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
Status string
The dashboard creation status.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

VersionNumber int
The version number of the dashboard version.
arn String
ARN of the dashboard.
createdTime String
The time that the dashboard was created.
id String
The provider-assigned unique ID for this managed resource.
lastPublishedTime String
lastUpdatedTime String
The time that the dashboard was last updated.
sourceEntityArn String
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
status String
The dashboard creation status.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

versionNumber Integer
The version number of the dashboard version.
arn string
ARN of the dashboard.
createdTime string
The time that the dashboard was created.
id string
The provider-assigned unique ID for this managed resource.
lastPublishedTime string
lastUpdatedTime string
The time that the dashboard was last updated.
sourceEntityArn string
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
status string
The dashboard creation status.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

versionNumber number
The version number of the dashboard version.
arn str
ARN of the dashboard.
created_time str
The time that the dashboard was created.
id str
The provider-assigned unique ID for this managed resource.
last_published_time str
last_updated_time str
The time that the dashboard was last updated.
source_entity_arn str
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
status str
The dashboard creation status.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

version_number int
The version number of the dashboard version.
arn String
ARN of the dashboard.
createdTime String
The time that the dashboard was created.
id String
The provider-assigned unique ID for this managed resource.
lastPublishedTime String
lastUpdatedTime String
The time that the dashboard was last updated.
sourceEntityArn String
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
status String
The dashboard creation status.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

versionNumber Number
The version number of the dashboard version.

Look up Existing Dashboard Resource

Get an existing Dashboard resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DashboardState, opts?: CustomResourceOptions): Dashboard
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        aws_account_id: Optional[str] = None,
        created_time: Optional[str] = None,
        dashboard_id: Optional[str] = None,
        dashboard_publish_options: Optional[DashboardDashboardPublishOptionsArgs] = None,
        last_published_time: Optional[str] = None,
        last_updated_time: Optional[str] = None,
        name: Optional[str] = None,
        parameters: Optional[DashboardParametersArgs] = None,
        permissions: Optional[Sequence[DashboardPermissionArgs]] = None,
        source_entity: Optional[DashboardSourceEntityArgs] = None,
        source_entity_arn: Optional[str] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        theme_arn: Optional[str] = None,
        version_description: Optional[str] = None,
        version_number: Optional[int] = None) -> Dashboard
func GetDashboard(ctx *Context, name string, id IDInput, state *DashboardState, opts ...ResourceOption) (*Dashboard, error)
public static Dashboard Get(string name, Input<string> id, DashboardState? state, CustomResourceOptions? opts = null)
public static Dashboard get(String name, Output<String> id, DashboardState state, CustomResourceOptions options)
resources:  _:    type: aws:quicksight:Dashboard    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
ARN of the dashboard.
AwsAccountId Changes to this property will trigger replacement. string
AWS account ID.
CreatedTime string
The time that the dashboard was created.
DashboardId Changes to this property will trigger replacement. string
Identifier for the dashboard.
DashboardPublishOptions DashboardDashboardPublishOptions
Options for publishing the dashboard. See dashboard_publish_options.
LastPublishedTime string
LastUpdatedTime string
The time that the dashboard was last updated.
Name string
Display name for the dashboard.
Parameters DashboardParameters
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
Permissions List<DashboardPermission>
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
SourceEntity DashboardSourceEntity
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
SourceEntityArn string
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
Status string
The dashboard creation status.
Tags Dictionary<string, string>
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

ThemeArn string
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
VersionDescription string

A description of the current dashboard version being created/updated.

The following arguments are optional:

VersionNumber int
The version number of the dashboard version.
Arn string
ARN of the dashboard.
AwsAccountId Changes to this property will trigger replacement. string
AWS account ID.
CreatedTime string
The time that the dashboard was created.
DashboardId Changes to this property will trigger replacement. string
Identifier for the dashboard.
DashboardPublishOptions DashboardDashboardPublishOptionsArgs
Options for publishing the dashboard. See dashboard_publish_options.
LastPublishedTime string
LastUpdatedTime string
The time that the dashboard was last updated.
Name string
Display name for the dashboard.
Parameters DashboardParametersArgs
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
Permissions []DashboardPermissionArgs
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
SourceEntity DashboardSourceEntityArgs
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
SourceEntityArn string
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
Status string
The dashboard creation status.
Tags map[string]string
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

ThemeArn string
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
VersionDescription string

A description of the current dashboard version being created/updated.

The following arguments are optional:

VersionNumber int
The version number of the dashboard version.
arn String
ARN of the dashboard.
awsAccountId Changes to this property will trigger replacement. String
AWS account ID.
createdTime String
The time that the dashboard was created.
dashboardId Changes to this property will trigger replacement. String
Identifier for the dashboard.
dashboardPublishOptions DashboardDashboardPublishOptions
Options for publishing the dashboard. See dashboard_publish_options.
lastPublishedTime String
lastUpdatedTime String
The time that the dashboard was last updated.
name String
Display name for the dashboard.
parameters DashboardParameters
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
permissions List<DashboardPermission>
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
sourceEntity DashboardSourceEntity
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
sourceEntityArn String
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
status String
The dashboard creation status.
tags Map<String,String>
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

themeArn String
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
versionDescription String

A description of the current dashboard version being created/updated.

The following arguments are optional:

versionNumber Integer
The version number of the dashboard version.
arn string
ARN of the dashboard.
awsAccountId Changes to this property will trigger replacement. string
AWS account ID.
createdTime string
The time that the dashboard was created.
dashboardId Changes to this property will trigger replacement. string
Identifier for the dashboard.
dashboardPublishOptions DashboardDashboardPublishOptions
Options for publishing the dashboard. See dashboard_publish_options.
lastPublishedTime string
lastUpdatedTime string
The time that the dashboard was last updated.
name string
Display name for the dashboard.
parameters DashboardParameters
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
permissions DashboardPermission[]
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
sourceEntity DashboardSourceEntity
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
sourceEntityArn string
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
status string
The dashboard creation status.
tags {[key: string]: string}
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

themeArn string
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
versionDescription string

A description of the current dashboard version being created/updated.

The following arguments are optional:

versionNumber number
The version number of the dashboard version.
arn str
ARN of the dashboard.
aws_account_id Changes to this property will trigger replacement. str
AWS account ID.
created_time str
The time that the dashboard was created.
dashboard_id Changes to this property will trigger replacement. str
Identifier for the dashboard.
dashboard_publish_options DashboardDashboardPublishOptionsArgs
Options for publishing the dashboard. See dashboard_publish_options.
last_published_time str
last_updated_time str
The time that the dashboard was last updated.
name str
Display name for the dashboard.
parameters DashboardParametersArgs
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
permissions Sequence[DashboardPermissionArgs]
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
source_entity DashboardSourceEntityArgs
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
source_entity_arn str
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
status str
The dashboard creation status.
tags Mapping[str, str]
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

theme_arn str
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
version_description str

A description of the current dashboard version being created/updated.

The following arguments are optional:

version_number int
The version number of the dashboard version.
arn String
ARN of the dashboard.
awsAccountId Changes to this property will trigger replacement. String
AWS account ID.
createdTime String
The time that the dashboard was created.
dashboardId Changes to this property will trigger replacement. String
Identifier for the dashboard.
dashboardPublishOptions Property Map
Options for publishing the dashboard. See dashboard_publish_options.
lastPublishedTime String
lastUpdatedTime String
The time that the dashboard was last updated.
name String
Display name for the dashboard.
parameters Property Map
The parameters for the creation of the dashboard, which you want to use to override the default settings. A dashboard can have any type of parameters, and some parameters might accept multiple values. See parameters.
permissions List<Property Map>
A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.
sourceEntity Property Map
The entity that you are using as a source when you create the dashboard (template). Only one of definition or source_entity should be configured. See source_entity.
sourceEntityArn String
Amazon Resource Name (ARN) of a template that was used to create this dashboard.
status String
The dashboard creation status.
tags Map<String>
Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

themeArn String
The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. The theme ARN must exist in the same AWS account where you create the dashboard.
versionDescription String

A description of the current dashboard version being created/updated.

The following arguments are optional:

versionNumber Number
The version number of the dashboard version.

Supporting Types

DashboardDashboardPublishOptions
, DashboardDashboardPublishOptionsArgs

AdHocFilteringOption DashboardDashboardPublishOptionsAdHocFilteringOption
Ad hoc (one-time) filtering option. See ad_hoc_filtering_option.
DataPointDrillUpDownOption DashboardDashboardPublishOptionsDataPointDrillUpDownOption
The drill-down options of data points in a dashboard. See data_point_drill_up_down_option.
DataPointMenuLabelOption DashboardDashboardPublishOptionsDataPointMenuLabelOption
The data point menu label options of a dashboard. See data_point_menu_label_option.
DataPointTooltipOption DashboardDashboardPublishOptionsDataPointTooltipOption
The data point tool tip options of a dashboard. See data_point_tooltip_option.
ExportToCsvOption DashboardDashboardPublishOptionsExportToCsvOption
Export to .csv option. See export_to_csv_option.
ExportWithHiddenFieldsOption DashboardDashboardPublishOptionsExportWithHiddenFieldsOption
Determines if hidden fields are exported with a dashboard. See export_with_hidden_fields_option.
SheetControlsOption DashboardDashboardPublishOptionsSheetControlsOption
Sheet controls option. See sheet_controls_option.
SheetLayoutElementMaximizationOption DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOption
The sheet layout maximization options of a dashboard. See sheet_layout_element_maximization_option.
VisualAxisSortOption DashboardDashboardPublishOptionsVisualAxisSortOption
The axis sort options of a dashboard. See visual_axis_sort_option.
VisualMenuOption DashboardDashboardPublishOptionsVisualMenuOption
The menu options of a visual in a dashboard. See visual_menu_option.
AdHocFilteringOption DashboardDashboardPublishOptionsAdHocFilteringOption
Ad hoc (one-time) filtering option. See ad_hoc_filtering_option.
DataPointDrillUpDownOption DashboardDashboardPublishOptionsDataPointDrillUpDownOption
The drill-down options of data points in a dashboard. See data_point_drill_up_down_option.
DataPointMenuLabelOption DashboardDashboardPublishOptionsDataPointMenuLabelOption
The data point menu label options of a dashboard. See data_point_menu_label_option.
DataPointTooltipOption DashboardDashboardPublishOptionsDataPointTooltipOption
The data point tool tip options of a dashboard. See data_point_tooltip_option.
ExportToCsvOption DashboardDashboardPublishOptionsExportToCsvOption
Export to .csv option. See export_to_csv_option.
ExportWithHiddenFieldsOption DashboardDashboardPublishOptionsExportWithHiddenFieldsOption
Determines if hidden fields are exported with a dashboard. See export_with_hidden_fields_option.
SheetControlsOption DashboardDashboardPublishOptionsSheetControlsOption
Sheet controls option. See sheet_controls_option.
SheetLayoutElementMaximizationOption DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOption
The sheet layout maximization options of a dashboard. See sheet_layout_element_maximization_option.
VisualAxisSortOption DashboardDashboardPublishOptionsVisualAxisSortOption
The axis sort options of a dashboard. See visual_axis_sort_option.
VisualMenuOption DashboardDashboardPublishOptionsVisualMenuOption
The menu options of a visual in a dashboard. See visual_menu_option.
adHocFilteringOption DashboardDashboardPublishOptionsAdHocFilteringOption
Ad hoc (one-time) filtering option. See ad_hoc_filtering_option.
dataPointDrillUpDownOption DashboardDashboardPublishOptionsDataPointDrillUpDownOption
The drill-down options of data points in a dashboard. See data_point_drill_up_down_option.
dataPointMenuLabelOption DashboardDashboardPublishOptionsDataPointMenuLabelOption
The data point menu label options of a dashboard. See data_point_menu_label_option.
dataPointTooltipOption DashboardDashboardPublishOptionsDataPointTooltipOption
The data point tool tip options of a dashboard. See data_point_tooltip_option.
exportToCsvOption DashboardDashboardPublishOptionsExportToCsvOption
Export to .csv option. See export_to_csv_option.
exportWithHiddenFieldsOption DashboardDashboardPublishOptionsExportWithHiddenFieldsOption
Determines if hidden fields are exported with a dashboard. See export_with_hidden_fields_option.
sheetControlsOption DashboardDashboardPublishOptionsSheetControlsOption
Sheet controls option. See sheet_controls_option.
sheetLayoutElementMaximizationOption DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOption
The sheet layout maximization options of a dashboard. See sheet_layout_element_maximization_option.
visualAxisSortOption DashboardDashboardPublishOptionsVisualAxisSortOption
The axis sort options of a dashboard. See visual_axis_sort_option.
visualMenuOption DashboardDashboardPublishOptionsVisualMenuOption
The menu options of a visual in a dashboard. See visual_menu_option.
adHocFilteringOption DashboardDashboardPublishOptionsAdHocFilteringOption
Ad hoc (one-time) filtering option. See ad_hoc_filtering_option.
dataPointDrillUpDownOption DashboardDashboardPublishOptionsDataPointDrillUpDownOption
The drill-down options of data points in a dashboard. See data_point_drill_up_down_option.
dataPointMenuLabelOption DashboardDashboardPublishOptionsDataPointMenuLabelOption
The data point menu label options of a dashboard. See data_point_menu_label_option.
dataPointTooltipOption DashboardDashboardPublishOptionsDataPointTooltipOption
The data point tool tip options of a dashboard. See data_point_tooltip_option.
exportToCsvOption DashboardDashboardPublishOptionsExportToCsvOption
Export to .csv option. See export_to_csv_option.
exportWithHiddenFieldsOption DashboardDashboardPublishOptionsExportWithHiddenFieldsOption
Determines if hidden fields are exported with a dashboard. See export_with_hidden_fields_option.
sheetControlsOption DashboardDashboardPublishOptionsSheetControlsOption
Sheet controls option. See sheet_controls_option.
sheetLayoutElementMaximizationOption DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOption
The sheet layout maximization options of a dashboard. See sheet_layout_element_maximization_option.
visualAxisSortOption DashboardDashboardPublishOptionsVisualAxisSortOption
The axis sort options of a dashboard. See visual_axis_sort_option.
visualMenuOption DashboardDashboardPublishOptionsVisualMenuOption
The menu options of a visual in a dashboard. See visual_menu_option.
ad_hoc_filtering_option DashboardDashboardPublishOptionsAdHocFilteringOption
Ad hoc (one-time) filtering option. See ad_hoc_filtering_option.
data_point_drill_up_down_option DashboardDashboardPublishOptionsDataPointDrillUpDownOption
The drill-down options of data points in a dashboard. See data_point_drill_up_down_option.
data_point_menu_label_option DashboardDashboardPublishOptionsDataPointMenuLabelOption
The data point menu label options of a dashboard. See data_point_menu_label_option.
data_point_tooltip_option DashboardDashboardPublishOptionsDataPointTooltipOption
The data point tool tip options of a dashboard. See data_point_tooltip_option.
export_to_csv_option DashboardDashboardPublishOptionsExportToCsvOption
Export to .csv option. See export_to_csv_option.
export_with_hidden_fields_option DashboardDashboardPublishOptionsExportWithHiddenFieldsOption
Determines if hidden fields are exported with a dashboard. See export_with_hidden_fields_option.
sheet_controls_option DashboardDashboardPublishOptionsSheetControlsOption
Sheet controls option. See sheet_controls_option.
sheet_layout_element_maximization_option DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOption
The sheet layout maximization options of a dashboard. See sheet_layout_element_maximization_option.
visual_axis_sort_option DashboardDashboardPublishOptionsVisualAxisSortOption
The axis sort options of a dashboard. See visual_axis_sort_option.
visual_menu_option DashboardDashboardPublishOptionsVisualMenuOption
The menu options of a visual in a dashboard. See visual_menu_option.
adHocFilteringOption Property Map
Ad hoc (one-time) filtering option. See ad_hoc_filtering_option.
dataPointDrillUpDownOption Property Map
The drill-down options of data points in a dashboard. See data_point_drill_up_down_option.
dataPointMenuLabelOption Property Map
The data point menu label options of a dashboard. See data_point_menu_label_option.
dataPointTooltipOption Property Map
The data point tool tip options of a dashboard. See data_point_tooltip_option.
exportToCsvOption Property Map
Export to .csv option. See export_to_csv_option.
exportWithHiddenFieldsOption Property Map
Determines if hidden fields are exported with a dashboard. See export_with_hidden_fields_option.
sheetControlsOption Property Map
Sheet controls option. See sheet_controls_option.
sheetLayoutElementMaximizationOption Property Map
The sheet layout maximization options of a dashboard. See sheet_layout_element_maximization_option.
visualAxisSortOption Property Map
The axis sort options of a dashboard. See visual_axis_sort_option.
visualMenuOption Property Map
The menu options of a visual in a dashboard. See visual_menu_option.

DashboardDashboardPublishOptionsAdHocFilteringOption
, DashboardDashboardPublishOptionsAdHocFilteringOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardDashboardPublishOptionsDataPointDrillUpDownOption
, DashboardDashboardPublishOptionsDataPointDrillUpDownOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardDashboardPublishOptionsDataPointMenuLabelOption
, DashboardDashboardPublishOptionsDataPointMenuLabelOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardDashboardPublishOptionsDataPointTooltipOption
, DashboardDashboardPublishOptionsDataPointTooltipOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardDashboardPublishOptionsExportToCsvOption
, DashboardDashboardPublishOptionsExportToCsvOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardDashboardPublishOptionsExportWithHiddenFieldsOption
, DashboardDashboardPublishOptionsExportWithHiddenFieldsOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardDashboardPublishOptionsSheetControlsOption
, DashboardDashboardPublishOptionsSheetControlsOptionArgs

VisibilityState string
Visibility state. Possibles values: EXPANDED, COLLAPSED.
VisibilityState string
Visibility state. Possibles values: EXPANDED, COLLAPSED.
visibilityState String
Visibility state. Possibles values: EXPANDED, COLLAPSED.
visibilityState string
Visibility state. Possibles values: EXPANDED, COLLAPSED.
visibility_state str
Visibility state. Possibles values: EXPANDED, COLLAPSED.
visibilityState String
Visibility state. Possibles values: EXPANDED, COLLAPSED.

DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOption
, DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardDashboardPublishOptionsVisualAxisSortOption
, DashboardDashboardPublishOptionsVisualAxisSortOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardDashboardPublishOptionsVisualMenuOption
, DashboardDashboardPublishOptionsVisualMenuOptionArgs

AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
AvailabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus string
Availability status. Possibles values: ENABLED, DISABLED.
availability_status str
Availability status. Possibles values: ENABLED, DISABLED.
availabilityStatus String
Availability status. Possibles values: ENABLED, DISABLED.

DashboardParameters
, DashboardParametersArgs

dateTimeParameters List<Property Map>
A list of parameters that have a data type of date-time. See AWS API Documentation for complete description.
decimalParameters List<Property Map>
A list of parameters that have a data type of decimal. See AWS API Documentation for complete description.
integerParameters List<Property Map>
A list of parameters that have a data type of integer. See AWS API Documentation for complete description.
stringParameters List<Property Map>
A list of parameters that have a data type of string. See AWS API Documentation for complete description.

DashboardParametersDateTimeParameter
, DashboardParametersDateTimeParameterArgs

Name This property is required. string
Display name for the dashboard.
Values This property is required. List<string>
Name This property is required. string
Display name for the dashboard.
Values This property is required. []string
name This property is required. String
Display name for the dashboard.
values This property is required. List<String>
name This property is required. string
Display name for the dashboard.
values This property is required. string[]
name This property is required. str
Display name for the dashboard.
values This property is required. Sequence[str]
name This property is required. String
Display name for the dashboard.
values This property is required. List<String>

DashboardParametersDecimalParameter
, DashboardParametersDecimalParameterArgs

Name This property is required. string
Display name for the dashboard.
Values This property is required. List<double>
Name This property is required. string
Display name for the dashboard.
Values This property is required. []float64
name This property is required. String
Display name for the dashboard.
values This property is required. List<Double>
name This property is required. string
Display name for the dashboard.
values This property is required. number[]
name This property is required. str
Display name for the dashboard.
values This property is required. Sequence[float]
name This property is required. String
Display name for the dashboard.
values This property is required. List<Number>

DashboardParametersIntegerParameter
, DashboardParametersIntegerParameterArgs

Name This property is required. string
Display name for the dashboard.
Values This property is required. List<int>
Name This property is required. string
Display name for the dashboard.
Values This property is required. []int
name This property is required. String
Display name for the dashboard.
values This property is required. List<Integer>
name This property is required. string
Display name for the dashboard.
values This property is required. number[]
name This property is required. str
Display name for the dashboard.
values This property is required. Sequence[int]
name This property is required. String
Display name for the dashboard.
values This property is required. List<Number>

DashboardParametersStringParameter
, DashboardParametersStringParameterArgs

Name This property is required. string
Display name for the dashboard.
Values This property is required. List<string>
Name This property is required. string
Display name for the dashboard.
Values This property is required. []string
name This property is required. String
Display name for the dashboard.
values This property is required. List<String>
name This property is required. string
Display name for the dashboard.
values This property is required. string[]
name This property is required. str
Display name for the dashboard.
values This property is required. Sequence[str]
name This property is required. String
Display name for the dashboard.
values This property is required. List<String>

DashboardPermission
, DashboardPermissionArgs

Actions This property is required. List<string>
List of IAM actions to grant or revoke permissions on.
Principal This property is required. string
ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.
Actions This property is required. []string
List of IAM actions to grant or revoke permissions on.
Principal This property is required. string
ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.
actions This property is required. List<String>
List of IAM actions to grant or revoke permissions on.
principal This property is required. String
ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.
actions This property is required. string[]
List of IAM actions to grant or revoke permissions on.
principal This property is required. string
ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.
actions This property is required. Sequence[str]
List of IAM actions to grant or revoke permissions on.
principal This property is required. str
ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.
actions This property is required. List<String>
List of IAM actions to grant or revoke permissions on.
principal This property is required. String
ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.

DashboardSourceEntity
, DashboardSourceEntityArgs

SourceTemplate DashboardSourceEntitySourceTemplate
The source template. See source_template.
SourceTemplate DashboardSourceEntitySourceTemplate
The source template. See source_template.
sourceTemplate DashboardSourceEntitySourceTemplate
The source template. See source_template.
sourceTemplate DashboardSourceEntitySourceTemplate
The source template. See source_template.
source_template DashboardSourceEntitySourceTemplate
The source template. See source_template.
sourceTemplate Property Map
The source template. See source_template.

DashboardSourceEntitySourceTemplate
, DashboardSourceEntitySourceTemplateArgs

Arn This property is required. string
The Amazon Resource Name (ARN) of the resource.
DataSetReferences This property is required. List<DashboardSourceEntitySourceTemplateDataSetReference>
List of dataset references. See data_set_references.
Arn This property is required. string
The Amazon Resource Name (ARN) of the resource.
DataSetReferences This property is required. []DashboardSourceEntitySourceTemplateDataSetReference
List of dataset references. See data_set_references.
arn This property is required. String
The Amazon Resource Name (ARN) of the resource.
dataSetReferences This property is required. List<DashboardSourceEntitySourceTemplateDataSetReference>
List of dataset references. See data_set_references.
arn This property is required. string
The Amazon Resource Name (ARN) of the resource.
dataSetReferences This property is required. DashboardSourceEntitySourceTemplateDataSetReference[]
List of dataset references. See data_set_references.
arn This property is required. str
The Amazon Resource Name (ARN) of the resource.
data_set_references This property is required. Sequence[DashboardSourceEntitySourceTemplateDataSetReference]
List of dataset references. See data_set_references.
arn This property is required. String
The Amazon Resource Name (ARN) of the resource.
dataSetReferences This property is required. List<Property Map>
List of dataset references. See data_set_references.

DashboardSourceEntitySourceTemplateDataSetReference
, DashboardSourceEntitySourceTemplateDataSetReferenceArgs

DataSetArn This property is required. string
Dataset Amazon Resource Name (ARN).
DataSetPlaceholder This property is required. string
Dataset placeholder.
DataSetArn This property is required. string
Dataset Amazon Resource Name (ARN).
DataSetPlaceholder This property is required. string
Dataset placeholder.
dataSetArn This property is required. String
Dataset Amazon Resource Name (ARN).
dataSetPlaceholder This property is required. String
Dataset placeholder.
dataSetArn This property is required. string
Dataset Amazon Resource Name (ARN).
dataSetPlaceholder This property is required. string
Dataset placeholder.
data_set_arn This property is required. str
Dataset Amazon Resource Name (ARN).
data_set_placeholder This property is required. str
Dataset placeholder.
dataSetArn This property is required. String
Dataset Amazon Resource Name (ARN).
dataSetPlaceholder This property is required. String
Dataset placeholder.

Import

Using pulumi import, import a QuickSight Dashboard using the AWS account ID and dashboard ID separated by a comma (,). For example:

$ pulumi import aws:quicksight/dashboard:Dashboard example 123456789012,example-id
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.