interface SheetStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnThemePropsMixin.SheetStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnThemePropsMixin_SheetStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnThemePropsMixin.SheetStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnThemePropsMixin.SheetStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnThemePropsMixin » SheetStyleProperty |
The theme display options for sheets.
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 sheetStyleProperty: quicksight_mixins.CfnThemePropsMixin.SheetStyleProperty = {
tile: {
border: {
show: false,
},
},
tileLayout: {
gutter: {
show: false,
},
margin: {
show: false,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| tile? | IResolvable | Tile | The display options for tiles. |
| tile | IResolvable | Tile | The layout options for tiles. |
tile?
Type:
IResolvable | Tile
(optional)
The display options for tiles.
tileLayout?
Type:
IResolvable | Tile
(optional)
The layout options for tiles.

.NET
Go
Java
Python
TypeScript