Interface CfnDashboard.StringDefaultValuesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.StringDefaultValuesProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.StringDefaultValuesProperty
extends software.amazon.jsii.JsiiSerializable
The default values of the
StringParameterDeclaration
.
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.*; StringDefaultValuesProperty stringDefaultValuesProperty = StringDefaultValuesProperty.builder() .dynamicValue(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()) .staticValues(List.of("staticValues")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.StringDefaultValuesProperty
static final class
An implementation forCfnDashboard.StringDefaultValuesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDynamicValue
The dynamic value of theStringDefaultValues
.Different defaults displayed according to users, groups, and values mapping.
- See Also:
-
getStaticValues
The static values of theDecimalDefaultValues
.- See Also:
-
builder
-