aws-cdk-lib.aws_quicksight.CfnTemplate.TotalOptionsProperty

interface TotalOptionsProperty

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

The total 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 totalOptionsProperty: quicksight.CfnTemplate.TotalOptionsProperty = {
  customLabel: 'customLabel',
  placement: 'placement',
  scrollStatus: 'scrollStatus',
  totalCellStyle: {
    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',
  },
  totalsVisibility: 'totalsVisibility',
};

Properties

NameTypeDescription
customLabel?stringThe custom label string for the total cells.
placement?stringThe placement (start, end) for the total cells.
scrollStatus?stringThe scroll status (pinned, scrolled) for the total cells.
totalCellStyle?IResolvable | TableCellStylePropertyCell styling options for the total cells.
totalsVisibility?stringThe visibility configuration for the total cells.

customLabel?

Type: string (optional)

The custom label string for the total cells.


placement?

Type: string (optional)

The placement (start, end) for the total cells.


scrollStatus?

Type: string (optional)

The scroll status (pinned, scrolled) for the total cells.


totalCellStyle?

Type: IResolvable | TableCellStyleProperty (optional)

Cell styling options for the total cells.


totalsVisibility?

Type: string (optional)

The visibility configuration for the total cells.