Show / Hide Table of Contents

Interface CfnTemplatePropsMixin.ISheetControlLayoutConfigurationProperty

The configuration that determines the elements and canvas size options of sheet control.

Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnTemplatePropsMixin.ISheetControlLayoutConfigurationProperty
Syntax (vb)
Public Interface CfnTemplatePropsMixin.ISheetControlLayoutConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetcontrollayoutconfiguration.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 sheetControlLayoutConfigurationProperty = new SheetControlLayoutConfigurationProperty {
                 GridLayout = new GridLayoutConfigurationProperty {
                     CanvasSizeOptions = new GridLayoutCanvasSizeOptionsProperty {
                         ScreenCanvasSizeOptions = new GridLayoutScreenCanvasSizeOptionsProperty {
                             OptimizedViewPortWidth = "optimizedViewPortWidth",
                             ResizeOption = "resizeOption"
                         }
                     },
                     Elements = new [] { new GridLayoutElementProperty {
                         ColumnIndex = 123,
                         ColumnSpan = 123,
                         ElementId = "elementId",
                         ElementType = "elementType",
                         RowIndex = 123,
                         RowSpan = 123
                     } }
                 }
             };

Synopsis

Properties

GridLayout

The configuration that determines the elements and canvas size options of sheet control.

Properties

GridLayout

The configuration that determines the elements and canvas size options of sheet control.

object? GridLayout { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetcontrollayoutconfiguration.html#cfn-quicksight-template-sheetcontrollayoutconfiguration-gridlayout

Type union: either IResolvable or CfnTemplatePropsMixin.IGridLayoutConfigurationProperty

Back to top Generated by DocFX