Interface CfnSegmentDefinition.SortAttributeProperty

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

@Stability(Stable) public static interface CfnSegmentDefinition.SortAttributeProperty extends software.amazon.jsii.JsiiSerializable
Defines the characteristics and rules for sorting by a specific attribute.

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.*;
 SortAttributeProperty sortAttributeProperty = SortAttributeProperty.builder()
         .name("name")
         .order("order")
         // the properties below are optional
         .dataType("dataType")
         .type("type")
         .build();
 

See Also: