Interface CfnTemplate.DynamicDefaultValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.DynamicDefaultValueProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.DynamicDefaultValueProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
DynamicDefaultValueProperty dynamicDefaultValueProperty = DynamicDefaultValueProperty.builder()
.defaultValueColumn(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
// the properties below are optional
.groupNameColumn(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.userNameColumn(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.DynamicDefaultValuePropertystatic final classAn implementation forCfnTemplate.DynamicDefaultValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultValueColumn
The column that contains the default value of each user or group.Returns union: either
IResolvableorCfnTemplate.ColumnIdentifierProperty- See Also:
-
getGroupNameColumn
The column that contains the group name.Returns union: either
IResolvableorCfnTemplate.ColumnIdentifierProperty- See Also:
-
getUserNameColumn
The column that contains the username.Returns union: either
IResolvableorCfnTemplate.ColumnIdentifierProperty- See Also:
-
builder
-