interface TableSideBorderOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.TableSideBorderOptionsProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_TableSideBorderOptionsProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.TableSideBorderOptionsProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.TableSideBorderOptionsProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnTemplate » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const tableSideBorderOptionsProperty: quicksight.CfnTemplate.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.

 .NET
 Go
 Java
 Python
 TypeScript