interface AxisDisplayMinMaxRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.AxisDisplayMinMaxRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_AxisDisplayMinMaxRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.AxisDisplayMinMaxRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.AxisDisplayMinMaxRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnAnalysisPropsMixin » AxisDisplayMinMaxRangeProperty |
The minimum and maximum setup for an axis display range.
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 axisDisplayMinMaxRangeProperty: quicksight.CfnAnalysisPropsMixin.AxisDisplayMinMaxRangeProperty = {
maximum: 123,
minimum: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum? | number | The maximum setup for an axis display range. |
| minimum? | number | The minimum setup for an axis display range. |
maximum?
Type:
number
(optional)
The maximum setup for an axis display range.
minimum?
Type:
number
(optional)
The minimum setup for an axis display range.

.NET
Go
Java
Python
TypeScript