Interface CfnSegmentDefinitionPropsMixin.SortAttributeProperty

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

@Stability(Stable) public static interface CfnSegmentDefinitionPropsMixin.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.cfnpropertymixins.services.customerprofiles.*;
 SortAttributeProperty sortAttributeProperty = SortAttributeProperty.builder()
         .dataType("dataType")
         .name("name")
         .order("order")
         .type("type")
         .build();
 

See Also: