Interface CfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty.Jsii$Proxy
- Enclosing class:
CfnSegmentDefinitionPropsMixin
@Stability(Stable)
public static interface CfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty
extends software.amazon.jsii.JsiiSerializable
Object that segments on Customer Profile's Calculated Attributes.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.*;
CalculatedAttributeDimensionProperty calculatedAttributeDimensionProperty = CalculatedAttributeDimensionProperty.builder()
.conditionOverrides(ConditionOverridesProperty.builder()
.range(RangeOverrideProperty.builder()
.end(123)
.start(123)
.unit("unit")
.build())
.build())
.dimensionType("dimensionType")
.values(List.of("values"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditionOverrides
Applies the given condition over the initial Calculated Attribute's definition.Returns union: either
IResolvableorCfnSegmentDefinitionPropsMixin.ConditionOverridesProperty- See Also:
-
getDimensionType
The action to segment with.- See Also:
-
getValues
The values to apply the DimensionType with.- See Also:
-
builder
@Stability(Stable) static CfnSegmentDefinitionPropsMixin.CalculatedAttributeDimensionProperty.Builder builder()
-