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

 .NET
 Go
 Java
 Python
 TypeScript