interface IntegerDefaultValuesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.IntegerDefaultValuesProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.IntegerDefaultValuesProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.IntegerDefaultValuesProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » IntegerDefaultValuesProperty |
The default values of the IntegerParameterDeclaration
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const integerDefaultValuesProperty: quicksight.CfnDashboard.IntegerDefaultValuesProperty = {
dynamicValue: {
defaultValueColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
// the properties below are optional
groupNameColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
userNameColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
},
staticValues: [123],
};
Properties
Name | Type | Description |
---|---|---|
dynamic | IResolvable | Dynamic | The dynamic value of the IntegerDefaultValues . |
static | IResolvable | number[] | The static values of the IntegerDefaultValues . |
dynamicValue?
Type:
IResolvable
|
Dynamic
(optional)
The dynamic value of the IntegerDefaultValues
.
Different defaults are displayed according to users, groups, and values mapping.
staticValues?
Type:
IResolvable
| number[]
(optional)
The static values of the IntegerDefaultValues
.