interface TableBorderOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.TableBorderOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.TableBorderOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.TableBorderOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»TableBorderOptionsProperty | 
The border options for a table border.
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 tableBorderOptionsProperty: quicksight.CfnTemplate.TableBorderOptionsProperty = {
  color: 'color',
  style: 'style',
  thickness: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| color? | string | The color of a table border. | 
| style? | string | The style (none, solid) of a table border. | 
| thickness? | number | The thickness of a table border. | 
color?
Type:
string
(optional)
The color of a table border.
style?
Type:
string
(optional)
The style (none, solid) of a table border.
thickness?
Type:
number
(optional)
The thickness of a table border.
