Interface CfnTemplate.DateTimeDefaultValuesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.DateTimeDefaultValuesProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.DateTimeDefaultValuesProperty
extends software.amazon.jsii.JsiiSerializable
The default values of the
DateTimeParameterDeclaration .
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.*;
DateTimeDefaultValuesProperty dateTimeDefaultValuesProperty = DateTimeDefaultValuesProperty.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())
.rollingDate(RollingDateConfigurationProperty.builder()
.expression("expression")
// the properties below are optional
.dataSetIdentifier("dataSetIdentifier")
.build())
.staticValues(List.of("staticValues"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.DateTimeDefaultValuesPropertystatic final classAn implementation forCfnTemplate.DateTimeDefaultValuesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDynamicValue
The dynamic value of theDataTimeDefaultValues.Different defaults are displayed according to users, groups, and values mapping.
Returns union: either
IResolvableorCfnTemplate.DynamicDefaultValueProperty- See Also:
-
getRollingDate
The rolling date of theDataTimeDefaultValues.The date is determined from the dataset based on input expression.
Returns union: either
IResolvableorCfnTemplate.RollingDateConfigurationProperty- See Also:
-
getStaticValues
The static values of theDataTimeDefaultValues.- See Also:
-
builder
-