aws-sdk-pinpoint 1.37.0 → 1.42.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-pinpoint.rb +1 -1
- data/lib/aws-sdk-pinpoint/client.rb +255 -16
- data/lib/aws-sdk-pinpoint/client_api.rb +57 -0
- data/lib/aws-sdk-pinpoint/types.rb +753 -147
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 99c16a90cc4b7a13c0bb24c460d50edc7fddf0a1bfdc49291951fbb84e9994f0
|
4
|
+
data.tar.gz: fec2775e5b22e35cc38eda636c984de8409037a1deaeb9268bce83b3c783af93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdb2975c21b2eb5148e74881860b6506eddd2a328fda60b366ff7cd8633e8ebdc765887176b5dec9834f9678b53d72fb35f1ce5dfc93827ba127bfb0262bff8a
|
7
|
+
data.tar.gz: 84eca7d05187d08c709de4383c17502a36ad417b06a8df2ea00a81b7143ff00a715c82cf8b6212ec64daed14a0579b6646705cb45f2e60650e031c2b594f4f6f
|
data/lib/aws-sdk-pinpoint.rb
CHANGED
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
30
|
|
@@ -69,6 +70,7 @@ module Aws::Pinpoint
|
|
69
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
75
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
76
|
|
@@ -105,7 +107,7 @@ module Aws::Pinpoint
|
|
105
107
|
# @option options [required, String] :region
|
106
108
|
# The AWS region to connect to. The configured `:region` is
|
107
109
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
109
111
|
#
|
110
112
|
# * `Aws.config[:region]`
|
111
113
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +163,7 @@ module Aws::Pinpoint
|
|
161
163
|
# @option options [String] :endpoint
|
162
164
|
# The client endpoint is normally constructed from the `:region`
|
163
165
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
167
|
#
|
166
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +178,7 @@ module Aws::Pinpoint
|
|
176
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
179
|
#
|
178
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
182
|
#
|
181
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
184
|
# The log formatter.
|
@@ -365,6 +367,10 @@ module Aws::Pinpoint
|
|
365
367
|
# write_campaign_request: { # required
|
366
368
|
# additional_treatments: [
|
367
369
|
# {
|
370
|
+
# custom_delivery_configuration: {
|
371
|
+
# delivery_uri: "__string", # required
|
372
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
373
|
+
# },
|
368
374
|
# message_configuration: {
|
369
375
|
# adm_message: {
|
370
376
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
@@ -408,6 +414,9 @@ module Aws::Pinpoint
|
|
408
414
|
# title: "__string",
|
409
415
|
# url: "__string",
|
410
416
|
# },
|
417
|
+
# custom_message: {
|
418
|
+
# data: "__string",
|
419
|
+
# },
|
411
420
|
# default_message: {
|
412
421
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
413
422
|
# body: "__string",
|
@@ -503,6 +512,10 @@ module Aws::Pinpoint
|
|
503
512
|
# treatment_name: "__string",
|
504
513
|
# },
|
505
514
|
# ],
|
515
|
+
# custom_delivery_configuration: {
|
516
|
+
# delivery_uri: "__string", # required
|
517
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
518
|
+
# },
|
506
519
|
# description: "__string",
|
507
520
|
# holdout_percent: 1,
|
508
521
|
# hook: {
|
@@ -560,6 +573,9 @@ module Aws::Pinpoint
|
|
560
573
|
# title: "__string",
|
561
574
|
# url: "__string",
|
562
575
|
# },
|
576
|
+
# custom_message: {
|
577
|
+
# data: "__string",
|
578
|
+
# },
|
563
579
|
# default_message: {
|
564
580
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
565
581
|
# body: "__string",
|
@@ -664,6 +680,9 @@ module Aws::Pinpoint
|
|
664
680
|
# @example Response structure
|
665
681
|
#
|
666
682
|
# resp.campaign_response.additional_treatments #=> Array
|
683
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
684
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
685
|
+
# 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"
|
667
686
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
668
687
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
669
688
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -701,6 +720,7 @@ module Aws::Pinpoint
|
|
701
720
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
702
721
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
703
722
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
723
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
704
724
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
705
725
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
706
726
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -765,6 +785,9 @@ module Aws::Pinpoint
|
|
765
785
|
# resp.campaign_response.application_id #=> String
|
766
786
|
# resp.campaign_response.arn #=> String
|
767
787
|
# resp.campaign_response.creation_date #=> String
|
788
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
789
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
790
|
+
# 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"
|
768
791
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
769
792
|
# resp.campaign_response.description #=> String
|
770
793
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -814,6 +837,7 @@ module Aws::Pinpoint
|
|
814
837
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
815
838
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
816
839
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
840
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
817
841
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
818
842
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
819
843
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -1067,6 +1091,16 @@ module Aws::Pinpoint
|
|
1067
1091
|
# write_journey_request: { # required
|
1068
1092
|
# activities: {
|
1069
1093
|
# "__string" => {
|
1094
|
+
# custom: {
|
1095
|
+
# delivery_uri: "__string",
|
1096
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
1097
|
+
# message_config: {
|
1098
|
+
# data: "__string",
|
1099
|
+
# },
|
1100
|
+
# next_activity: "__string",
|
1101
|
+
# template_name: "__string",
|
1102
|
+
# template_version: "__string",
|
1103
|
+
# },
|
1070
1104
|
# conditional_split: {
|
1071
1105
|
# condition: {
|
1072
1106
|
# conditions: [
|
@@ -1287,6 +1321,14 @@ module Aws::Pinpoint
|
|
1287
1321
|
# wait_until: "__string",
|
1288
1322
|
# },
|
1289
1323
|
# },
|
1324
|
+
# push: {
|
1325
|
+
# message_config: {
|
1326
|
+
# time_to_live: "__string",
|
1327
|
+
# },
|
1328
|
+
# next_activity: "__string",
|
1329
|
+
# template_name: "__string",
|
1330
|
+
# template_version: "__string",
|
1331
|
+
# },
|
1290
1332
|
# random_split: {
|
1291
1333
|
# branches: [
|
1292
1334
|
# {
|
@@ -1295,6 +1337,15 @@ module Aws::Pinpoint
|
|
1295
1337
|
# },
|
1296
1338
|
# ],
|
1297
1339
|
# },
|
1340
|
+
# sms: {
|
1341
|
+
# message_config: {
|
1342
|
+
# message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
|
1343
|
+
# sender_id: "__string",
|
1344
|
+
# },
|
1345
|
+
# next_activity: "__string",
|
1346
|
+
# template_name: "__string",
|
1347
|
+
# template_version: "__string",
|
1348
|
+
# },
|
1298
1349
|
# wait: {
|
1299
1350
|
# next_activity: "__string",
|
1300
1351
|
# wait_time: {
|
@@ -1337,6 +1388,13 @@ module Aws::Pinpoint
|
|
1337
1388
|
# @example Response structure
|
1338
1389
|
#
|
1339
1390
|
# resp.journey_response.activities #=> Hash
|
1391
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
1392
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
1393
|
+
# 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"
|
1394
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
1395
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
1396
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
1397
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
1340
1398
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
1341
1399
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
1342
1400
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -1453,9 +1511,18 @@ module Aws::Pinpoint
|
|
1453
1511
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
1454
1512
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
1455
1513
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
1514
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
1515
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
1516
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
1517
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
1456
1518
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
1457
1519
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
1458
1520
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
1521
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
1522
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
1523
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
1524
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
1525
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
1459
1526
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
1460
1527
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
1461
1528
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -2288,6 +2355,9 @@ module Aws::Pinpoint
|
|
2288
2355
|
# @example Response structure
|
2289
2356
|
#
|
2290
2357
|
# resp.campaign_response.additional_treatments #=> Array
|
2358
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
2359
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
2360
|
+
# 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"
|
2291
2361
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
2292
2362
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
2293
2363
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -2325,6 +2395,7 @@ module Aws::Pinpoint
|
|
2325
2395
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
2326
2396
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
2327
2397
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
2398
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
2328
2399
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
2329
2400
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
2330
2401
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -2389,6 +2460,9 @@ module Aws::Pinpoint
|
|
2389
2460
|
# resp.campaign_response.application_id #=> String
|
2390
2461
|
# resp.campaign_response.arn #=> String
|
2391
2462
|
# resp.campaign_response.creation_date #=> String
|
2463
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
2464
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
2465
|
+
# 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"
|
2392
2466
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
2393
2467
|
# resp.campaign_response.description #=> String
|
2394
2468
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -2438,6 +2512,7 @@ module Aws::Pinpoint
|
|
2438
2512
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
2439
2513
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
2440
2514
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
2515
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
2441
2516
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
2442
2517
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
2443
2518
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -2612,7 +2687,7 @@ module Aws::Pinpoint
|
|
2612
2687
|
# resp.endpoint_response.attributes #=> Hash
|
2613
2688
|
# resp.endpoint_response.attributes["__string"] #=> Array
|
2614
2689
|
# resp.endpoint_response.attributes["__string"][0] #=> String
|
2615
|
-
# resp.endpoint_response.channel_type #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
2690
|
+
# resp.endpoint_response.channel_type #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
2616
2691
|
# resp.endpoint_response.cohort_id #=> String
|
2617
2692
|
# resp.endpoint_response.creation_date #=> String
|
2618
2693
|
# resp.endpoint_response.demographic.app_version #=> String
|
@@ -2740,6 +2815,13 @@ module Aws::Pinpoint
|
|
2740
2815
|
# @example Response structure
|
2741
2816
|
#
|
2742
2817
|
# resp.journey_response.activities #=> Hash
|
2818
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
2819
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
2820
|
+
# 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"
|
2821
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
2822
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
2823
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
2824
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
2743
2825
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
2744
2826
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
2745
2827
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -2856,9 +2938,18 @@ module Aws::Pinpoint
|
|
2856
2938
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
2857
2939
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
2858
2940
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
2941
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
2942
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
2943
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
2944
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
2859
2945
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
2860
2946
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
2861
2947
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
2948
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
2949
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
2950
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
2951
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
2952
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
2862
2953
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
2863
2954
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
2864
2955
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -3190,7 +3281,7 @@ module Aws::Pinpoint
|
|
3190
3281
|
# resp.endpoints_response.item[0].attributes #=> Hash
|
3191
3282
|
# resp.endpoints_response.item[0].attributes["__string"] #=> Array
|
3192
3283
|
# resp.endpoints_response.item[0].attributes["__string"][0] #=> String
|
3193
|
-
# 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"
|
3284
|
+
# 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"
|
3194
3285
|
# resp.endpoints_response.item[0].cohort_id #=> String
|
3195
3286
|
# resp.endpoints_response.item[0].creation_date #=> String
|
3196
3287
|
# resp.endpoints_response.item[0].demographic.app_version #=> String
|
@@ -3710,6 +3801,9 @@ module Aws::Pinpoint
|
|
3710
3801
|
# @example Response structure
|
3711
3802
|
#
|
3712
3803
|
# resp.campaign_response.additional_treatments #=> Array
|
3804
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
3805
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
3806
|
+
# 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"
|
3713
3807
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
3714
3808
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
3715
3809
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -3747,6 +3841,7 @@ module Aws::Pinpoint
|
|
3747
3841
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
3748
3842
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
3749
3843
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
3844
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
3750
3845
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
3751
3846
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
3752
3847
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -3811,6 +3906,9 @@ module Aws::Pinpoint
|
|
3811
3906
|
# resp.campaign_response.application_id #=> String
|
3812
3907
|
# resp.campaign_response.arn #=> String
|
3813
3908
|
# resp.campaign_response.creation_date #=> String
|
3909
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
3910
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
3911
|
+
# 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"
|
3814
3912
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
3815
3913
|
# resp.campaign_response.description #=> String
|
3816
3914
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -3860,6 +3958,7 @@ module Aws::Pinpoint
|
|
3860
3958
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
3861
3959
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
3862
3960
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
3961
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
3863
3962
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
3864
3963
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
3865
3964
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -4070,6 +4169,9 @@ module Aws::Pinpoint
|
|
4070
4169
|
# @example Response structure
|
4071
4170
|
#
|
4072
4171
|
# resp.campaign_response.additional_treatments #=> Array
|
4172
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
4173
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
4174
|
+
# 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"
|
4073
4175
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
4074
4176
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4075
4177
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -4107,6 +4209,7 @@ module Aws::Pinpoint
|
|
4107
4209
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4108
4210
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
4109
4211
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
4212
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
4110
4213
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4111
4214
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
4112
4215
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4171,6 +4274,9 @@ module Aws::Pinpoint
|
|
4171
4274
|
# resp.campaign_response.application_id #=> String
|
4172
4275
|
# resp.campaign_response.arn #=> String
|
4173
4276
|
# resp.campaign_response.creation_date #=> String
|
4277
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
4278
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
4279
|
+
# 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"
|
4174
4280
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4175
4281
|
# resp.campaign_response.description #=> String
|
4176
4282
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -4220,6 +4326,7 @@ module Aws::Pinpoint
|
|
4220
4326
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
4221
4327
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
4222
4328
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
4329
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
4223
4330
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4224
4331
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
4225
4332
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -4324,6 +4431,9 @@ module Aws::Pinpoint
|
|
4324
4431
|
#
|
4325
4432
|
# resp.campaigns_response.item #=> Array
|
4326
4433
|
# resp.campaigns_response.item[0].additional_treatments #=> Array
|
4434
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
4435
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
4436
|
+
# 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"
|
4327
4437
|
# resp.campaigns_response.item[0].additional_treatments[0].id #=> String
|
4328
4438
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4329
4439
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -4361,6 +4471,7 @@ module Aws::Pinpoint
|
|
4361
4471
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4362
4472
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.title #=> String
|
4363
4473
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.url #=> String
|
4474
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.custom_message.data #=> String
|
4364
4475
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4365
4476
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.body #=> String
|
4366
4477
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4425,6 +4536,9 @@ module Aws::Pinpoint
|
|
4425
4536
|
# resp.campaigns_response.item[0].application_id #=> String
|
4426
4537
|
# resp.campaigns_response.item[0].arn #=> String
|
4427
4538
|
# resp.campaigns_response.item[0].creation_date #=> String
|
4539
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.delivery_uri #=> String
|
4540
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types #=> Array
|
4541
|
+
# 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"
|
4428
4542
|
# resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4429
4543
|
# resp.campaigns_response.item[0].description #=> String
|
4430
4544
|
# resp.campaigns_response.item[0].holdout_percent #=> Integer
|
@@ -4474,6 +4588,7 @@ module Aws::Pinpoint
|
|
4474
4588
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4475
4589
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.title #=> String
|
4476
4590
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.url #=> String
|
4591
|
+
# resp.campaigns_response.item[0].message_configuration.custom_message.data #=> String
|
4477
4592
|
# resp.campaigns_response.item[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4478
4593
|
# resp.campaigns_response.item[0].message_configuration.default_message.body #=> String
|
4479
4594
|
# resp.campaigns_response.item[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4577,6 +4692,9 @@ module Aws::Pinpoint
|
|
4577
4692
|
#
|
4578
4693
|
# resp.campaigns_response.item #=> Array
|
4579
4694
|
# resp.campaigns_response.item[0].additional_treatments #=> Array
|
4695
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
4696
|
+
# resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
4697
|
+
# 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"
|
4580
4698
|
# resp.campaigns_response.item[0].additional_treatments[0].id #=> String
|
4581
4699
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4582
4700
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -4614,6 +4732,7 @@ module Aws::Pinpoint
|
|
4614
4732
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4615
4733
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.title #=> String
|
4616
4734
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.baidu_message.url #=> String
|
4735
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.custom_message.data #=> String
|
4617
4736
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4618
4737
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.body #=> String
|
4619
4738
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4678,6 +4797,9 @@ module Aws::Pinpoint
|
|
4678
4797
|
# resp.campaigns_response.item[0].application_id #=> String
|
4679
4798
|
# resp.campaigns_response.item[0].arn #=> String
|
4680
4799
|
# resp.campaigns_response.item[0].creation_date #=> String
|
4800
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.delivery_uri #=> String
|
4801
|
+
# resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types #=> Array
|
4802
|
+
# 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"
|
4681
4803
|
# resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4682
4804
|
# resp.campaigns_response.item[0].description #=> String
|
4683
4805
|
# resp.campaigns_response.item[0].holdout_percent #=> Integer
|
@@ -4727,6 +4849,7 @@ module Aws::Pinpoint
|
|
4727
4849
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.time_to_live #=> Integer
|
4728
4850
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.title #=> String
|
4729
4851
|
# resp.campaigns_response.item[0].message_configuration.baidu_message.url #=> String
|
4852
|
+
# resp.campaigns_response.item[0].message_configuration.custom_message.data #=> String
|
4730
4853
|
# resp.campaigns_response.item[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
4731
4854
|
# resp.campaigns_response.item[0].message_configuration.default_message.body #=> String
|
4732
4855
|
# resp.campaigns_response.item[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -4952,7 +5075,7 @@ module Aws::Pinpoint
|
|
4952
5075
|
# resp.endpoint_response.attributes #=> Hash
|
4953
5076
|
# resp.endpoint_response.attributes["__string"] #=> Array
|
4954
5077
|
# resp.endpoint_response.attributes["__string"][0] #=> String
|
4955
|
-
# resp.endpoint_response.channel_type #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
5078
|
+
# resp.endpoint_response.channel_type #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
|
4956
5079
|
# resp.endpoint_response.cohort_id #=> String
|
4957
5080
|
# resp.endpoint_response.creation_date #=> String
|
4958
5081
|
# resp.endpoint_response.demographic.app_version #=> String
|
@@ -5288,6 +5411,13 @@ module Aws::Pinpoint
|
|
5288
5411
|
# @example Response structure
|
5289
5412
|
#
|
5290
5413
|
# resp.journey_response.activities #=> Hash
|
5414
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
5415
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
5416
|
+
# 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"
|
5417
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
5418
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
5419
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
5420
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
5291
5421
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
5292
5422
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
5293
5423
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -5404,9 +5534,18 @@ module Aws::Pinpoint
|
|
5404
5534
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
5405
5535
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
5406
5536
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
5537
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
5538
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
5539
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
5540
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
5407
5541
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
5408
5542
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
5409
5543
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
5544
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
5545
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
5546
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
5547
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
5548
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
5410
5549
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
5411
5550
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
5412
5551
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -6511,7 +6650,7 @@ module Aws::Pinpoint
|
|
6511
6650
|
# resp.endpoints_response.item[0].attributes #=> Hash
|
6512
6651
|
# resp.endpoints_response.item[0].attributes["__string"] #=> Array
|
6513
6652
|
# resp.endpoints_response.item[0].attributes["__string"][0] #=> String
|
6514
|
-
# 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"
|
6653
|
+
# 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"
|
6515
6654
|
# resp.endpoints_response.item[0].cohort_id #=> String
|
6516
6655
|
# resp.endpoints_response.item[0].creation_date #=> String
|
6517
6656
|
# resp.endpoints_response.item[0].demographic.app_version #=> String
|
@@ -6654,6 +6793,13 @@ module Aws::Pinpoint
|
|
6654
6793
|
#
|
6655
6794
|
# resp.journeys_response.item #=> Array
|
6656
6795
|
# resp.journeys_response.item[0].activities #=> Hash
|
6796
|
+
# resp.journeys_response.item[0].activities["__string"].custom.delivery_uri #=> String
|
6797
|
+
# resp.journeys_response.item[0].activities["__string"].custom.endpoint_types #=> Array
|
6798
|
+
# 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"
|
6799
|
+
# resp.journeys_response.item[0].activities["__string"].custom.message_config.data #=> String
|
6800
|
+
# resp.journeys_response.item[0].activities["__string"].custom.next_activity #=> String
|
6801
|
+
# resp.journeys_response.item[0].activities["__string"].custom.template_name #=> String
|
6802
|
+
# resp.journeys_response.item[0].activities["__string"].custom.template_version #=> String
|
6657
6803
|
# resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions #=> Array
|
6658
6804
|
# resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
6659
6805
|
# resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -6770,9 +6916,18 @@ module Aws::Pinpoint
|
|
6770
6916
|
# resp.journeys_response.item[0].activities["__string"].multi_condition.default_activity #=> String
|
6771
6917
|
# resp.journeys_response.item[0].activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
6772
6918
|
# resp.journeys_response.item[0].activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
6919
|
+
# resp.journeys_response.item[0].activities["__string"].push.message_config.time_to_live #=> String
|
6920
|
+
# resp.journeys_response.item[0].activities["__string"].push.next_activity #=> String
|
6921
|
+
# resp.journeys_response.item[0].activities["__string"].push.template_name #=> String
|
6922
|
+
# resp.journeys_response.item[0].activities["__string"].push.template_version #=> String
|
6773
6923
|
# resp.journeys_response.item[0].activities["__string"].random_split.branches #=> Array
|
6774
6924
|
# resp.journeys_response.item[0].activities["__string"].random_split.branches[0].next_activity #=> String
|
6775
6925
|
# resp.journeys_response.item[0].activities["__string"].random_split.branches[0].percentage #=> Integer
|
6926
|
+
# resp.journeys_response.item[0].activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
6927
|
+
# resp.journeys_response.item[0].activities["__string"].sms.message_config.sender_id #=> String
|
6928
|
+
# resp.journeys_response.item[0].activities["__string"].sms.next_activity #=> String
|
6929
|
+
# resp.journeys_response.item[0].activities["__string"].sms.template_name #=> String
|
6930
|
+
# resp.journeys_response.item[0].activities["__string"].sms.template_version #=> String
|
6776
6931
|
# resp.journeys_response.item[0].activities["__string"].wait.next_activity #=> String
|
6777
6932
|
# resp.journeys_response.item[0].activities["__string"].wait.wait_time.wait_for #=> String
|
6778
6933
|
# resp.journeys_response.item[0].activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -7042,7 +7197,7 @@ module Aws::Pinpoint
|
|
7042
7197
|
# attributes: {
|
7043
7198
|
# "__string" => ["__string"],
|
7044
7199
|
# },
|
7045
|
-
# channel_type: "
|
7200
|
+
# channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
7046
7201
|
# demographic: {
|
7047
7202
|
# app_version: "__string",
|
7048
7203
|
# locale: "__string",
|
@@ -7181,7 +7336,7 @@ module Aws::Pinpoint
|
|
7181
7336
|
# addresses: {
|
7182
7337
|
# "__string" => {
|
7183
7338
|
# body_override: "__string",
|
7184
|
-
# channel_type: "
|
7339
|
+
# channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
7185
7340
|
# context: {
|
7186
7341
|
# "__string" => "__string",
|
7187
7342
|
# },
|
@@ -8087,6 +8242,10 @@ module Aws::Pinpoint
|
|
8087
8242
|
# write_campaign_request: { # required
|
8088
8243
|
# additional_treatments: [
|
8089
8244
|
# {
|
8245
|
+
# custom_delivery_configuration: {
|
8246
|
+
# delivery_uri: "__string", # required
|
8247
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
8248
|
+
# },
|
8090
8249
|
# message_configuration: {
|
8091
8250
|
# adm_message: {
|
8092
8251
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
@@ -8130,6 +8289,9 @@ module Aws::Pinpoint
|
|
8130
8289
|
# title: "__string",
|
8131
8290
|
# url: "__string",
|
8132
8291
|
# },
|
8292
|
+
# custom_message: {
|
8293
|
+
# data: "__string",
|
8294
|
+
# },
|
8133
8295
|
# default_message: {
|
8134
8296
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
8135
8297
|
# body: "__string",
|
@@ -8225,6 +8387,10 @@ module Aws::Pinpoint
|
|
8225
8387
|
# treatment_name: "__string",
|
8226
8388
|
# },
|
8227
8389
|
# ],
|
8390
|
+
# custom_delivery_configuration: {
|
8391
|
+
# delivery_uri: "__string", # required
|
8392
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
8393
|
+
# },
|
8228
8394
|
# description: "__string",
|
8229
8395
|
# holdout_percent: 1,
|
8230
8396
|
# hook: {
|
@@ -8282,6 +8448,9 @@ module Aws::Pinpoint
|
|
8282
8448
|
# title: "__string",
|
8283
8449
|
# url: "__string",
|
8284
8450
|
# },
|
8451
|
+
# custom_message: {
|
8452
|
+
# data: "__string",
|
8453
|
+
# },
|
8285
8454
|
# default_message: {
|
8286
8455
|
# action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
|
8287
8456
|
# body: "__string",
|
@@ -8386,6 +8555,9 @@ module Aws::Pinpoint
|
|
8386
8555
|
# @example Response structure
|
8387
8556
|
#
|
8388
8557
|
# resp.campaign_response.additional_treatments #=> Array
|
8558
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
|
8559
|
+
# resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
|
8560
|
+
# 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"
|
8389
8561
|
# resp.campaign_response.additional_treatments[0].id #=> String
|
8390
8562
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
8391
8563
|
# resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
|
@@ -8423,6 +8595,7 @@ module Aws::Pinpoint
|
|
8423
8595
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.time_to_live #=> Integer
|
8424
8596
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.title #=> String
|
8425
8597
|
# resp.campaign_response.additional_treatments[0].message_configuration.baidu_message.url #=> String
|
8598
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.custom_message.data #=> String
|
8426
8599
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
8427
8600
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.body #=> String
|
8428
8601
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_icon_url #=> String
|
@@ -8487,6 +8660,9 @@ module Aws::Pinpoint
|
|
8487
8660
|
# resp.campaign_response.application_id #=> String
|
8488
8661
|
# resp.campaign_response.arn #=> String
|
8489
8662
|
# resp.campaign_response.creation_date #=> String
|
8663
|
+
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
8664
|
+
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
8665
|
+
# 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"
|
8490
8666
|
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
8491
8667
|
# resp.campaign_response.description #=> String
|
8492
8668
|
# resp.campaign_response.holdout_percent #=> Integer
|
@@ -8536,6 +8712,7 @@ module Aws::Pinpoint
|
|
8536
8712
|
# resp.campaign_response.message_configuration.baidu_message.time_to_live #=> Integer
|
8537
8713
|
# resp.campaign_response.message_configuration.baidu_message.title #=> String
|
8538
8714
|
# resp.campaign_response.message_configuration.baidu_message.url #=> String
|
8715
|
+
# resp.campaign_response.message_configuration.custom_message.data #=> String
|
8539
8716
|
# resp.campaign_response.message_configuration.default_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
8540
8717
|
# resp.campaign_response.message_configuration.default_message.body #=> String
|
8541
8718
|
# resp.campaign_response.message_configuration.default_message.image_icon_url #=> String
|
@@ -8717,8 +8894,10 @@ module Aws::Pinpoint
|
|
8717
8894
|
|
8718
8895
|
# Creates a new endpoint for an application or updates the settings and
|
8719
8896
|
# attributes of an existing endpoint for an application. You can also
|
8720
|
-
# use this operation to define custom attributes
|
8721
|
-
#
|
8897
|
+
# use this operation to define custom attributes for an endpoint. If an
|
8898
|
+
# update includes one or more values for a custom attribute, Amazon
|
8899
|
+
# Pinpoint replaces (overwrites) any existing values with the new
|
8900
|
+
# values.
|
8722
8901
|
#
|
8723
8902
|
# @option params [required, String] :application_id
|
8724
8903
|
#
|
@@ -8741,7 +8920,7 @@ module Aws::Pinpoint
|
|
8741
8920
|
# attributes: {
|
8742
8921
|
# "__string" => ["__string"],
|
8743
8922
|
# },
|
8744
|
-
# channel_type: "
|
8923
|
+
# channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
8745
8924
|
# demographic: {
|
8746
8925
|
# app_version: "__string",
|
8747
8926
|
# locale: "__string",
|
@@ -8793,8 +8972,9 @@ module Aws::Pinpoint
|
|
8793
8972
|
# Creates a new batch of endpoints for an application or updates the
|
8794
8973
|
# settings and attributes of a batch of existing endpoints for an
|
8795
8974
|
# application. You can also use this operation to define custom
|
8796
|
-
# attributes
|
8797
|
-
#
|
8975
|
+
# attributes for a batch of endpoints. If an update includes one or more
|
8976
|
+
# values for a custom attribute, Amazon Pinpoint replaces (overwrites)
|
8977
|
+
# any existing values with the new values.
|
8798
8978
|
#
|
8799
8979
|
# @option params [required, String] :application_id
|
8800
8980
|
#
|
@@ -8817,7 +8997,7 @@ module Aws::Pinpoint
|
|
8817
8997
|
# attributes: {
|
8818
8998
|
# "__string" => ["__string"],
|
8819
8999
|
# },
|
8820
|
-
# channel_type: "
|
9000
|
+
# channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
8821
9001
|
# demographic: {
|
8822
9002
|
# app_version: "__string",
|
8823
9003
|
# locale: "__string",
|
@@ -8938,6 +9118,16 @@ module Aws::Pinpoint
|
|
8938
9118
|
# write_journey_request: { # required
|
8939
9119
|
# activities: {
|
8940
9120
|
# "__string" => {
|
9121
|
+
# custom: {
|
9122
|
+
# delivery_uri: "__string",
|
9123
|
+
# endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
|
9124
|
+
# message_config: {
|
9125
|
+
# data: "__string",
|
9126
|
+
# },
|
9127
|
+
# next_activity: "__string",
|
9128
|
+
# template_name: "__string",
|
9129
|
+
# template_version: "__string",
|
9130
|
+
# },
|
8941
9131
|
# conditional_split: {
|
8942
9132
|
# condition: {
|
8943
9133
|
# conditions: [
|
@@ -9158,6 +9348,14 @@ module Aws::Pinpoint
|
|
9158
9348
|
# wait_until: "__string",
|
9159
9349
|
# },
|
9160
9350
|
# },
|
9351
|
+
# push: {
|
9352
|
+
# message_config: {
|
9353
|
+
# time_to_live: "__string",
|
9354
|
+
# },
|
9355
|
+
# next_activity: "__string",
|
9356
|
+
# template_name: "__string",
|
9357
|
+
# template_version: "__string",
|
9358
|
+
# },
|
9161
9359
|
# random_split: {
|
9162
9360
|
# branches: [
|
9163
9361
|
# {
|
@@ -9166,6 +9364,15 @@ module Aws::Pinpoint
|
|
9166
9364
|
# },
|
9167
9365
|
# ],
|
9168
9366
|
# },
|
9367
|
+
# sms: {
|
9368
|
+
# message_config: {
|
9369
|
+
# message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
|
9370
|
+
# sender_id: "__string",
|
9371
|
+
# },
|
9372
|
+
# next_activity: "__string",
|
9373
|
+
# template_name: "__string",
|
9374
|
+
# template_version: "__string",
|
9375
|
+
# },
|
9169
9376
|
# wait: {
|
9170
9377
|
# next_activity: "__string",
|
9171
9378
|
# wait_time: {
|
@@ -9208,6 +9415,13 @@ module Aws::Pinpoint
|
|
9208
9415
|
# @example Response structure
|
9209
9416
|
#
|
9210
9417
|
# resp.journey_response.activities #=> Hash
|
9418
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
9419
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
9420
|
+
# 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"
|
9421
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
9422
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
9423
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
9424
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
9211
9425
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
9212
9426
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
9213
9427
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -9324,9 +9538,18 @@ module Aws::Pinpoint
|
|
9324
9538
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
9325
9539
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
9326
9540
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
9541
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
9542
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
9543
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
9544
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
9327
9545
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
9328
9546
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
9329
9547
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
9548
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
9549
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
9550
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
9551
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
9552
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
9330
9553
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
9331
9554
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
9332
9555
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -9387,6 +9610,13 @@ module Aws::Pinpoint
|
|
9387
9610
|
# @example Response structure
|
9388
9611
|
#
|
9389
9612
|
# resp.journey_response.activities #=> Hash
|
9613
|
+
# resp.journey_response.activities["__string"].custom.delivery_uri #=> String
|
9614
|
+
# resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
|
9615
|
+
# 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"
|
9616
|
+
# resp.journey_response.activities["__string"].custom.message_config.data #=> String
|
9617
|
+
# resp.journey_response.activities["__string"].custom.next_activity #=> String
|
9618
|
+
# resp.journey_response.activities["__string"].custom.template_name #=> String
|
9619
|
+
# resp.journey_response.activities["__string"].custom.template_version #=> String
|
9390
9620
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
|
9391
9621
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
|
9392
9622
|
# resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
@@ -9503,9 +9733,18 @@ module Aws::Pinpoint
|
|
9503
9733
|
# resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
|
9504
9734
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
|
9505
9735
|
# resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
|
9736
|
+
# resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
|
9737
|
+
# resp.journey_response.activities["__string"].push.next_activity #=> String
|
9738
|
+
# resp.journey_response.activities["__string"].push.template_name #=> String
|
9739
|
+
# resp.journey_response.activities["__string"].push.template_version #=> String
|
9506
9740
|
# resp.journey_response.activities["__string"].random_split.branches #=> Array
|
9507
9741
|
# resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
|
9508
9742
|
# resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
|
9743
|
+
# resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
|
9744
|
+
# resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
|
9745
|
+
# resp.journey_response.activities["__string"].sms.next_activity #=> String
|
9746
|
+
# resp.journey_response.activities["__string"].sms.template_name #=> String
|
9747
|
+
# resp.journey_response.activities["__string"].sms.template_version #=> String
|
9509
9748
|
# resp.journey_response.activities["__string"].wait.next_activity #=> String
|
9510
9749
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
|
9511
9750
|
# resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
|
@@ -10223,7 +10462,7 @@ module Aws::Pinpoint
|
|
10223
10462
|
params: params,
|
10224
10463
|
config: config)
|
10225
10464
|
context[:gem_name] = 'aws-sdk-pinpoint'
|
10226
|
-
context[:gem_version] = '1.
|
10465
|
+
context[:gem_version] = '1.42.1'
|
10227
10466
|
Seahorse::Client::Request.new(handlers, context)
|
10228
10467
|
end
|
10229
10468
|
|