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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSegmentDefinitionPropsMixin.SegmentSortPropertystatic final classAn implementation forCfnSegmentDefinitionPropsMixin.SegmentSortProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributes
A list of attributes used to sort the segments and their ordering preferences.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSegmentDefinitionPropsMixin.SortAttributeProperty>- See Also:
-
builder
-