interface DateTimeDatasetParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.DateTimeDatasetParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_DateTimeDatasetParameterProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.DateTimeDatasetParameterProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.DateTimeDatasetParameterProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » DateTimeDatasetParameterProperty |
A date time parameter that is created in the dataset.
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 dateTimeDatasetParameterProperty: quicksight.CfnDataSet.DateTimeDatasetParameterProperty = {
id: 'id',
name: 'name',
valueType: 'valueType',
// the properties below are optional
defaultValues: {
staticValues: ['staticValues'],
},
timeGranularity: 'timeGranularity',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | An identifier for the parameter that is created in the dataset. |
| name | string | The name of the date time parameter that is created in the dataset. |
| value | string | The value type of the dataset parameter. |
| default | IResolvable | Date | A list of default values for a given date time parameter. |
| time | string | The time granularity of the date time parameter. |
id
Type:
string
An identifier for the parameter that is created in the dataset.
name
Type:
string
The name of the date time parameter that is created in the dataset.
valueType
Type:
string
The value type of the dataset parameter.
Valid values are single value or multi value .
defaultValues?
Type:
IResolvable | Date
(optional)
A list of default values for a given date time parameter.
This structure only accepts static values.
timeGranularity?
Type:
string
(optional)
The time granularity of the date time parameter.

.NET
Go
Java
Python
TypeScript