aws-sdk-pinpoint 1.36.0 → 1.41.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-pinpoint.rb +1 -1
- data/lib/aws-sdk-pinpoint/client.rb +257 -19
- data/lib/aws-sdk-pinpoint/client_api.rb +58 -0
- data/lib/aws-sdk-pinpoint/resource.rb +1 -7
- data/lib/aws-sdk-pinpoint/types.rb +776 -193
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6826159c8bf67056d4ff3d492908fa5f0920bf7f8aad015c834a606a63c5ae73
|
4
|
+
data.tar.gz: fc545321b72d13f24ea4ac38f70eec57a51d5fe00619701f01f98457ff68f935
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c344f14583a1b47e1a3020a887c8f24f96a50cbe5e9fab66a76c9eb916da7d06a3020c887ae2412b61323174b7812401ca02bb20d5f6a134cb05f48236eb5d6a
|
7
|
+
data.tar.gz: 04ec77e21d927de32f622fb3febc50b9aad4af5e987129386c8cc8781897c23a81b858aadb57061b9db03e35f4806e811841878c5216fb5cd006fa2f0ae40bec
|
data/lib/aws-sdk-pinpoint.rb
CHANGED
@@ -105,7 +105,7 @@ module Aws::Pinpoint
|
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
109
109
|
#
|
110
110
|
# * `Aws.config[:region]`
|
111
111
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +161,7 @@ module Aws::Pinpoint
|
|
161
161
|
# @option options [String] :endpoint
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
165
165
|
#
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +176,7 @@ module Aws::Pinpoint
|
|
176
176
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
177
|
#
|
178
178
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
179
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
180
|
#
|
181
181
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
182
|
# The log formatter.
|
@@ -269,8 +269,7 @@ module Aws::Pinpoint
|
|
269
269
|
#
|
270
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
271
271
|
# number of seconds to wait for response data. This value can
|
272
|
-
# safely be set
|
273
|
-
# per-request on the session yielded by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
274
273
|
#
|
275
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
276
275
|
# seconds a connection is allowed to sit idle before it is
|
@@ -282,7 +281,7 @@ module Aws::Pinpoint
|
|
282
281
|
# request body. This option has no effect unless the request has
|
283
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
284
283
|
# disables this behaviour. This value can safely be set per
|
285
|
-
# request on the session
|
284
|
+
# request on the session.
|
286
285
|
#
|
287
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
288
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -366,6 +365,10 @@ module Aws::Pinpoint
|
|
366
365
|
# write_campaign_request: { # required
|
367
366
|
# additional_treatments: [
|
368
367
|
# {
|
368
|
+
# custom_delivery_configuration: {
|
369
|
+
# delivery_uri: "__string", # required
|
370
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
371
|
+
# },
|
369
372
|
# message_configuration: {
|
370
373
|
# adm_message: {
|
371
374
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
@@ -409,6 +412,9 @@ module Aws::Pinpoint
|
|
409
412
|
# title: "__string",
|
410
413
|
# url: "__string",
|
411
414
|
# },
|
415
|
+
# custom_message: {
|
416
|
+
# data: "__string",
|
417
|
+
# },
|
412
418
|
# default_message: {
|
413
419
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
414
420
|
# body: "__string",
|
@@ -504,6 +510,10 @@ module Aws::Pinpoint
|
|
504
510
|
# treatment_name: "__string",
|
505
511
|
# },
|
506
512
|
# ],
|
513
|
+
# custom_delivery_configuration: {
|
514
|
+
# delivery_uri: "__string", # required
|
515
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
516
|
+
# },
|
507
517
|
# description: "__string",
|
508
518
|
# holdout_percent: 1,
|
509
519
|
# hook: {
|
@@ -561,6 +571,9 @@ module Aws::Pinpoint
|
|
561
571
|
# title: "__string",
|
562
572
|
# url: "__string",
|
563
573
|
# },
|
574
|
+
# custom_message: {
|
575
|
+
# data: "__string",
|
576
|
+
# },
|
564
577
|
# default_message: {
|
565
578
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
566
579
|
# body: "__string",
|
@@ -665,6 +678,9 @@ module Aws::Pinpoint
|
|
665
678
|
# @example Response structure
|
666
679
|
#
|
667
680
|
# resp.campaign_response.additional_treatments #=> Array
|
681
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
682
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
683
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
668
684
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
669
685
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
670
686
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -702,6 +718,7 @@ module Aws::Pinpoint
|
|
702
718
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
703
719
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
704
720
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
721
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
705
722
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
706
723
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
707
724
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -766,6 +783,9 @@ module Aws::Pinpoint
|
|
766
783
|
# resp.campaign_response.application_id #=> String
|
767
784
|
# resp.campaign_response.arn #=> String
|
768
785
|
# resp.campaign_response.creation_date #=> String
|
786
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
787
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
788
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
769
789
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
770
790
|
# resp.campaign_response.description #=> String
|
771
791
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -815,6 +835,7 @@ module Aws::Pinpoint
|
|
815
835
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
816
836
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
817
837
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
838
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
818
839
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
819
840
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
820
841
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -1068,6 +1089,16 @@ module Aws::Pinpoint
|
|
1068
1089
|
# write_journey_request: { # required
|
1069
1090
|
# activities: {
|
1070
1091
|
# "__string" => {
|
1092
|
+
# custom: {
|
1093
|
+
# delivery_uri: "__string",
|
1094
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
1095
|
+
# message_config: {
|
1096
|
+
# data: "__string",
|
1097
|
+
# },
|
1098
|
+
# next_activity: "__string",
|
1099
|
+
# template_name: "__string",
|
1100
|
+
# template_version: "__string",
|
1101
|
+
# },
|
1071
1102
|
# conditional_split: {
|
1072
1103
|
# condition: {
|
1073
1104
|
# conditions: [
|
@@ -1288,6 +1319,14 @@ module Aws::Pinpoint
|
|
1288
1319
|
# wait_until: "__string",
|
1289
1320
|
# },
|
1290
1321
|
# },
|
1322
|
+
# push: {
|
1323
|
+
# message_config: {
|
1324
|
+
# time_to_live: "__string",
|
1325
|
+
# },
|
1326
|
+
# next_activity: "__string",
|
1327
|
+
# template_name: "__string",
|
1328
|
+
# template_version: "__string",
|
1329
|
+
# },
|
1291
1330
|
# random_split: {
|
1292
1331
|
# branches: [
|
1293
1332
|
# {
|
@@ -1296,6 +1335,15 @@ module Aws::Pinpoint
|
|
1296
1335
|
# },
|
1297
1336
|
# ],
|
1298
1337
|
# },
|
1338
|
+
# sms: {
|
1339
|
+
# message_config: {
|
1340
|
+
# message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
|
1341
|
+
# sender_id: "__string",
|
1342
|
+
# },
|
1343
|
+
# next_activity: "__string",
|
1344
|
+
# template_name: "__string",
|
1345
|
+
# template_version: "__string",
|
1346
|
+
# },
|
1299
1347
|
# wait: {
|
1300
1348
|
# next_activity: "__string",
|
1301
1349
|
# wait_time: {
|
@@ -1338,6 +1386,13 @@ module Aws::Pinpoint
|
|
1338
1386
|
# @example Response structure
|
1339
1387
|
#
|
1340
1388
|
# resp.journey_response.activities #=> Hash
|
1389
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
1390
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
1391
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
1392
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
1393
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
1394
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
1395
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
1341
1396
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
1342
1397
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
1343
1398
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -1454,9 +1509,18 @@ module Aws::Pinpoint
|
|
1454
1509
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
1455
1510
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
1456
1511
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
1512
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
1513
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
1514
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
1515
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
1457
1516
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
1458
1517
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
1459
1518
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
1519
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
1520
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
1521
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
1522
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
1523
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
1460
1524
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
1461
1525
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
1462
1526
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -2289,6 +2353,9 @@ module Aws::Pinpoint
|
|
2289
2353
|
# @example Response structure
|
2290
2354
|
#
|
2291
2355
|
# resp.campaign_response.additional_treatments #=> Array
|
2356
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
2357
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
2358
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
2292
2359
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
2293
2360
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
2294
2361
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -2326,6 +2393,7 @@ module Aws::Pinpoint
|
|
2326
2393
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
2327
2394
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
2328
2395
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
2396
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
2329
2397
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
2330
2398
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
2331
2399
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -2390,6 +2458,9 @@ module Aws::Pinpoint
|
|
2390
2458
|
# resp.campaign_response.application_id #=> String
|
2391
2459
|
# resp.campaign_response.arn #=> String
|
2392
2460
|
# resp.campaign_response.creation_date #=> String
|
2461
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
2462
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
2463
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
2393
2464
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
2394
2465
|
# resp.campaign_response.description #=> String
|
2395
2466
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -2439,6 +2510,7 @@ module Aws::Pinpoint
|
|
2439
2510
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
2440
2511
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
2441
2512
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
2513
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
2442
2514
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
2443
2515
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
2444
2516
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -2613,7 +2685,7 @@ module Aws::Pinpoint
|
|
2613
2685
|
# resp.endpoint_response.attributes #=> Hash
|
2614
2686
|
# resp.endpoint_response.attributes["__string"] #=> Array
|
2615
2687
|
# resp.endpoint_response.attributes["__string"][0] #=> String
|
2616
|
-
# resp.endpoint_response.channel_type #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
2688
|
+
# resp.endpoint_response.channel_type #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
2617
2689
|
# resp.endpoint_response.cohort_id #=> String
|
2618
2690
|
# resp.endpoint_response.creation_date #=> String
|
2619
2691
|
# resp.endpoint_response.demographic.app_version #=> String
|
@@ -2741,6 +2813,13 @@ module Aws::Pinpoint
|
|
2741
2813
|
# @example Response structure
|
2742
2814
|
#
|
2743
2815
|
# resp.journey_response.activities #=> Hash
|
2816
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
2817
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
2818
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
2819
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
2820
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
2821
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
2822
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
2744
2823
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
2745
2824
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
2746
2825
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -2857,9 +2936,18 @@ module Aws::Pinpoint
|
|
2857
2936
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
2858
2937
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
2859
2938
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
2939
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
2940
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
2941
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
2942
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
2860
2943
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
2861
2944
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
2862
2945
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
2946
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
2947
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
2948
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
2949
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
2950
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
2863
2951
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
2864
2952
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
2865
2953
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -3191,7 +3279,7 @@ module Aws::Pinpoint
|
|
3191
3279
|
# resp.endpoints_response.item[0].attributes #=> Hash
|
3192
3280
|
# resp.endpoints_response.item[0].attributes["__string"] #=> Array
|
3193
3281
|
# resp.endpoints_response.item[0].attributes["__string"][0] #=> String
|
3194
|
-
# resp.endpoints_response.item[0].channel_type #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
3282
|
+
# resp.endpoints_response.item[0].channel_type #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
3195
3283
|
# resp.endpoints_response.item[0].cohort_id #=> String
|
3196
3284
|
# resp.endpoints_response.item[0].creation_date #=> String
|
3197
3285
|
# resp.endpoints_response.item[0].demographic.app_version #=> String
|
@@ -3711,6 +3799,9 @@ module Aws::Pinpoint
|
|
3711
3799
|
# @example Response structure
|
3712
3800
|
#
|
3713
3801
|
# resp.campaign_response.additional_treatments #=> Array
|
3802
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
3803
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
3804
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
3714
3805
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
3715
3806
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
3716
3807
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -3748,6 +3839,7 @@ module Aws::Pinpoint
|
|
3748
3839
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
3749
3840
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
3750
3841
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
3842
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
3751
3843
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
3752
3844
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
3753
3845
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -3812,6 +3904,9 @@ module Aws::Pinpoint
|
|
3812
3904
|
# resp.campaign_response.application_id #=> String
|
3813
3905
|
# resp.campaign_response.arn #=> String
|
3814
3906
|
# resp.campaign_response.creation_date #=> String
|
3907
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
3908
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
3909
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
3815
3910
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
3816
3911
|
# resp.campaign_response.description #=> String
|
3817
3912
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -3861,6 +3956,7 @@ module Aws::Pinpoint
|
|
3861
3956
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
3862
3957
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
3863
3958
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
3959
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
3864
3960
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
3865
3961
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
3866
3962
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -4071,6 +4167,9 @@ module Aws::Pinpoint
|
|
4071
4167
|
# @example Response structure
|
4072
4168
|
#
|
4073
4169
|
# resp.campaign_response.additional_treatments #=> Array
|
4170
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
4171
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
4172
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
4074
4173
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
4075
4174
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4076
4175
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -4108,6 +4207,7 @@ module Aws::Pinpoint
|
|
4108
4207
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4109
4208
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
4110
4209
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
4210
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
4111
4211
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4112
4212
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
4113
4213
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4172,6 +4272,9 @@ module Aws::Pinpoint
|
|
4172
4272
|
# resp.campaign_response.application_id #=> String
|
4173
4273
|
# resp.campaign_response.arn #=> String
|
4174
4274
|
# resp.campaign_response.creation_date #=> String
|
4275
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
4276
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
4277
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
4175
4278
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4176
4279
|
# resp.campaign_response.description #=> String
|
4177
4280
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -4221,6 +4324,7 @@ module Aws::Pinpoint
|
|
4221
4324
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
4222
4325
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
4223
4326
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
4327
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
4224
4328
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4225
4329
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
4226
4330
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -4325,6 +4429,9 @@ module Aws::Pinpoint
|
|
4325
4429
|
#
|
4326
4430
|
# resp.campaigns_response.item #=> Array
|
4327
4431
|
# resp.campaigns_response.item[0].additional_treatments #=> Array
|
4432
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
4433
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
4434
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
4328
4435
|
# resp.campaigns_response.item[0].additional_treatments[0].id #=> String
|
4329
4436
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4330
4437
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -4362,6 +4469,7 @@ module Aws::Pinpoint
|
|
4362
4469
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4363
4470
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.title #=> String
|
4364
4471
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.url #=> String
|
4472
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.custom_message.data #=> String
|
4365
4473
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4366
4474
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.body #=> String
|
4367
4475
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4426,6 +4534,9 @@ module Aws::Pinpoint
|
|
4426
4534
|
# resp.campaigns_response.item[0].application_id #=> String
|
4427
4535
|
# resp.campaigns_response.item[0].arn #=> String
|
4428
4536
|
# resp.campaigns_response.item[0].creation_date #=> String
|
4537
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.delivery_uri #=> String
|
4538
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types #=> Array
|
4539
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
4429
4540
|
# resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4430
4541
|
# resp.campaigns_response.item[0].description #=> String
|
4431
4542
|
# resp.campaigns_response.item[0].holdout_percent #=> Integer
|
@@ -4475,6 +4586,7 @@ module Aws::Pinpoint
|
|
4475
4586
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4476
4587
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.title #=> String
|
4477
4588
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.url #=> String
|
4589
|
+
# resp.campaigns_response.item[0].message_configuration.custom_message.data #=> String
|
4478
4590
|
# resp.campaigns_response.item[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4479
4591
|
# resp.campaigns_response.item[0].message_configuration.default_message.body #=> String
|
4480
4592
|
# resp.campaigns_response.item[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4578,6 +4690,9 @@ module Aws::Pinpoint
|
|
4578
4690
|
#
|
4579
4691
|
# resp.campaigns_response.item #=> Array
|
4580
4692
|
# resp.campaigns_response.item[0].additional_treatments #=> Array
|
4693
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
4694
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
4695
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
4581
4696
|
# resp.campaigns_response.item[0].additional_treatments[0].id #=> String
|
4582
4697
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4583
4698
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -4615,6 +4730,7 @@ module Aws::Pinpoint
|
|
4615
4730
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4616
4731
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.title #=> String
|
4617
4732
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.url #=> String
|
4733
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.custom_message.data #=> String
|
4618
4734
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4619
4735
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.body #=> String
|
4620
4736
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4679,6 +4795,9 @@ module Aws::Pinpoint
|
|
4679
4795
|
# resp.campaigns_response.item[0].application_id #=> String
|
4680
4796
|
# resp.campaigns_response.item[0].arn #=> String
|
4681
4797
|
# resp.campaigns_response.item[0].creation_date #=> String
|
4798
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.delivery_uri #=> String
|
4799
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types #=> Array
|
4800
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
4682
4801
|
# resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4683
4802
|
# resp.campaigns_response.item[0].description #=> String
|
4684
4803
|
# resp.campaigns_response.item[0].holdout_percent #=> Integer
|
@@ -4728,6 +4847,7 @@ module Aws::Pinpoint
|
|
4728
4847
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4729
4848
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.title #=> String
|
4730
4849
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.url #=> String
|
4850
|
+
# resp.campaigns_response.item[0].message_configuration.custom_message.data #=> String
|
4731
4851
|
# resp.campaigns_response.item[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4732
4852
|
# resp.campaigns_response.item[0].message_configuration.default_message.body #=> String
|
4733
4853
|
# resp.campaigns_response.item[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4953,7 +5073,7 @@ module Aws::Pinpoint
|
|
4953
5073
|
# resp.endpoint_response.attributes #=> Hash
|
4954
5074
|
# resp.endpoint_response.attributes["__string"] #=> Array
|
4955
5075
|
# resp.endpoint_response.attributes["__string"][0] #=> String
|
4956
|
-
# resp.endpoint_response.channel_type #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
5076
|
+
# resp.endpoint_response.channel_type #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
4957
5077
|
# resp.endpoint_response.cohort_id #=> String
|
4958
5078
|
# resp.endpoint_response.creation_date #=> String
|
4959
5079
|
# resp.endpoint_response.demographic.app_version #=> String
|
@@ -5289,6 +5409,13 @@ module Aws::Pinpoint
|
|
5289
5409
|
# @example Response structure
|
5290
5410
|
#
|
5291
5411
|
# resp.journey_response.activities #=> Hash
|
5412
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
5413
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
5414
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
5415
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
5416
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
5417
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
5418
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
5292
5419
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
5293
5420
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
5294
5421
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -5405,9 +5532,18 @@ module Aws::Pinpoint
|
|
5405
5532
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
5406
5533
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
5407
5534
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
5535
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
5536
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
5537
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
5538
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
5408
5539
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
5409
5540
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
5410
5541
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
5542
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
5543
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
5544
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
5545
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
5546
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
5411
5547
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
5412
5548
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
5413
5549
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -6512,7 +6648,7 @@ module Aws::Pinpoint
|
|
6512
6648
|
# resp.endpoints_response.item[0].attributes #=> Hash
|
6513
6649
|
# resp.endpoints_response.item[0].attributes["__string"] #=> Array
|
6514
6650
|
# resp.endpoints_response.item[0].attributes["__string"][0] #=> String
|
6515
|
-
# resp.endpoints_response.item[0].channel_type #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
6651
|
+
# resp.endpoints_response.item[0].channel_type #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
6516
6652
|
# resp.endpoints_response.item[0].cohort_id #=> String
|
6517
6653
|
# resp.endpoints_response.item[0].creation_date #=> String
|
6518
6654
|
# resp.endpoints_response.item[0].demographic.app_version #=> String
|
@@ -6655,6 +6791,13 @@ module Aws::Pinpoint
|
|
6655
6791
|
#
|
6656
6792
|
# resp.journeys_response.item #=> Array
|
6657
6793
|
# resp.journeys_response.item[0].activities #=> Hash
|
6794
|
+
# resp.journeys_response.item[0].activities["__string"].custom.delivery_uri #=> String
|
6795
|
+
# resp.journeys_response.item[0].activities["__string"].custom.endpoint_types #=> Array
|
6796
|
+
# resp.journeys_response.item[0].activities["__string"].custom.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
6797
|
+
# resp.journeys_response.item[0].activities["__string"].custom.message_config.data #=> String
|
6798
|
+
# resp.journeys_response.item[0].activities["__string"].custom.next_activity #=> String
|
6799
|
+
# resp.journeys_response.item[0].activities["__string"].custom.template_name #=> String
|
6800
|
+
# resp.journeys_response.item[0].activities["__string"].custom.template_version #=> String
|
6658
6801
|
# resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions #=> Array
|
6659
6802
|
# resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
6660
6803
|
# resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -6771,9 +6914,18 @@ module Aws::Pinpoint
|
|
6771
6914
|
# resp.journeys_response.item[0].activities["__string"].multi_condition.default_activity #=> String
|
6772
6915
|
# resp.journeys_response.item[0].activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
6773
6916
|
# resp.journeys_response.item[0].activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
6917
|
+
# resp.journeys_response.item[0].activities["__string"].push.message_config.time_to_live #=> String
|
6918
|
+
# resp.journeys_response.item[0].activities["__string"].push.next_activity #=> String
|
6919
|
+
# resp.journeys_response.item[0].activities["__string"].push.template_name #=> String
|
6920
|
+
# resp.journeys_response.item[0].activities["__string"].push.template_version #=> String
|
6774
6921
|
# resp.journeys_response.item[0].activities["__string"].random_split.branches #=> Array
|
6775
6922
|
# resp.journeys_response.item[0].activities["__string"].random_split.branches[0].next_activity #=> String
|
6776
6923
|
# resp.journeys_response.item[0].activities["__string"].random_split.branches[0].percentage #=> Integer
|
6924
|
+
# resp.journeys_response.item[0].activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
6925
|
+
# resp.journeys_response.item[0].activities["__string"].sms.message_config.sender_id #=> String
|
6926
|
+
# resp.journeys_response.item[0].activities["__string"].sms.next_activity #=> String
|
6927
|
+
# resp.journeys_response.item[0].activities["__string"].sms.template_name #=> String
|
6928
|
+
# resp.journeys_response.item[0].activities["__string"].sms.template_version #=> String
|
6777
6929
|
# resp.journeys_response.item[0].activities["__string"].wait.next_activity #=> String
|
6778
6930
|
# resp.journeys_response.item[0].activities["__string"].wait.wait_time.wait_for #=> String
|
6779
6931
|
# resp.journeys_response.item[0].activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -7043,7 +7195,7 @@ module Aws::Pinpoint
|
|
7043
7195
|
# attributes: {
|
7044
7196
|
# "__string" => ["__string"],
|
7045
7197
|
# },
|
7046
|
-
# channel_type: "
|
7198
|
+
# channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
7047
7199
|
# demographic: {
|
7048
7200
|
# app_version: "__string",
|
7049
7201
|
# locale: "__string",
|
@@ -7182,7 +7334,7 @@ module Aws::Pinpoint
|
|
7182
7334
|
# addresses: {
|
7183
7335
|
# "__string" => {
|
7184
7336
|
# body_override: "__string",
|
7185
|
-
# channel_type: "
|
7337
|
+
# channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
7186
7338
|
# context: {
|
7187
7339
|
# "__string" => "__string",
|
7188
7340
|
# },
|
@@ -7347,6 +7499,7 @@ module Aws::Pinpoint
|
|
7347
7499
|
# sms_message: {
|
7348
7500
|
# body: "__string",
|
7349
7501
|
# keyword: "__string",
|
7502
|
+
# media_url: "__string",
|
7350
7503
|
# message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
|
7351
7504
|
# origination_number: "__string",
|
7352
7505
|
# sender_id: "__string",
|
@@ -7571,6 +7724,7 @@ module Aws::Pinpoint
|
|
7571
7724
|
# sms_message: {
|
7572
7725
|
# body: "__string",
|
7573
7726
|
# keyword: "__string",
|
7727
|
+
# media_url: "__string",
|
7574
7728
|
# message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
|
7575
7729
|
# origination_number: "__string",
|
7576
7730
|
# sender_id: "__string",
|
@@ -8086,6 +8240,10 @@ module Aws::Pinpoint
|
|
8086
8240
|
# write_campaign_request: { # required
|
8087
8241
|
# additional_treatments: [
|
8088
8242
|
# {
|
8243
|
+
# custom_delivery_configuration: {
|
8244
|
+
# delivery_uri: "__string", # required
|
8245
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
8246
|
+
# },
|
8089
8247
|
# message_configuration: {
|
8090
8248
|
# adm_message: {
|
8091
8249
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
@@ -8129,6 +8287,9 @@ module Aws::Pinpoint
|
|
8129
8287
|
# title: "__string",
|
8130
8288
|
# url: "__string",
|
8131
8289
|
# },
|
8290
|
+
# custom_message: {
|
8291
|
+
# data: "__string",
|
8292
|
+
# },
|
8132
8293
|
# default_message: {
|
8133
8294
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
8134
8295
|
# body: "__string",
|
@@ -8224,6 +8385,10 @@ module Aws::Pinpoint
|
|
8224
8385
|
# treatment_name: "__string",
|
8225
8386
|
# },
|
8226
8387
|
# ],
|
8388
|
+
# custom_delivery_configuration: {
|
8389
|
+
# delivery_uri: "__string", # required
|
8390
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
8391
|
+
# },
|
8227
8392
|
# description: "__string",
|
8228
8393
|
# holdout_percent: 1,
|
8229
8394
|
# hook: {
|
@@ -8281,6 +8446,9 @@ module Aws::Pinpoint
|
|
8281
8446
|
# title: "__string",
|
8282
8447
|
# url: "__string",
|
8283
8448
|
# },
|
8449
|
+
# custom_message: {
|
8450
|
+
# data: "__string",
|
8451
|
+
# },
|
8284
8452
|
# default_message: {
|
8285
8453
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
8286
8454
|
# body: "__string",
|
@@ -8385,6 +8553,9 @@ module Aws::Pinpoint
|
|
8385
8553
|
# @example Response structure
|
8386
8554
|
#
|
8387
8555
|
# resp.campaign_response.additional_treatments #=> Array
|
8556
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
8557
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
8558
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
8388
8559
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
8389
8560
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
8390
8561
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -8422,6 +8593,7 @@ module Aws::Pinpoint
|
|
8422
8593
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
8423
8594
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
8424
8595
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
8596
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
8425
8597
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
8426
8598
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
8427
8599
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -8486,6 +8658,9 @@ module Aws::Pinpoint
|
|
8486
8658
|
# resp.campaign_response.application_id #=> String
|
8487
8659
|
# resp.campaign_response.arn #=> String
|
8488
8660
|
# resp.campaign_response.creation_date #=> String
|
8661
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
8662
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
8663
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
8489
8664
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
8490
8665
|
# resp.campaign_response.description #=> String
|
8491
8666
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -8535,6 +8710,7 @@ module Aws::Pinpoint
|
|
8535
8710
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
8536
8711
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
8537
8712
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
8713
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
8538
8714
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
8539
8715
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
8540
8716
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -8716,8 +8892,10 @@ module Aws::Pinpoint
|
|
8716
8892
|
|
8717
8893
|
# Creates a new endpoint for an application or updates the settings and
|
8718
8894
|
# attributes of an existing endpoint for an application. You can also
|
8719
|
-
# use this operation to define custom attributes
|
8720
|
-
#
|
8895
|
+
# use this operation to define custom attributes for an endpoint. If an
|
8896
|
+
# update includes one or more values for a custom attribute, Amazon
|
8897
|
+
# Pinpoint replaces (overwrites) any existing values with the new
|
8898
|
+
# values.
|
8721
8899
|
#
|
8722
8900
|
# @option params [required, String] :application_id
|
8723
8901
|
#
|
@@ -8740,7 +8918,7 @@ module Aws::Pinpoint
|
|
8740
8918
|
# attributes: {
|
8741
8919
|
# "__string" => ["__string"],
|
8742
8920
|
# },
|
8743
|
-
# channel_type: "
|
8921
|
+
# channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
8744
8922
|
# demographic: {
|
8745
8923
|
# app_version: "__string",
|
8746
8924
|
# locale: "__string",
|
@@ -8792,8 +8970,9 @@ module Aws::Pinpoint
|
|
8792
8970
|
# Creates a new batch of endpoints for an application or updates the
|
8793
8971
|
# settings and attributes of a batch of existing endpoints for an
|
8794
8972
|
# application. You can also use this operation to define custom
|
8795
|
-
# attributes
|
8796
|
-
#
|
8973
|
+
# attributes for a batch of endpoints. If an update includes one or more
|
8974
|
+
# values for a custom attribute, Amazon Pinpoint replaces (overwrites)
|
8975
|
+
# any existing values with the new values.
|
8797
8976
|
#
|
8798
8977
|
# @option params [required, String] :application_id
|
8799
8978
|
#
|
@@ -8816,7 +8995,7 @@ module Aws::Pinpoint
|
|
8816
8995
|
# attributes: {
|
8817
8996
|
# "__string" => ["__string"],
|
8818
8997
|
# },
|
8819
|
-
# channel_type: "
|
8998
|
+
# channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
8820
8999
|
# demographic: {
|
8821
9000
|
# app_version: "__string",
|
8822
9001
|
# locale: "__string",
|
@@ -8937,6 +9116,16 @@ module Aws::Pinpoint
|
|
8937
9116
|
# write_journey_request: { # required
|
8938
9117
|
# activities: {
|
8939
9118
|
# "__string" => {
|
9119
|
+
# custom: {
|
9120
|
+
# delivery_uri: "__string",
|
9121
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
9122
|
+
# message_config: {
|
9123
|
+
# data: "__string",
|
9124
|
+
# },
|
9125
|
+
# next_activity: "__string",
|
9126
|
+
# template_name: "__string",
|
9127
|
+
# template_version: "__string",
|
9128
|
+
# },
|
8940
9129
|
# conditional_split: {
|
8941
9130
|
# condition: {
|
8942
9131
|
# conditions: [
|
@@ -9157,6 +9346,14 @@ module Aws::Pinpoint
|
|
9157
9346
|
# wait_until: "__string",
|
9158
9347
|
# },
|
9159
9348
|
# },
|
9349
|
+
# push: {
|
9350
|
+
# message_config: {
|
9351
|
+
# time_to_live: "__string",
|
9352
|
+
# },
|
9353
|
+
# next_activity: "__string",
|
9354
|
+
# template_name: "__string",
|
9355
|
+
# template_version: "__string",
|
9356
|
+
# },
|
9160
9357
|
# random_split: {
|
9161
9358
|
# branches: [
|
9162
9359
|
# {
|
@@ -9165,6 +9362,15 @@ module Aws::Pinpoint
|
|
9165
9362
|
# },
|
9166
9363
|
# ],
|
9167
9364
|
# },
|
9365
|
+
# sms: {
|
9366
|
+
# message_config: {
|
9367
|
+
# message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
|
9368
|
+
# sender_id: "__string",
|
9369
|
+
# },
|
9370
|
+
# next_activity: "__string",
|
9371
|
+
# template_name: "__string",
|
9372
|
+
# template_version: "__string",
|
9373
|
+
# },
|
9168
9374
|
# wait: {
|
9169
9375
|
# next_activity: "__string",
|
9170
9376
|
# wait_time: {
|
@@ -9207,6 +9413,13 @@ module Aws::Pinpoint
|
|
9207
9413
|
# @example Response structure
|
9208
9414
|
#
|
9209
9415
|
# resp.journey_response.activities #=> Hash
|
9416
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
9417
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
9418
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
9419
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
9420
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
9421
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
9422
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
9210
9423
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
9211
9424
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
9212
9425
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -9323,9 +9536,18 @@ module Aws::Pinpoint
|
|
9323
9536
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
9324
9537
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
9325
9538
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
9539
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
9540
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
9541
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
9542
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
9326
9543
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
9327
9544
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
9328
9545
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
9546
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
9547
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
9548
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
9549
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
9550
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
9329
9551
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
9330
9552
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
9331
9553
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -9386,6 +9608,13 @@ module Aws::Pinpoint
|
|
9386
9608
|
# @example Response structure
|
9387
9609
|
#
|
9388
9610
|
# resp.journey_response.activities #=> Hash
|
9611
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
9612
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
9613
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types[0] #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
9614
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
9615
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
9616
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
9617
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
9389
9618
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
9390
9619
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
9391
9620
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -9502,9 +9731,18 @@ module Aws::Pinpoint
|
|
9502
9731
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
9503
9732
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
9504
9733
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
9734
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
9735
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
9736
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
9737
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
9505
9738
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
9506
9739
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
9507
9740
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
9741
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
9742
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
9743
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
9744
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
9745
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
9508
9746
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
9509
9747
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
9510
9748
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -10222,7 +10460,7 @@ module Aws::Pinpoint
|
|
10222
10460
|
params: params,
|
10223
10461
|
config: config)
|
10224
10462
|
context[:gem_name] = 'aws-sdk-pinpoint'
|
10225
|
-
context[:gem_version] = '1.
|
10463
|
+
context[:gem_version] = '1.41.0'
|
10226
10464
|
Seahorse::Client::Request.new(handlers, context)
|
10227
10465
|
end
|
10228
10466
|
|