aws-cdk-lib.aws_quicksight.CfnAnalysis.GlobalTableBorderOptionsProperty

interface GlobalTableBorderOptionsProperty

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

NameTypeDescription
sideSpecificBorder?IResolvable | TableSideBorderOptionsPropertyDetermines the options for side specific border.
uniformBorder?IResolvable | TableBorderOptionsPropertyDetermines the options for uniform border.

sideSpecificBorder?

Type: IResolvable | TableSideBorderOptionsProperty (optional)

Determines the options for side specific border.


uniformBorder?

Type: IResolvable | TableBorderOptionsProperty (optional)

Determines the options for uniform border.