Show / Hide Table of Contents

Class CfnTemplate.DefaultInteractiveLayoutConfigurationProperty

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

Inheritance
object
CfnTemplate.DefaultInteractiveLayoutConfigurationProperty
Implements
CfnTemplate.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.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.DefaultInteractiveLayoutConfigurationProperty : CfnTemplate.IDefaultInteractiveLayoutConfigurationProperty
Syntax (vb)
Public Class CfnTemplate.DefaultInteractiveLayoutConfigurationProperty Implements CfnTemplate.IDefaultInteractiveLayoutConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-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.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 {
                             ResizeOption = "resizeOption",

                             // the properties below are optional
                             OptimizedViewPortWidth = "optimizedViewPortWidth"
                         }
                     }
                 }
             };

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-template-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.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 {
                             ResizeOption = "resizeOption",

                             // the properties below are optional
                             OptimizedViewPortWidth = "optimizedViewPortWidth"
                         }
                     }
                 }
             };

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-template-defaultinteractivelayoutconfiguration.html#cfn-quicksight-template-defaultinteractivelayoutconfiguration-freeform

Type union: either IResolvable or CfnTemplate.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-template-defaultinteractivelayoutconfiguration.html#cfn-quicksight-template-defaultinteractivelayoutconfiguration-grid

Type union: either IResolvable or CfnTemplate.IDefaultGridLayoutConfigurationProperty

Implements

CfnTemplate.IDefaultInteractiveLayoutConfigurationProperty
Back to top Generated by DocFX