interface DynamicDefaultValueProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DynamicDefaultValueProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DynamicDefaultValueProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DynamicDefaultValueProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.DynamicDefaultValueProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnDashboard » DynamicDefaultValueProperty | 
Defines different defaults to the users or groups based on mapping.
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 dynamicDefaultValueProperty: quicksight.CfnDashboard.DynamicDefaultValueProperty = {
  defaultValueColumn: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },
  // the properties below are optional
  groupNameColumn: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },
  userNameColumn: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| default | IResolvable | Column | The column that contains the default value of each user or group. | 
| group | IResolvable | Column | The column that contains the group name. | 
| user | IResolvable | Column | The column that contains the username. | 
defaultValueColumn
Type:
IResolvable | Column
The column that contains the default value of each user or group.
groupNameColumn?
Type:
IResolvable | Column
(optional)
The column that contains the group name.
userNameColumn?
Type:
IResolvable | Column
(optional)
The column that contains the username.

 .NET
 Go
 Java
 Python
 TypeScript