interface DateTimeDefaultValuesProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DateTimeDefaultValuesProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DateTimeDefaultValuesProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.DateTimeDefaultValuesProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»DateTimeDefaultValuesProperty | 
The default values of the DateTimeParameterDeclaration .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const dateTimeDefaultValuesProperty: quicksight.CfnDashboard.DateTimeDefaultValuesProperty = {
  dynamicValue: {
    defaultValueColumn: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
    // the properties below are optional
    groupNameColumn: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
    userNameColumn: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
  },
  rollingDate: {
    expression: 'expression',
    // the properties below are optional
    dataSetIdentifier: 'dataSetIdentifier',
  },
  staticValues: ['staticValues'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| dynamic | IResolvable | Dynamic | The dynamic value of the DataTimeDefaultValues. | 
| rolling | IResolvable | Rolling | The rolling date of the DataTimeDefaultValues. | 
| static | string[] | The static values of the DataTimeDefaultValues. | 
dynamicValue?
Type:
IResolvable | Dynamic
(optional)
The dynamic value of the DataTimeDefaultValues .
Different defaults are displayed according to users, groups, and values mapping.
rollingDate?
Type:
IResolvable | Rolling
(optional)
The rolling date of the DataTimeDefaultValues .
The date is determined from the dataset based on input expression.
staticValues?
Type:
string[]
(optional)
The static values of the DataTimeDefaultValues .
