这个错误通常表示您在准备您的AWS Pinpoint旅程以及分段和属性时出现了额外或缺少的值。为了解决这个问题,您可以按照以下步骤操作:
{
"StartActivity": "start_activity",
"Activities": {
"start_activity": {
"Type": "Start",
"NextActivity": "next_activity"
},
"next_activity": {
"Type": "ConditionalSplit",
"NextActivity": "end_activity",
"Condition": {
"conditionType": "attribute",
"values": [ "male", "female" ],
"attributeType": "String",
"attributeName": "gender",
"operator": "IN"
},
"branches": {
"gender_male": {
"StartsWith": "male",
"Activities": [
{
"Type": "Wait",
"NextActivity": "end_activity",
"Wait": {
"waitType": "sleep",
"duration": 60
}
}
]
},
"gender_female": {
"StartsWith": "female",
"Activities": [
{
"Type": "Wait",
"NextActivity": "end_activity",
"Wait": {
"waitType": "sleep",
"duration": 120
}
}
]
}
}
},
"end_activity": {
"Type": "End"
}
}
}
{
"AppId": "YOUR_APP_ID",
"SegmentId": "YOUR_SEGMENT_ID",
"SegmentVersion": "1",
"SegmentLocation": {
"GPS_LOCATION": {
"attributeType": "String",
"attributeName": "location",
"values": [
"New York"
]
},
"DEVICE_TYPE": {
"attributeType": "String",
"attributeName": "deviceType",
"values": [
"iOS"
]
}
}
}
import { Pinpoint }