Interface CfnTemplate.IDynamicDefaultValueProperty
Defines different defaults to the users or groups based on mapping.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDynamicDefaultValueProperty
Syntax (vb)
Public Interface IDynamicDefaultValueProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var dynamicDefaultValueProperty = new DynamicDefaultValueProperty {
DefaultValueColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
// the properties below are optional
GroupNameColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
UserNameColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
}
};
Synopsis
Properties
Default |
The column that contains the default value of each user or group. |
Group |
The column that contains the group name. |
User |
The column that contains the username. |
Properties
DefaultValueColumn
The column that contains the default value of each user or group.
object DefaultValueColumn { get; }
Property Value
System.
Remarks
GroupNameColumn
The column that contains the group name.
virtual object GroupNameColumn { get; }
Property Value
System.
Remarks
UserNameColumn
The column that contains the username.
virtual object UserNameColumn { get; }
Property Value
System.