interface GlobalTableBorderOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.GlobalTableBorderOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_GlobalTableBorderOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.GlobalTableBorderOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.GlobalTableBorderOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » GlobalTableBorderOptionsProperty |
Determines the border options for a table visual.
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 globalTableBorderOptionsProperty: quicksight_mixins.CfnDashboardPropsMixin.GlobalTableBorderOptionsProperty = {
sideSpecificBorder: {
bottom: {
color: 'color',
style: 'style',
thickness: 123,
},
innerHorizontal: {
color: 'color',
style: 'style',
thickness: 123,
},
innerVertical: {
color: 'color',
style: 'style',
thickness: 123,
},
left: {
color: 'color',
style: 'style',
thickness: 123,
},
right: {
color: 'color',
style: 'style',
thickness: 123,
},
top: {
color: 'color',
style: 'style',
thickness: 123,
},
},
uniformBorder: {
color: 'color',
style: 'style',
thickness: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| side | IResolvable | Table | Determines the options for side specific border. |
| uniform | IResolvable | Table | Determines the options for uniform border. |
sideSpecificBorder?
Type:
IResolvable | Table
(optional)
Determines the options for side specific border.
uniformBorder?
Type:
IResolvable | Table
(optional)
Determines the options for uniform border.

.NET
Go
Java
Python
TypeScript