package awsquicksight // The configuration that determines the elements and canvas size options of sheet control. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // sheetControlLayoutConfigurationProperty := &SheetControlLayoutConfigurationProperty{ // GridLayout: &GridLayoutConfigurationProperty{ // Elements: []interface{}{ // &GridLayoutElementProperty{ // ColumnSpan: jsii.Number(123), // ElementId: jsii.String("elementId"), // ElementType: jsii.String("elementType"), // RowSpan: jsii.Number(123), // // // the properties below are optional // ColumnIndex: jsii.Number(123), // RowIndex: jsii.Number(123), // }, // }, // // // the properties below are optional // CanvasSizeOptions: &GridLayoutCanvasSizeOptionsProperty{ // ScreenCanvasSizeOptions: &GridLayoutScreenCanvasSizeOptionsProperty{ // ResizeOption: jsii.String("resizeOption"), // // // the properties below are optional // OptimizedViewPortWidth: jsii.String("optimizedViewPortWidth"), // }, // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetcontrollayoutconfiguration.html // type CfnTemplate_SheetControlLayoutConfigurationProperty struct { // The configuration that determines the elements and canvas size options of sheet control. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetcontrollayoutconfiguration.html#cfn-quicksight-template-sheetcontrollayoutconfiguration-gridlayout // GridLayout interface{} `field:"optional" json:"gridLayout" yaml:"gridLayout"` }