aws-cdk-lib.aws_quicksight.CfnDashboard.TimeRangeFilterValueProperty

interface TimeRangeFilterValueProperty

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

The value of a time range filter.

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';
const timeRangeFilterValueProperty: quicksight.CfnDashboard.TimeRangeFilterValueProperty = {
  parameter: 'parameter',
  rollingDate: {
    expression: 'expression',

    // the properties below are optional
    dataSetIdentifier: 'dataSetIdentifier',
  },
  staticValue: 'staticValue',
};

Properties

NameTypeDescription
parameter?stringThe parameter type input value.
rollingDate?IResolvable | RollingDateConfigurationPropertyThe rolling date input value.
staticValue?stringThe static input value.

parameter?

Type: string (optional)

The parameter type input value.


rollingDate?

Type: IResolvable | RollingDateConfigurationProperty (optional)

The rolling date input value.


staticValue?

Type: string (optional)

The static input value.