Show / Hide Table of Contents

Interface CfnDashboardPropsMixin.IDefaultInteractiveLayoutConfigurationProperty

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

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDashboardPropsMixin.IDefaultInteractiveLayoutConfigurationProperty
Syntax (vb)
Public Interface CfnDashboardPropsMixin.IDefaultInteractiveLayoutConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultinteractivelayoutconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;

             var defaultInteractiveLayoutConfigurationProperty = new DefaultInteractiveLayoutConfigurationProperty {
                 FreeForm = new DefaultFreeFormLayoutConfigurationProperty {
                     CanvasSizeOptions = new FreeFormLayoutCanvasSizeOptionsProperty {
                         ScreenCanvasSizeOptions = new FreeFormLayoutScreenCanvasSizeOptionsProperty {
                             OptimizedViewPortWidth = "optimizedViewPortWidth"
                         }
                     }
                 },
                 Grid = new DefaultGridLayoutConfigurationProperty {
                     CanvasSizeOptions = new GridLayoutCanvasSizeOptionsProperty {
                         ScreenCanvasSizeOptions = new GridLayoutScreenCanvasSizeOptionsProperty {
                             OptimizedViewPortWidth = "optimizedViewPortWidth",
                             ResizeOption = "resizeOption"
                         }
                     }
                 }
             };

Synopsis

Properties

FreeForm

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

Grid

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

Properties

FreeForm

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

object? FreeForm { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultinteractivelayoutconfiguration.html#cfn-quicksight-dashboard-defaultinteractivelayoutconfiguration-freeform

Type union: either IResolvable or CfnDashboardPropsMixin.IDefaultFreeFormLayoutConfigurationProperty

Grid

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

object? Grid { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultinteractivelayoutconfiguration.html#cfn-quicksight-dashboard-defaultinteractivelayoutconfiguration-grid

Type union: either IResolvable or CfnDashboardPropsMixin.IDefaultGridLayoutConfigurationProperty

Back to top Generated by DocFX