aws-cdk-lib.aws_quicksight.CfnTemplate.TableOptionsProperty

interface TableOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.TableOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_TableOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.TableOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.TableOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » TableOptionsProperty

The table 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 tableOptionsProperty: quicksight.CfnTemplate.TableOptionsProperty = {
  cellStyle: {
    backgroundColor: 'backgroundColor',
    border: {
      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,
      },
    },
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },
    height: 123,
    horizontalTextAlignment: 'horizontalTextAlignment',
    textWrap: 'textWrap',
    verticalTextAlignment: 'verticalTextAlignment',
    visibility: 'visibility',
  },
  headerStyle: {
    backgroundColor: 'backgroundColor',
    border: {
      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,
      },
    },
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },
    height: 123,
    horizontalTextAlignment: 'horizontalTextAlignment',
    textWrap: 'textWrap',
    verticalTextAlignment: 'verticalTextAlignment',
    visibility: 'visibility',
  },
  orientation: 'orientation',
  rowAlternateColorOptions: {
    rowAlternateColors: ['rowAlternateColors'],
    status: 'status',
  },
};

Properties

NameTypeDescription
cellStyle?IResolvable | TableCellStylePropertyThe table cell style of table cells.
headerStyle?IResolvable | TableCellStylePropertyThe table cell style of a table header.
orientation?stringThe orientation (vertical, horizontal) for a table.
rowAlternateColorOptions?IResolvable | RowAlternateColorOptionsPropertyThe row alternate color options (widget status, row alternate colors) for a table.

cellStyle?

Type: IResolvable | TableCellStyleProperty (optional)

The table cell style of table cells.


headerStyle?

Type: IResolvable | TableCellStyleProperty (optional)

The table cell style of a table header.


orientation?

Type: string (optional)

The orientation (vertical, horizontal) for a table.


rowAlternateColorOptions?

Type: IResolvable | RowAlternateColorOptionsProperty (optional)

The row alternate color options (widget status, row alternate colors) for a table.