Show / Hide Table of Contents

Class CfnAnalysisPropsMixin.DefaultInteractiveLayoutConfigurationProperty

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

Inheritance
object
CfnAnalysisPropsMixin.DefaultInteractiveLayoutConfigurationProperty
Implements
CfnAnalysisPropsMixin.IDefaultInteractiveLayoutConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.DefaultInteractiveLayoutConfigurationProperty : CfnAnalysisPropsMixin.IDefaultInteractiveLayoutConfigurationProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.DefaultInteractiveLayoutConfigurationProperty Implements CfnAnalysisPropsMixin.IDefaultInteractiveLayoutConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-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.Mixins.Preview.AWS.QuickSight.Mixins;

             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

Constructors

DefaultInteractiveLayoutConfigurationProperty()

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

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.

Constructors

DefaultInteractiveLayoutConfigurationProperty()

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

public DefaultInteractiveLayoutConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-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.Mixins.Preview.AWS.QuickSight.Mixins;

             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"
                         }
                     }
                 }
             };

Properties

FreeForm

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

public object? FreeForm { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnAnalysisPropsMixin.IDefaultFreeFormLayoutConfigurationProperty

Grid

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

public object? Grid { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnAnalysisPropsMixin.IDefaultGridLayoutConfigurationProperty

Implements

CfnAnalysisPropsMixin.IDefaultInteractiveLayoutConfigurationProperty
Back to top Generated by DocFX