interface GlobalTableBorderOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.GlobalTableBorderOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.GlobalTableBorderOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.GlobalTableBorderOptionsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » 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 * as quicksight from '@aws-cdk/aws-quicksight';
const globalTableBorderOptionsProperty: quicksight.CfnDashboard.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.