Interface CfnCalculatedAttributeDefinition.ValueRangeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCalculatedAttributeDefinition.ValueRangeProperty.Jsii$Proxy
- Enclosing class:
CfnCalculatedAttributeDefinition
@Stability(Stable)
public static interface CfnCalculatedAttributeDefinition.ValueRangeProperty
extends software.amazon.jsii.JsiiSerializable
A structure letting customers specify a relative time window over which over which data is included in the Calculated Attribute.
Use positive numbers to indicate that the endpoint is in the past, and negative numbers to indicate it is in the future. ValueRange overrides Value.
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.customerprofiles.*; ValueRangeProperty valueRangeProperty = ValueRangeProperty.builder() .end(123) .start(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCalculatedAttributeDefinition.ValueRangeProperty
static final class
An implementation forCfnCalculatedAttributeDefinition.ValueRangeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnd
The ending point for this overridden range.Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
- See Also:
-
getStart
The starting point for this overridden range.Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
- See Also:
-
builder
-