interface DateTimeDefaultValuesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.DateTimeDefaultValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DateTimeDefaultValuesProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.DateTimeDefaultValuesProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.DateTimeDefaultValuesProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTemplate » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const dateTimeDefaultValuesProperty: quicksight.CfnTemplate.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
.