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

.NET
Go
Java
Python
TypeScript