interface NewDefaultValuesProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnDataSet.NewDefaultValuesProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_NewDefaultValuesProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnDataSet.NewDefaultValuesProperty |
![]() | aws_cdk.aws_quicksight.CfnDataSet.NewDefaultValuesProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnDataSet » NewDefaultValuesProperty |
The new default values for the parameter.
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 newDefaultValuesProperty: quicksight.CfnDataSet.NewDefaultValuesProperty = {
dateTimeStaticValues: ['dateTimeStaticValues'],
decimalStaticValues: [123],
integerStaticValues: [123],
stringStaticValues: ['stringStaticValues'],
};
Properties
Name | Type | Description |
---|---|---|
date | string[] | A list of static default values for a given date time parameter. |
decimal | number[] | IResolvable | A list of static default values for a given decimal parameter. |
integer | number[] | IResolvable | A list of static default values for a given integer parameter. |
string | string[] | A list of static default values for a given string parameter. |
dateTimeStaticValues?
Type:
string[]
(optional)
A list of static default values for a given date time parameter.
The valid format for this property is yyyy-MM-dd’T’HH:mm:ss’Z’
.
decimalStaticValues?
Type:
number[] |
IResolvable
(optional)
A list of static default values for a given decimal parameter.
integerStaticValues?
Type:
number[] |
IResolvable
(optional)
A list of static default values for a given integer parameter.
stringStaticValues?
Type:
string[]
(optional)
A list of static default values for a given string parameter.