interface TopicRangeFilterConstantProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTopic.TopicRangeFilterConstantProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTopic_TopicRangeFilterConstantProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTopic.TopicRangeFilterConstantProperty |
Python | aws_cdk.aws_quicksight.CfnTopic.TopicRangeFilterConstantProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTopic » TopicRangeFilterConstantProperty |
A constant value that is used in a range filter to specify the endpoints of the 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-lib';
const topicRangeFilterConstantProperty: quicksight.CfnTopic.TopicRangeFilterConstantProperty = {
constantType: 'constantType',
rangeConstant: {
maximum: 'maximum',
minimum: 'minimum',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| constant | string | The data type of the constant value that is used in a range filter. |
| range | IResolvable | Range | The value of the constant that is used to specify the endpoints of a range filter. |
constantType?
Type:
string
(optional)
The data type of the constant value that is used in a range filter.
Valid values for this structure are RANGE .
rangeConstant?
Type:
IResolvable | Range
(optional)
The value of the constant that is used to specify the endpoints of a range filter.

.NET
Go
Java
Python
TypeScript