interface IntegerDefaultValuesProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.IntegerDefaultValuesProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.IntegerDefaultValuesProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.IntegerDefaultValuesProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»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.CfnAnalysis.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 .
