aws-cdk-lib.aws_quicksight.CfnTemplate.TableSideBorderOptionsProperty

interface TableSideBorderOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.TableSideBorderOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_TableSideBorderOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.TableSideBorderOptionsProperty
Pythonaws_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

NameTypeDescription
bottom?IResolvable | TableBorderOptionsPropertyThe table border options of the bottom border.
innerHorizontal?IResolvable | TableBorderOptionsPropertyThe table border options of the inner horizontal border.
innerVertical?IResolvable | TableBorderOptionsPropertyThe table border options of the inner vertical border.
left?IResolvable | TableBorderOptionsPropertyThe table border options of the left border.
right?IResolvable | TableBorderOptionsPropertyThe table border options of the right border.
top?IResolvable | TableBorderOptionsPropertyThe table border options of the top border.

bottom?

Type: IResolvable | TableBorderOptionsProperty (optional)

The table border options of the bottom border.


innerHorizontal?

Type: IResolvable | TableBorderOptionsProperty (optional)

The table border options of the inner horizontal border.


innerVertical?

Type: IResolvable | TableBorderOptionsProperty (optional)

The table border options of the inner vertical border.


left?

Type: IResolvable | TableBorderOptionsProperty (optional)

The table border options of the left border.


right?

Type: IResolvable | TableBorderOptionsProperty (optional)

The table border options of the right border.


top?

Type: IResolvable | TableBorderOptionsProperty (optional)

The table border options of the top border.