Interface CfnSegmentDefinitionPropsMixin.SegmentSortProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSegmentDefinitionPropsMixin.SegmentSortProperty.Jsii$Proxy
Enclosing class:
CfnSegmentDefinitionPropsMixin

@Stability(Stable) public static interface CfnSegmentDefinitionPropsMixin.SegmentSortProperty extends software.amazon.jsii.JsiiSerializable
Defines how segments should be sorted and ordered in the results.

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.*;
 SegmentSortProperty segmentSortProperty = SegmentSortProperty.builder()
         .attributes(List.of(SortAttributeProperty.builder()
                 .dataType("dataType")
                 .name("name")
                 .order("order")
                 .type("type")
                 .build()))
         .build();
 

See Also: