interface TileLayoutStyleProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTheme.TileLayoutStyleProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTheme.TileLayoutStyleProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTheme.TileLayoutStyleProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTheme»TileLayoutStyleProperty | 
The display options for the layout of tiles on a sheet.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const tileLayoutStyleProperty: quicksight.CfnTheme.TileLayoutStyleProperty = {
  gutter: {
    show: false,
  },
  margin: {
    show: false,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| gutter? | IResolvable | Gutter | The gutter settings that apply between tiles. | 
| margin? | IResolvable | Margin | The margin settings that apply around the outside edge of sheets. | 
gutter?
Type:
IResolvable | Gutter
(optional)
The gutter settings that apply between tiles.
margin?
Type:
IResolvable | Margin
(optional)
The margin settings that apply around the outside edge of sheets.
