interface DateTimeDefaultValuesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.DateTimeDefaultValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_DateTimeDefaultValuesProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.DateTimeDefaultValuesProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.DateTimeDefaultValuesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const dateTimeDefaultValuesProperty: quicksight_mixins.CfnDashboardPropsMixin.DateTimeDefaultValuesProperty = {
dynamicValue: {
defaultValueColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
groupNameColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
userNameColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
},
rollingDate: {
dataSetIdentifier: 'dataSetIdentifier',
expression: 'expression',
},
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 .

.NET
Go
Java
Python
TypeScript