aws-cdk-lib.aws_quicksight.CfnTemplate.DynamicDefaultValueProperty

interface DynamicDefaultValueProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.DynamicDefaultValueProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DynamicDefaultValueProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.DynamicDefaultValueProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.DynamicDefaultValueProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » 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.CfnTemplate.DynamicDefaultValueProperty = {
  defaultValueColumn: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },

  // the properties below are optional
  groupNameColumn: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },
  userNameColumn: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },
};

Properties

NameTypeDescription
defaultValueColumnIResolvable | ColumnIdentifierPropertyThe column that contains the default value of each user or group.
groupNameColumn?IResolvable | ColumnIdentifierPropertyThe column that contains the group name.
userNameColumn?IResolvable | ColumnIdentifierPropertyThe column that contains the username.

defaultValueColumn

Type: IResolvable | ColumnIdentifierProperty

The column that contains the default value of each user or group.


groupNameColumn?

Type: IResolvable | ColumnIdentifierProperty (optional)

The column that contains the group name.


userNameColumn?

Type: IResolvable | ColumnIdentifierProperty (optional)

The column that contains the username.