aws-cdk-lib.aws_quicksight.CfnDashboard.DefaultInteractiveLayoutConfigurationProperty

interface DefaultInteractiveLayoutConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.DefaultInteractiveLayoutConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DefaultInteractiveLayoutConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.DefaultInteractiveLayoutConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.DefaultInteractiveLayoutConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » DefaultInteractiveLayoutConfigurationProperty

The options that determine the default settings for interactive layout configuration.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const defaultInteractiveLayoutConfigurationProperty: quicksight.CfnDashboard.DefaultInteractiveLayoutConfigurationProperty = {
  freeForm: {
    canvasSizeOptions: {
      screenCanvasSizeOptions: {
        optimizedViewPortWidth: 'optimizedViewPortWidth',
      },
    },
  },
  grid: {
    canvasSizeOptions: {
      screenCanvasSizeOptions: {
        resizeOption: 'resizeOption',

        // the properties below are optional
        optimizedViewPortWidth: 'optimizedViewPortWidth',
      },
    },
  },
};

Properties

NameTypeDescription
freeForm?IResolvable | DefaultFreeFormLayoutConfigurationPropertyThe options that determine the default settings of a free-form layout configuration.
grid?IResolvable | DefaultGridLayoutConfigurationPropertyThe options that determine the default settings for a grid layout configuration.

freeForm?

Type: IResolvable | DefaultFreeFormLayoutConfigurationProperty (optional)

The options that determine the default settings of a free-form layout configuration.


grid?

Type: IResolvable | DefaultGridLayoutConfigurationProperty (optional)

The options that determine the default settings for a grid layout configuration.