interface DecimalParameterDeclarationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DecimalParameterDeclarationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DecimalParameterDeclarationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DecimalParameterDeclarationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.DecimalParameterDeclarationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnDashboard»DecimalParameterDeclarationProperty | 
A parameter declaration for the Decimal data type.
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 decimalParameterDeclarationProperty: quicksight.CfnDashboard.DecimalParameterDeclarationProperty = {
  name: 'name',
  parameterValueType: 'parameterValueType',
  // the properties below are optional
  defaultValues: {
    dynamicValue: {
      defaultValueColumn: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      // the properties below are optional
      groupNameColumn: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      userNameColumn: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
    },
    staticValues: [123],
  },
  mappedDataSetParameters: [{
    dataSetIdentifier: 'dataSetIdentifier',
    dataSetParameterName: 'dataSetParameterName',
  }],
  valueWhenUnset: {
    customValue: 123,
    valueWhenUnsetOption: 'valueWhenUnsetOption',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | The name of the parameter that is being declared. | 
| parameter | string | The value type determines whether the parameter is a single-value or multi-value parameter. | 
| default | IResolvable | Decimal | The default values of a parameter. | 
| mapped | IResolvable | (IResolvable | Mapped)[] | |
| value | IResolvable | Decimal | The configuration that defines the default value of a Decimalparameter when a value has not been set. | 
name
Type:
string
The name of the parameter that is being declared.
parameterValueType
Type:
string
The value type determines whether the parameter is a single-value or multi-value parameter.
defaultValues?
Type:
IResolvable | Decimal
(optional)
The default values of a parameter.
If the parameter is a single-value parameter, a maximum of one default value can be provided.
mappedDataSetParameters?
Type:
IResolvable | (IResolvable | Mapped)[]
(optional)
valueWhenUnset?
Type:
IResolvable | Decimal
(optional)
The configuration that defines the default value of a Decimal parameter when a value has not been set.
