interface IntegerDefaultValuesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.IntegerDefaultValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_IntegerDefaultValuesProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.IntegerDefaultValuesProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.IntegerDefaultValuesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const integerDefaultValuesProperty: quicksight_mixins.CfnDashboardPropsMixin.IntegerDefaultValuesProperty = {
dynamicValue: {
defaultValueColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
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 | number[] | IResolvable | 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:
number[] | IResolvable
(optional)
The static values of the IntegerDefaultValues .

.NET
Go
Java
Python
TypeScript