Skip to content

Commit f57cfe2

Browse files
author
AWS
committed
Amazon Pinpoint Update: Added support for journey pause/resume, journey updatable import segment and journey quiet time wait.
1 parent 897e8ba commit f57cfe2

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Pinpoint",
4+
"contributor": "",
5+
"description": "Added support for journey pause/resume, journey updatable import segment and journey quiet time wait."
6+
}

services/pinpoint/src/main/resources/codegen-resources/service-2.json

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10967,6 +10967,10 @@
1096710967
"MessagesPerSecond": {
1096810968
"shape": "__integer",
1096910969
"documentation": "<p>The maximum number of messages that the journey can send each second.</p>"
10970+
},
10971+
"EndpointReentryInterval": {
10972+
"shape": "__string",
10973+
"documentation": "<p>Minimum time that must pass before an endpoint can re-enter a given journey. The duration should use an ISO 8601 format, such as PT1H. </p>"
1097010974
}
1097110975
},
1097210976
"documentation": "<p>Specifies limits on the messages that a journey can send and the number of times participants can enter a journey.</p>"
@@ -11044,6 +11048,14 @@
1104411048
"shape": "MapOf__string",
1104511049
"locationName": "tags",
1104611050
"documentation": "<p>This object is not used or supported.</p>"
11051+
},
11052+
"WaitForQuietTime": {
11053+
"shape": "__boolean",
11054+
"documentation": "<p>Specifies whether endpoints in quiet hours should enter a wait till the end of their quiet hours.</p>"
11055+
},
11056+
"RefreshOnSegmentUpdate": {
11057+
"shape": "__boolean",
11058+
"documentation": "<p>Specifies whether a journey should be refreshed on segment update.</p>"
1104711059
}
1104811060
},
1104911061
"documentation": "<p>Provides information about the status, configuration, and other settings for a journey.</p>",
@@ -11102,7 +11114,7 @@
1110211114
"members": {
1110311115
"State": {
1110411116
"shape": "State",
11105-
"documentation": "<p>The status of the journey. Currently, the only supported value is CANCELLED.</p> <p>If you cancel a journey, Amazon Pinpoint continues to perform activities that are currently in progress, until those activities are complete. Amazon Pinpoint also continues to collect and aggregate analytics data for those activities, until they are complete, and any activities that were complete when you cancelled the journey.</p> <p>After you cancel a journey, you can't add, change, or remove any activities from the journey. In addition, Amazon Pinpoint stops evaluating the journey and doesn't perform any activities that haven't started.</p>"
11117+
"documentation": "<p>The status of the journey. Currently, Supported values are ACTIVE, PAUSED, and CANCELLED</p> <p>If you cancel a journey, Amazon Pinpoint continues to perform activities that are currently in progress, until those activities are complete. Amazon Pinpoint also continues to collect and aggregate analytics data for those activities, until they are complete, and any activities that were complete when you cancelled the journey.</p> <p>After you cancel a journey, you can't add, change, or remove any activities from the journey. In addition, Amazon Pinpoint stops evaluating the journey and doesn't perform any activities that haven't started.</p> <p>When the journey is paused, Amazon Pinpoint continues to perform activities that are currently in progress, until those activities are complete. Endpoints will stop entering journeys when the journey is paused and will resume entering the journey after the journey is resumed. For wait activities, wait time is paused when the journey is paused. Currently, PAUSED only supports journeys with a segment refresh interval.</p>"
1110611118
}
1110711119
},
1110811120
"documentation": "<p>Changes the status of a journey.</p>"
@@ -12956,7 +12968,8 @@
1295612968
"ACTIVE",
1295712969
"COMPLETED",
1295812970
"CANCELLED",
12959-
"CLOSED"
12971+
"CLOSED",
12972+
"PAUSED"
1296012973
]
1296112974
},
1296212975
"TagResourceRequest": {
@@ -14498,7 +14511,15 @@
1449814511
},
1449914512
"State": {
1450014513
"shape": "State",
14501-
"documentation": "<p>The status of the journey. Valid values are:</p> <ul><li><p>DRAFT - Saves the journey and doesn't publish it.</p></li> <li><p>ACTIVE - Saves and publishes the journey. Depending on the journey's schedule, the journey starts running immediately or at the scheduled start time. If a journey's status is ACTIVE, you can't add, change, or remove activities from it.</p></li></ul> <p>The CANCELLED, COMPLETED, and CLOSED values are not supported in requests to create or update a journey. To cancel a journey, use the <link linkend=\"apps-application-id-journeys-journey-id-state\">Journey State</link> resource.</p>"
14514+
"documentation": "<p>The status of the journey. Valid values are:</p> <ul><li><p>DRAFT - Saves the journey and doesn't publish it.</p></li> <li><p>ACTIVE - Saves and publishes the journey. Depending on the journey's schedule, the journey starts running immediately or at the scheduled start time. If a journey's status is ACTIVE, you can't add, change, or remove activities from it.</p></li></ul> <p>PAUSED, CANCELLED, COMPLETED, and CLOSED states are not supported in requests to create or update a journey. To cancel, pause, or resume a journey, use the <link linkend=\"apps-application-id-journeys-journey-id-state\">Journey State</link> resource.</p>"
14515+
},
14516+
"WaitForQuietTime": {
14517+
"shape": "__boolean",
14518+
"documentation": "<p>Specifies whether endpoints in quiet hours should enter a wait till the end of their quiet hours.</p>"
14519+
},
14520+
"RefreshOnSegmentUpdate": {
14521+
"shape": "__boolean",
14522+
"documentation": "<p>Specifies whether a journey should be refreshed on segment update.</p>"
1450214523
}
1450314524
},
1450414525
"documentation": "<p>Specifies the configuration and other settings for a journey.</p>",

0 commit comments

Comments
 (0)