interface DynamicDefaultValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.DynamicDefaultValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_DynamicDefaultValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.DynamicDefaultValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.DynamicDefaultValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » 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/cfn-property-mixins';
const dynamicDefaultValueProperty: quicksight.CfnDashboardPropsMixin.DynamicDefaultValueProperty = {
defaultValueColumn: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
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
(optional)
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