1. Packages
  2. AWS Classic
  3. API Docs
  4. quicksight
  5. Dashboard

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

aws.quicksight.Dashboard

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

    Resource for managing a QuickSight Dashboard.

    Example Usage

    From Source Template

    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",
            VersionDescription = "version",
            SourceEntity = new Aws.Quicksight.Inputs.DashboardSourceEntityArgs
            {
                SourceTemplate = new Aws.Quicksight.Inputs.DashboardSourceEntitySourceTemplateArgs
                {
                    Arn = aws_quicksight_template.Source.Arn,
                    DataSetReferences = new[]
                    {
                        new Aws.Quicksight.Inputs.DashboardSourceEntitySourceTemplateDataSetReferenceArgs
                        {
                            DataSetArn = aws_quicksight_data_set.Dataset.Arn,
                            DataSetPlaceholder = "1",
                        },
                    },
                },
            },
        });
    
    });
    
    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"),
    			VersionDescription: pulumi.String("version"),
    			SourceEntity: &quicksight.DashboardSourceEntityArgs{
    				SourceTemplate: &quicksight.DashboardSourceEntitySourceTemplateArgs{
    					Arn: pulumi.Any(aws_quicksight_template.Source.Arn),
    					DataSetReferences: quicksight.DashboardSourceEntitySourceTemplateDataSetReferenceArray{
    						&quicksight.DashboardSourceEntitySourceTemplateDataSetReferenceArgs{
    							DataSetArn:         pulumi.Any(aws_quicksight_data_set.Dataset.Arn),
    							DataSetPlaceholder: pulumi.String("1"),
    						},
    					},
    				},
    			},
    		})
    		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.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")
                .versionDescription("version")
                .sourceEntity(DashboardSourceEntityArgs.builder()
                    .sourceTemplate(DashboardSourceEntitySourceTemplateArgs.builder()
                        .arn(aws_quicksight_template.source().arn())
                        .dataSetReferences(DashboardSourceEntitySourceTemplateDataSetReferenceArgs.builder()
                            .dataSetArn(aws_quicksight_data_set.dataset().arn())
                            .dataSetPlaceholder("1")
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.quicksight.Dashboard("example",
        dashboard_id="example-id",
        version_description="version",
        source_entity=aws.quicksight.DashboardSourceEntityArgs(
            source_template=aws.quicksight.DashboardSourceEntitySourceTemplateArgs(
                arn=aws_quicksight_template["source"]["arn"],
                data_set_references=[aws.quicksight.DashboardSourceEntitySourceTemplateDataSetReferenceArgs(
                    data_set_arn=aws_quicksight_data_set["dataset"]["arn"],
                    data_set_placeholder="1",
                )],
            ),
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.quicksight.Dashboard("example", {
        dashboardId: "example-id",
        versionDescription: "version",
        sourceEntity: {
            sourceTemplate: {
                arn: aws_quicksight_template.source.arn,
                dataSetReferences: [{
                    dataSetArn: aws_quicksight_data_set.dataset.arn,
                    dataSetPlaceholder: "1",
                }],
            },
        },
    });
    
    resources:
      example:
        type: aws:quicksight:Dashboard
        properties:
          dashboardId: example-id
          versionDescription: version
          sourceEntity:
            sourceTemplate:
              arn: ${aws_quicksight_template.source.arn}
              dataSetReferences:
                - dataSetArn: ${aws_quicksight_data_set.dataset.arn}
                  dataSetPlaceholder: '1'
    

    With Definition

    Coming soon!

    Coming soon!

    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 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")
                .versionDescription("version")
                .definition(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build());
    
        }
    }
    

    Coming soon!

    Coming soon!

    resources:
      example:
        type: aws:quicksight:Dashboard
        properties:
          dashboardId: example-id
          versionDescription: version
          definition:
            dataSetIdentifiersDeclarations:
              - dataSetArn: ${aws_quicksight_data_set.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
    

    Create Dashboard Resource

    new Dashboard(name: string, args: DashboardArgs, opts?: CustomResourceOptions);
    @overload
    def Dashboard(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  aws_account_id: Optional[str] = None,
                  dashboard_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,
                  version_description: Optional[str] = None)
    @overload
    def Dashboard(resource_name: str,
                  args: DashboardArgs,
                  opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The Dashboard resource accepts the following input properties:

    DashboardId string

    Identifier for the dashboard.

    VersionDescription string

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

    The following arguments are optional:

    AwsAccountId string

    AWS account ID.

    DashboardPublishOptions Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptions

    Options for publishing the dashboard. See dashboard_publish_options.

    Name string

    Display name for the dashboard.

    Parameters Pulumi.Aws.Quicksight.Inputs.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<Pulumi.Aws.Quicksight.Inputs.DashboardPermission>

    A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.

    SourceEntity Pulumi.Aws.Quicksight.Inputs.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 string

    Identifier for the dashboard.

    VersionDescription string

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

    The following arguments are optional:

    AwsAccountId 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 String

    Identifier for the dashboard.

    versionDescription String

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

    The following arguments are optional:

    awsAccountId 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 string

    Identifier for the dashboard.

    versionDescription string

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

    The following arguments are optional:

    awsAccountId 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 str

    Identifier for the dashboard.

    version_description str

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

    The following arguments are optional:

    aws_account_id 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 String

    Identifier for the dashboard.

    versionDescription String

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

    The following arguments are optional:

    awsAccountId 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

    The Amazon Resource Name (ARN) of the resource.

    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

    The Amazon Resource Name (ARN) of the resource.

    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

    The Amazon Resource Name (ARN) of the resource.

    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

    The Amazon Resource Name (ARN) of the resource.

    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

    The Amazon Resource Name (ARN) of the resource.

    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

    The Amazon Resource Name (ARN) of the resource.

    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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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

    The Amazon Resource Name (ARN) of the resource.

    AwsAccountId string

    AWS account ID.

    CreatedTime string

    The time that the dashboard was created.

    DashboardId string

    Identifier for the dashboard.

    DashboardPublishOptions Pulumi.Aws.Quicksight.Inputs.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 Pulumi.Aws.Quicksight.Inputs.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<Pulumi.Aws.Quicksight.Inputs.DashboardPermission>

    A set of resource permissions on the dashboard. Maximum of 64 items. See permissions.

    SourceEntity Pulumi.Aws.Quicksight.Inputs.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

    The Amazon Resource Name (ARN) of the resource.

    AwsAccountId string

    AWS account ID.

    CreatedTime string

    The time that the dashboard was created.

    DashboardId 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

    The Amazon Resource Name (ARN) of the resource.

    awsAccountId String

    AWS account ID.

    createdTime String

    The time that the dashboard was created.

    dashboardId 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

    The Amazon Resource Name (ARN) of the resource.

    awsAccountId string

    AWS account ID.

    createdTime string

    The time that the dashboard was created.

    dashboardId 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

    The Amazon Resource Name (ARN) of the resource.

    aws_account_id str

    AWS account ID.

    created_time str

    The time that the dashboard was created.

    dashboard_id 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

    The Amazon Resource Name (ARN) of the resource.

    awsAccountId String

    AWS account ID.

    createdTime String

    The time that the dashboard was created.

    dashboardId 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 Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsAdHocFilteringOption

    Ad hoc (one-time) filtering option. See ad_hoc_filtering_option.

    DataPointDrillUpDownOption Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsDataPointDrillUpDownOption

    The drill-down options of data points in a dashboard. See data_point_drill_up_down_option.

    DataPointMenuLabelOption Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsDataPointMenuLabelOption

    The data point menu label options of a dashboard. See data_point_menu_label_option.

    DataPointTooltipOption Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsDataPointTooltipOption

    The data point tool tip options of a dashboard. See data_point_tooltip_option.

    ExportToCsvOption Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsExportToCsvOption

    Export to .csv option. See export_to_csv_option.

    ExportWithHiddenFieldsOption Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsExportWithHiddenFieldsOption

    Determines if hidden fields are exported with a dashboard. See export_with_hidden_fields_option.

    SheetControlsOption Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsSheetControlsOption

    Sheet controls option. See sheet_controls_option.

    SheetLayoutElementMaximizationOption Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsSheetLayoutElementMaximizationOption

    The sheet layout maximization options of a dashboard. See sheet_layout_element_maximization_option.

    VisualAxisSortOption Pulumi.Aws.Quicksight.Inputs.DashboardDashboardPublishOptionsVisualAxisSortOption

    The axis sort options of a dashboard. See visual_axis_sort_option.

    VisualMenuOption Pulumi.Aws.Quicksight.Inputs.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 string

    Display name for the dashboard.

    Values List<string>
    Name string

    Display name for the dashboard.

    Values []string
    name String

    Display name for the dashboard.

    values List<String>
    name string

    Display name for the dashboard.

    values string[]
    name str

    Display name for the dashboard.

    values Sequence[str]
    name String

    Display name for the dashboard.

    values List<String>

    DashboardParametersDecimalParameter, DashboardParametersDecimalParameterArgs

    Name string

    Display name for the dashboard.

    Values List<double>
    Name string

    Display name for the dashboard.

    Values []float64
    name String

    Display name for the dashboard.

    values List<Double>
    name string

    Display name for the dashboard.

    values number[]
    name str

    Display name for the dashboard.

    values Sequence[float]
    name String

    Display name for the dashboard.

    values List<Number>

    DashboardParametersIntegerParameter, DashboardParametersIntegerParameterArgs

    Name string

    Display name for the dashboard.

    Values List<int>
    Name string

    Display name for the dashboard.

    Values []int
    name String

    Display name for the dashboard.

    values List<Integer>
    name string

    Display name for the dashboard.

    values number[]
    name str

    Display name for the dashboard.

    values Sequence[int]
    name String

    Display name for the dashboard.

    values List<Number>

    DashboardParametersStringParameter, DashboardParametersStringParameterArgs

    Name string

    Display name for the dashboard.

    Values List<string>
    Name string

    Display name for the dashboard.

    Values []string
    name String

    Display name for the dashboard.

    values List<String>
    name string

    Display name for the dashboard.

    values string[]
    name str

    Display name for the dashboard.

    values Sequence[str]
    name String

    Display name for the dashboard.

    values List<String>

    DashboardPermission, DashboardPermissionArgs

    Actions List<string>

    List of IAM actions to grant or revoke permissions on.

    Principal string

    ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.

    Actions []string

    List of IAM actions to grant or revoke permissions on.

    Principal string

    ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.

    actions List<String>

    List of IAM actions to grant or revoke permissions on.

    principal String

    ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.

    actions string[]

    List of IAM actions to grant or revoke permissions on.

    principal string

    ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.

    actions Sequence[str]

    List of IAM actions to grant or revoke permissions on.

    principal str

    ARN of the principal. See the ResourcePermission documentation for the applicable ARN values.

    actions List<String>

    List of IAM actions to grant or revoke permissions on.

    principal 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.

    source_template DashboardSourceEntitySourceTemplate

    The source template. See source_template.

    sourceTemplate Property Map

    The source template. See source_template.

    DashboardSourceEntitySourceTemplate, DashboardSourceEntitySourceTemplateArgs

    Arn string

    The Amazon Resource Name (ARN) of the resource.

    DataSetReferences List<Pulumi.Aws.Quicksight.Inputs.DashboardSourceEntitySourceTemplateDataSetReference>

    List of dataset references. See data_set_references.

    Arn string

    The Amazon Resource Name (ARN) of the resource.

    DataSetReferences []DashboardSourceEntitySourceTemplateDataSetReference

    List of dataset references. See data_set_references.

    arn String

    The Amazon Resource Name (ARN) of the resource.

    dataSetReferences List<DashboardSourceEntitySourceTemplateDataSetReference>

    List of dataset references. See data_set_references.

    arn string

    The Amazon Resource Name (ARN) of the resource.

    dataSetReferences DashboardSourceEntitySourceTemplateDataSetReference[]

    List of dataset references. See data_set_references.

    arn str

    The Amazon Resource Name (ARN) of the resource.

    data_set_references Sequence[DashboardSourceEntitySourceTemplateDataSetReference]

    List of dataset references. See data_set_references.

    arn String

    The Amazon Resource Name (ARN) of the resource.

    dataSetReferences List<Property Map>

    List of dataset references. See data_set_references.

    DashboardSourceEntitySourceTemplateDataSetReference, DashboardSourceEntitySourceTemplateDataSetReferenceArgs

    DataSetArn string

    Dataset Amazon Resource Name (ARN).

    DataSetPlaceholder string

    Dataset placeholder.

    DataSetArn string

    Dataset Amazon Resource Name (ARN).

    DataSetPlaceholder string

    Dataset placeholder.

    dataSetArn String

    Dataset Amazon Resource Name (ARN).

    dataSetPlaceholder String

    Dataset placeholder.

    dataSetArn string

    Dataset Amazon Resource Name (ARN).

    dataSetPlaceholder string

    Dataset placeholder.

    data_set_arn str

    Dataset Amazon Resource Name (ARN).

    data_set_placeholder str

    Dataset placeholder.

    dataSetArn String

    Dataset Amazon Resource Name (ARN).

    dataSetPlaceholder 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
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the aws Terraform Provider.

    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi