interface TableSideBorderOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.TableSideBorderOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.TableSideBorderOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.TableSideBorderOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»TableSideBorderOptionsProperty | 
The side border options for a table.
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 tableSideBorderOptionsProperty: quicksight.CfnDashboard.TableSideBorderOptionsProperty = {
  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,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| bottom? | IResolvable | Table | The table border options of the bottom border. | 
| inner | IResolvable | Table | The table border options of the inner horizontal border. | 
| inner | IResolvable | Table | The table border options of the inner vertical border. | 
| left? | IResolvable | Table | The table border options of the left border. | 
| right? | IResolvable | Table | The table border options of the right border. | 
| top? | IResolvable | Table | The table border options of the top border. | 
bottom?
Type:
IResolvable | Table
(optional)
The table border options of the bottom border.
innerHorizontal?
Type:
IResolvable | Table
(optional)
The table border options of the inner horizontal border.
innerVertical?
Type:
IResolvable | Table
(optional)
The table border options of the inner vertical border.
left?
Type:
IResolvable | Table
(optional)
The table border options of the left border.
right?
Type:
IResolvable | Table
(optional)
The table border options of the right border.
top?
Type:
IResolvable | Table
(optional)
The table border options of the top border.
