interface SegmentSortProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnSegmentDefinitionPropsMixin.SegmentSortProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnSegmentDefinitionPropsMixin_SegmentSortProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnSegmentDefinitionPropsMixin.SegmentSortProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnSegmentDefinitionPropsMixin.SegmentSortProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnSegmentDefinitionPropsMixin » SegmentSortProperty |
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 { aws_customerprofiles as customerprofiles } from '@aws-cdk/cfn-property-mixins';
const segmentSortProperty: customerprofiles.CfnSegmentDefinitionPropsMixin.SegmentSortProperty = {
attributes: [{
dataType: 'dataType',
name: 'name',
order: 'order',
type: 'type',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | IResolvable | (IResolvable | Sort)[] | A list of attributes used to sort the segments and their ordering preferences. |
attributes?
Type:
IResolvable | (IResolvable | Sort)[]
(optional)
A list of attributes used to sort the segments and their ordering preferences.

.NET
Go
Java
Python
TypeScript