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