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

.NET
Go
Java
Python
TypeScript