interface TopicRangeFilterConstantProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnTopicPropsMixin.TopicRangeFilterConstantProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnTopicPropsMixin_TopicRangeFilterConstantProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnTopicPropsMixin.TopicRangeFilterConstantProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnTopicPropsMixin.TopicRangeFilterConstantProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnTopicPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const topicRangeFilterConstantProperty: quicksight_mixins.CfnTopicPropsMixin.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