aws-cdk-lib.aws_quicksight.CfnAnalysis.AxisDisplayRangeProperty

interface AxisDisplayRangeProperty

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

The range setup of a numeric axis display range.

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';

declare const dataDriven: any;
const axisDisplayRangeProperty: quicksight.CfnAnalysis.AxisDisplayRangeProperty = {
  dataDriven: dataDriven,
  minMax: {
    maximum: 123,
    minimum: 123,
  },
};

Properties

NameTypeDescription
dataDriven?anyThe data-driven setup of an axis display range.
minMax?IResolvable | AxisDisplayMinMaxRangePropertyThe minimum and maximum setup of an axis display range.

dataDriven?

Type: any (optional)

The data-driven setup of an axis display range.


minMax?

Type: IResolvable | AxisDisplayMinMaxRangeProperty (optional)

The minimum and maximum setup of an axis display range.