interface TableOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.TableOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.TableOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.TableOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»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 * as quicksight from '@aws-cdk/aws-quicksight';
const tableOptionsProperty: quicksight.CfnAnalysis.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
| Name | Type | Description | 
|---|---|---|
| cell | IResolvable | Table | The table cell style of table cells. | 
| header | IResolvable | Table | The table cell style of a table header. | 
| orientation? | string | The orientation (vertical, horizontal) for a table. | 
| row | IResolvable | Row | The row alternate color options (widget status, row alternate colors) for a table. | 
cellStyle?
Type:
IResolvable | Table
(optional)
The table cell style of table cells.
headerStyle?
Type:
IResolvable | Table
(optional)
The table cell style of a table header.
orientation?
Type:
string
(optional)
The orientation (vertical, horizontal) for a table.
rowAlternateColorOptions?
Type:
IResolvable | Row
(optional)
The row alternate color options (widget status, row alternate colors) for a table.
