interface TileLayoutStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnThemePropsMixin.TileLayoutStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnThemePropsMixin_TileLayoutStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnThemePropsMixin.TileLayoutStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnThemePropsMixin.TileLayoutStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnThemePropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const tileLayoutStyleProperty: quicksight_mixins.CfnThemePropsMixin.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.

.NET
Go
Java
Python
TypeScript