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

.NET
Go
Java
Python
TypeScript