interface PivotTableRowsLabelOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.PivotTableRowsLabelOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_PivotTableRowsLabelOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.PivotTableRowsLabelOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.PivotTableRowsLabelOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » PivotTableRowsLabelOptionsProperty |
The options for the label thta is located above the row headers.
This option is only applicable when RowsLayout is set to HIERARCHY .
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/cfn-property-mixins';
const pivotTableRowsLabelOptionsProperty: quicksight.CfnDashboardPropsMixin.PivotTableRowsLabelOptionsProperty = {
customLabel: 'customLabel',
visibility: 'visibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | The custom label string for the rows label. |
| visibility? | string | The visibility of the rows label. |
customLabel?
Type:
string
(optional)
The custom label string for the rows label.
visibility?
Type:
string
(optional)
The visibility of the rows label.

.NET
Go
Java
Python
TypeScript