interface PivotTableRowsLabelOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.PivotTableRowsLabelOptionsProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_PivotTableRowsLabelOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.PivotTableRowsLabelOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.PivotTableRowsLabelOptionsProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnTemplate»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-lib';
const pivotTableRowsLabelOptionsProperty: quicksight.CfnTemplate.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.
