interface TableBorderOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.TableBorderOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_TableBorderOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.TableBorderOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.TableBorderOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const tableBorderOptionsProperty: quicksight_mixins.CfnDashboardPropsMixin.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.

.NET
Go
Java
Python
TypeScript