interface DefaultInteractiveLayoutConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.DefaultInteractiveLayoutConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_DefaultInteractiveLayoutConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.DefaultInteractiveLayoutConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.DefaultInteractiveLayoutConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const defaultInteractiveLayoutConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.DefaultInteractiveLayoutConfigurationProperty = {
freeForm: {
canvasSizeOptions: {
screenCanvasSizeOptions: {
optimizedViewPortWidth: 'optimizedViewPortWidth',
},
},
},
grid: {
canvasSizeOptions: {
screenCanvasSizeOptions: {
optimizedViewPortWidth: 'optimizedViewPortWidth',
resizeOption: 'resizeOption',
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| free | IResolvable | Default | The options that determine the default settings of a free-form layout configuration. |
| grid? | IResolvable | Default | The options that determine the default settings for a grid layout configuration. |
freeForm?
Type:
IResolvable | Default
(optional)
The options that determine the default settings of a free-form layout configuration.
grid?
Type:
IResolvable | Default
(optional)
The options that determine the default settings for a grid layout configuration.

.NET
Go
Java
Python
TypeScript