interface RangeConstantProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTopicPropsMixin.RangeConstantProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTopicPropsMixin_RangeConstantProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTopicPropsMixin.RangeConstantProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTopicPropsMixin.RangeConstantProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTopicPropsMixin » RangeConstantProperty |
The value of the constant that is used to specify the endpoints of a range filter.
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 rangeConstantProperty: quicksight.CfnTopicPropsMixin.RangeConstantProperty = {
maximum: 'maximum',
minimum: 'minimum',
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum? | string | The maximum value for a range constant. |
| minimum? | string | The minimum value for a range constant. |
maximum?
Type:
string
(optional)
The maximum value for a range constant.
minimum?
Type:
string
(optional)
The minimum value for a range constant.

.NET
Go
Java
Python
TypeScript