interface DefaultNewSheetConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.DefaultNewSheetConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.DefaultNewSheetConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.DefaultNewSheetConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»DefaultNewSheetConfigurationProperty | 
The configuration for default new sheet settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const defaultNewSheetConfigurationProperty: quicksight.CfnAnalysis.DefaultNewSheetConfigurationProperty = {
  interactiveLayoutConfiguration: {
    freeForm: {
      canvasSizeOptions: {
        screenCanvasSizeOptions: {
          optimizedViewPortWidth: 'optimizedViewPortWidth',
        },
      },
    },
    grid: {
      canvasSizeOptions: {
        screenCanvasSizeOptions: {
          resizeOption: 'resizeOption',
          // the properties below are optional
          optimizedViewPortWidth: 'optimizedViewPortWidth',
        },
      },
    },
  },
  paginatedLayoutConfiguration: {
    sectionBased: {
      canvasSizeOptions: {
        paperCanvasSizeOptions: {
          paperMargin: {
            bottom: 'bottom',
            left: 'left',
            right: 'right',
            top: 'top',
          },
          paperOrientation: 'paperOrientation',
          paperSize: 'paperSize',
        },
      },
    },
  },
  sheetContentType: 'sheetContentType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| interactive | IResolvable | Default | The options that determine the default settings for interactive layout configuration. | 
| paginated | IResolvable | Default | The options that determine the default settings for a paginated layout configuration. | 
| sheet | string | The option that determines the sheet content type. | 
interactiveLayoutConfiguration?
Type:
IResolvable | Default
(optional)
The options that determine the default settings for interactive layout configuration.
paginatedLayoutConfiguration?
Type:
IResolvable | Default
(optional)
The options that determine the default settings for a paginated layout configuration.
sheetContentType?
Type:
string
(optional)
The option that determines the sheet content type.
