aws-cdk-lib.aws_quicksight.CfnAnalysis.DataLabelTypeProperty

interface DataLabelTypeProperty

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

The option that determines the data label type.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

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 dataLabelTypeProperty: quicksight.CfnAnalysis.DataLabelTypeProperty = {
  dataPathLabelType: {
    fieldId: 'fieldId',
    fieldValue: 'fieldValue',
    visibility: 'visibility',
  },
  fieldLabelType: {
    fieldId: 'fieldId',
    visibility: 'visibility',
  },
  maximumLabelType: {
    visibility: 'visibility',
  },
  minimumLabelType: {
    visibility: 'visibility',
  },
  rangeEndsLabelType: {
    visibility: 'visibility',
  },
};

Properties

NameTypeDescription
dataPathLabelType?IResolvable | DataPathLabelTypePropertyThe option that specifies individual data values for labels.
fieldLabelType?IResolvable | FieldLabelTypePropertyDetermines the label configuration for the entire field.
maximumLabelType?IResolvable | MaximumLabelTypePropertyDetermines the label configuration for the maximum value in a visual.
minimumLabelType?IResolvable | MinimumLabelTypePropertyDetermines the label configuration for the minimum value in a visual.
rangeEndsLabelType?IResolvable | RangeEndsLabelTypePropertyDetermines the label configuration for range end value in a visual.

dataPathLabelType?

Type: IResolvable | DataPathLabelTypeProperty (optional)

The option that specifies individual data values for labels.


fieldLabelType?

Type: IResolvable | FieldLabelTypeProperty (optional)

Determines the label configuration for the entire field.


maximumLabelType?

Type: IResolvable | MaximumLabelTypeProperty (optional)

Determines the label configuration for the maximum value in a visual.


minimumLabelType?

Type: IResolvable | MinimumLabelTypeProperty (optional)

Determines the label configuration for the minimum value in a visual.


rangeEndsLabelType?

Type: IResolvable | RangeEndsLabelTypeProperty (optional)

Determines the label configuration for range end value in a visual.