interface SortAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnSegmentDefinitionPropsMixin.SortAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnSegmentDefinitionPropsMixin_SortAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnSegmentDefinitionPropsMixin.SortAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnSegmentDefinitionPropsMixin.SortAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnSegmentDefinitionPropsMixin » SortAttributeProperty |
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 { aws_customerprofiles as customerprofiles } from '@aws-cdk/cfn-property-mixins';
const sortAttributeProperty: customerprofiles.CfnSegmentDefinitionPropsMixin.SortAttributeProperty = {
dataType: 'dataType',
name: 'name',
order: 'order',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The data type of the sort attribute (e.g., string, number, date). |
| name? | string | The name of the attribute to sort by. |
| order? | string | The sort order for the attribute (ascending or descending). |
| type? | string | The type of attribute (e.g., profile, calculated). |
dataType?
Type:
string
(optional)
The data type of the sort attribute (e.g., string, number, date).
name?
Type:
string
(optional)
The name of the attribute to sort by.
order?
Type:
string
(optional)
The sort order for the attribute (ascending or descending).
type?
Type:
string
(optional)
The type of attribute (e.g., profile, calculated).

.NET
Go
Java
Python
TypeScript