aws-sdk-pinpoint 1.0.0.rc10 → 1.0.0.rc11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-pinpoint.rb +1 -1
- data/lib/aws-sdk-pinpoint/client.rb +185 -1
- data/lib/aws-sdk-pinpoint/client_api.rb +118 -0
- data/lib/aws-sdk-pinpoint/types.rb +217 -15
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c70c5d5c5bfbbd56e5e99b85cf8848d2b629e67b
|
4
|
+
data.tar.gz: 742d4f94824816e2d20384c5b68fd6817c12d93e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ea9a465b426b506085a98caf90d9f76f73645a264a2cff5b9073c315ca8a7c9ae19b1f4dec75aaed93eb93e17ecf65bfeeaaa0a8589a46414dbd97d0d6bf9e8
|
7
|
+
data.tar.gz: 54a187ab10309302fdbf2fdf485b3dd4f640a747def0e86c494fb79b104101a7697fee86176e18144ae9edce3650ac0f89b4c45e7756b936cfd4b779a5303752
|
data/lib/aws-sdk-pinpoint.rb
CHANGED
@@ -145,6 +145,35 @@ module Aws::Pinpoint
|
|
145
145
|
|
146
146
|
# @!group API Operations
|
147
147
|
|
148
|
+
# Used to create an app.
|
149
|
+
#
|
150
|
+
# @option params [required, Types::CreateApplicationRequest] :create_application_request
|
151
|
+
# Application Request.
|
152
|
+
#
|
153
|
+
# @return [Types::CreateAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
154
|
+
#
|
155
|
+
# * {Types::CreateAppResponse#application_response #application_response} => Types::ApplicationResponse
|
156
|
+
#
|
157
|
+
# @example Request syntax with placeholder values
|
158
|
+
#
|
159
|
+
# resp = client.create_app({
|
160
|
+
# create_application_request: { # required
|
161
|
+
# name: "__string",
|
162
|
+
# },
|
163
|
+
# })
|
164
|
+
#
|
165
|
+
# @example Response structure
|
166
|
+
#
|
167
|
+
# resp.application_response.id #=> String
|
168
|
+
# resp.application_response.name #=> String
|
169
|
+
#
|
170
|
+
# @overload create_app(params = {})
|
171
|
+
# @param [Hash] params ({})
|
172
|
+
def create_app(params = {}, options = {})
|
173
|
+
req = build_request(:create_app, params)
|
174
|
+
req.send_request(options)
|
175
|
+
end
|
176
|
+
|
148
177
|
# Creates or updates a campaign.
|
149
178
|
#
|
150
179
|
# @option params [required, String] :application_id
|
@@ -172,6 +201,7 @@ module Aws::Pinpoint
|
|
172
201
|
# image_url: "__string",
|
173
202
|
# json_body: "__string",
|
174
203
|
# media_url: "__string",
|
204
|
+
# raw_content: "__string",
|
175
205
|
# silent_push: false,
|
176
206
|
# title: "__string",
|
177
207
|
# url: "__string",
|
@@ -184,12 +214,14 @@ module Aws::Pinpoint
|
|
184
214
|
# image_url: "__string",
|
185
215
|
# json_body: "__string",
|
186
216
|
# media_url: "__string",
|
217
|
+
# raw_content: "__string",
|
187
218
|
# silent_push: false,
|
188
219
|
# title: "__string",
|
189
220
|
# url: "__string",
|
190
221
|
# },
|
191
222
|
# email_message: {
|
192
223
|
# body: "__string",
|
224
|
+
# from_address: "__string",
|
193
225
|
# html_body: "__string",
|
194
226
|
# title: "__string",
|
195
227
|
# },
|
@@ -201,6 +233,7 @@ module Aws::Pinpoint
|
|
201
233
|
# image_url: "__string",
|
202
234
|
# json_body: "__string",
|
203
235
|
# media_url: "__string",
|
236
|
+
# raw_content: "__string",
|
204
237
|
# silent_push: false,
|
205
238
|
# title: "__string",
|
206
239
|
# url: "__string",
|
@@ -243,6 +276,7 @@ module Aws::Pinpoint
|
|
243
276
|
# image_url: "__string",
|
244
277
|
# json_body: "__string",
|
245
278
|
# media_url: "__string",
|
279
|
+
# raw_content: "__string",
|
246
280
|
# silent_push: false,
|
247
281
|
# title: "__string",
|
248
282
|
# url: "__string",
|
@@ -255,12 +289,14 @@ module Aws::Pinpoint
|
|
255
289
|
# image_url: "__string",
|
256
290
|
# json_body: "__string",
|
257
291
|
# media_url: "__string",
|
292
|
+
# raw_content: "__string",
|
258
293
|
# silent_push: false,
|
259
294
|
# title: "__string",
|
260
295
|
# url: "__string",
|
261
296
|
# },
|
262
297
|
# email_message: {
|
263
298
|
# body: "__string",
|
299
|
+
# from_address: "__string",
|
264
300
|
# html_body: "__string",
|
265
301
|
# title: "__string",
|
266
302
|
# },
|
@@ -272,6 +308,7 @@ module Aws::Pinpoint
|
|
272
308
|
# image_url: "__string",
|
273
309
|
# json_body: "__string",
|
274
310
|
# media_url: "__string",
|
311
|
+
# raw_content: "__string",
|
275
312
|
# silent_push: false,
|
276
313
|
# title: "__string",
|
277
314
|
# url: "__string",
|
@@ -312,6 +349,7 @@ module Aws::Pinpoint
|
|
312
349
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.image_url #=> String
|
313
350
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.json_body #=> String
|
314
351
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.media_url #=> String
|
352
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.raw_content #=> String
|
315
353
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.silent_push #=> Boolean
|
316
354
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.title #=> String
|
317
355
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.url #=> String
|
@@ -322,10 +360,12 @@ module Aws::Pinpoint
|
|
322
360
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_url #=> String
|
323
361
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.json_body #=> String
|
324
362
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.media_url #=> String
|
363
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.raw_content #=> String
|
325
364
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.silent_push #=> Boolean
|
326
365
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.title #=> String
|
327
366
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.url #=> String
|
328
367
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.body #=> String
|
368
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.from_address #=> String
|
329
369
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.html_body #=> String
|
330
370
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.title #=> String
|
331
371
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -335,6 +375,7 @@ module Aws::Pinpoint
|
|
335
375
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.image_url #=> String
|
336
376
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.json_body #=> String
|
337
377
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.media_url #=> String
|
378
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.raw_content #=> String
|
338
379
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.silent_push #=> Boolean
|
339
380
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.title #=> String
|
340
381
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.url #=> String
|
@@ -369,6 +410,7 @@ module Aws::Pinpoint
|
|
369
410
|
# resp.campaign_response.message_configuration.apns_message.image_url #=> String
|
370
411
|
# resp.campaign_response.message_configuration.apns_message.json_body #=> String
|
371
412
|
# resp.campaign_response.message_configuration.apns_message.media_url #=> String
|
413
|
+
# resp.campaign_response.message_configuration.apns_message.raw_content #=> String
|
372
414
|
# resp.campaign_response.message_configuration.apns_message.silent_push #=> Boolean
|
373
415
|
# resp.campaign_response.message_configuration.apns_message.title #=> String
|
374
416
|
# resp.campaign_response.message_configuration.apns_message.url #=> String
|
@@ -379,10 +421,12 @@ module Aws::Pinpoint
|
|
379
421
|
# resp.campaign_response.message_configuration.default_message.image_url #=> String
|
380
422
|
# resp.campaign_response.message_configuration.default_message.json_body #=> String
|
381
423
|
# resp.campaign_response.message_configuration.default_message.media_url #=> String
|
424
|
+
# resp.campaign_response.message_configuration.default_message.raw_content #=> String
|
382
425
|
# resp.campaign_response.message_configuration.default_message.silent_push #=> Boolean
|
383
426
|
# resp.campaign_response.message_configuration.default_message.title #=> String
|
384
427
|
# resp.campaign_response.message_configuration.default_message.url #=> String
|
385
428
|
# resp.campaign_response.message_configuration.email_message.body #=> String
|
429
|
+
# resp.campaign_response.message_configuration.email_message.from_address #=> String
|
386
430
|
# resp.campaign_response.message_configuration.email_message.html_body #=> String
|
387
431
|
# resp.campaign_response.message_configuration.email_message.title #=> String
|
388
432
|
# resp.campaign_response.message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -392,6 +436,7 @@ module Aws::Pinpoint
|
|
392
436
|
# resp.campaign_response.message_configuration.gcm_message.image_url #=> String
|
393
437
|
# resp.campaign_response.message_configuration.gcm_message.json_body #=> String
|
394
438
|
# resp.campaign_response.message_configuration.gcm_message.media_url #=> String
|
439
|
+
# resp.campaign_response.message_configuration.gcm_message.raw_content #=> String
|
395
440
|
# resp.campaign_response.message_configuration.gcm_message.silent_push #=> Boolean
|
396
441
|
# resp.campaign_response.message_configuration.gcm_message.title #=> String
|
397
442
|
# resp.campaign_response.message_configuration.gcm_message.url #=> String
|
@@ -670,6 +715,32 @@ module Aws::Pinpoint
|
|
670
715
|
req.send_request(options)
|
671
716
|
end
|
672
717
|
|
718
|
+
# Deletes an app.
|
719
|
+
#
|
720
|
+
# @option params [required, String] :application_id
|
721
|
+
#
|
722
|
+
# @return [Types::DeleteAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
723
|
+
#
|
724
|
+
# * {Types::DeleteAppResponse#application_response #application_response} => Types::ApplicationResponse
|
725
|
+
#
|
726
|
+
# @example Request syntax with placeholder values
|
727
|
+
#
|
728
|
+
# resp = client.delete_app({
|
729
|
+
# application_id: "__string", # required
|
730
|
+
# })
|
731
|
+
#
|
732
|
+
# @example Response structure
|
733
|
+
#
|
734
|
+
# resp.application_response.id #=> String
|
735
|
+
# resp.application_response.name #=> String
|
736
|
+
#
|
737
|
+
# @overload delete_app(params = {})
|
738
|
+
# @param [Hash] params ({})
|
739
|
+
def delete_app(params = {}, options = {})
|
740
|
+
req = build_request(:delete_app, params)
|
741
|
+
req.send_request(options)
|
742
|
+
end
|
743
|
+
|
673
744
|
# Deletes a campaign.
|
674
745
|
#
|
675
746
|
# @option params [required, String] :application_id
|
@@ -698,6 +769,7 @@ module Aws::Pinpoint
|
|
698
769
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.image_url #=> String
|
699
770
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.json_body #=> String
|
700
771
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.media_url #=> String
|
772
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.raw_content #=> String
|
701
773
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.silent_push #=> Boolean
|
702
774
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.title #=> String
|
703
775
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.url #=> String
|
@@ -708,10 +780,12 @@ module Aws::Pinpoint
|
|
708
780
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_url #=> String
|
709
781
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.json_body #=> String
|
710
782
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.media_url #=> String
|
783
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.raw_content #=> String
|
711
784
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.silent_push #=> Boolean
|
712
785
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.title #=> String
|
713
786
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.url #=> String
|
714
787
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.body #=> String
|
788
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.from_address #=> String
|
715
789
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.html_body #=> String
|
716
790
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.title #=> String
|
717
791
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -721,6 +795,7 @@ module Aws::Pinpoint
|
|
721
795
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.image_url #=> String
|
722
796
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.json_body #=> String
|
723
797
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.media_url #=> String
|
798
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.raw_content #=> String
|
724
799
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.silent_push #=> Boolean
|
725
800
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.title #=> String
|
726
801
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.url #=> String
|
@@ -755,6 +830,7 @@ module Aws::Pinpoint
|
|
755
830
|
# resp.campaign_response.message_configuration.apns_message.image_url #=> String
|
756
831
|
# resp.campaign_response.message_configuration.apns_message.json_body #=> String
|
757
832
|
# resp.campaign_response.message_configuration.apns_message.media_url #=> String
|
833
|
+
# resp.campaign_response.message_configuration.apns_message.raw_content #=> String
|
758
834
|
# resp.campaign_response.message_configuration.apns_message.silent_push #=> Boolean
|
759
835
|
# resp.campaign_response.message_configuration.apns_message.title #=> String
|
760
836
|
# resp.campaign_response.message_configuration.apns_message.url #=> String
|
@@ -765,10 +841,12 @@ module Aws::Pinpoint
|
|
765
841
|
# resp.campaign_response.message_configuration.default_message.image_url #=> String
|
766
842
|
# resp.campaign_response.message_configuration.default_message.json_body #=> String
|
767
843
|
# resp.campaign_response.message_configuration.default_message.media_url #=> String
|
844
|
+
# resp.campaign_response.message_configuration.default_message.raw_content #=> String
|
768
845
|
# resp.campaign_response.message_configuration.default_message.silent_push #=> Boolean
|
769
846
|
# resp.campaign_response.message_configuration.default_message.title #=> String
|
770
847
|
# resp.campaign_response.message_configuration.default_message.url #=> String
|
771
848
|
# resp.campaign_response.message_configuration.email_message.body #=> String
|
849
|
+
# resp.campaign_response.message_configuration.email_message.from_address #=> String
|
772
850
|
# resp.campaign_response.message_configuration.email_message.html_body #=> String
|
773
851
|
# resp.campaign_response.message_configuration.email_message.title #=> String
|
774
852
|
# resp.campaign_response.message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -778,6 +856,7 @@ module Aws::Pinpoint
|
|
778
856
|
# resp.campaign_response.message_configuration.gcm_message.image_url #=> String
|
779
857
|
# resp.campaign_response.message_configuration.gcm_message.json_body #=> String
|
780
858
|
# resp.campaign_response.message_configuration.gcm_message.media_url #=> String
|
859
|
+
# resp.campaign_response.message_configuration.gcm_message.raw_content #=> String
|
781
860
|
# resp.campaign_response.message_configuration.gcm_message.silent_push #=> Boolean
|
782
861
|
# resp.campaign_response.message_configuration.gcm_message.title #=> String
|
783
862
|
# resp.campaign_response.message_configuration.gcm_message.url #=> String
|
@@ -1080,6 +1159,32 @@ module Aws::Pinpoint
|
|
1080
1159
|
req.send_request(options)
|
1081
1160
|
end
|
1082
1161
|
|
1162
|
+
# Returns information about an app.
|
1163
|
+
#
|
1164
|
+
# @option params [required, String] :application_id
|
1165
|
+
#
|
1166
|
+
# @return [Types::GetAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1167
|
+
#
|
1168
|
+
# * {Types::GetAppResponse#application_response #application_response} => Types::ApplicationResponse
|
1169
|
+
#
|
1170
|
+
# @example Request syntax with placeholder values
|
1171
|
+
#
|
1172
|
+
# resp = client.get_app({
|
1173
|
+
# application_id: "__string", # required
|
1174
|
+
# })
|
1175
|
+
#
|
1176
|
+
# @example Response structure
|
1177
|
+
#
|
1178
|
+
# resp.application_response.id #=> String
|
1179
|
+
# resp.application_response.name #=> String
|
1180
|
+
#
|
1181
|
+
# @overload get_app(params = {})
|
1182
|
+
# @param [Hash] params ({})
|
1183
|
+
def get_app(params = {}, options = {})
|
1184
|
+
req = build_request(:get_app, params)
|
1185
|
+
req.send_request(options)
|
1186
|
+
end
|
1187
|
+
|
1083
1188
|
# Used to request the settings for an app.
|
1084
1189
|
#
|
1085
1190
|
# @option params [required, String] :application_id
|
@@ -1110,6 +1215,37 @@ module Aws::Pinpoint
|
|
1110
1215
|
req.send_request(options)
|
1111
1216
|
end
|
1112
1217
|
|
1218
|
+
# Returns information about your apps.
|
1219
|
+
#
|
1220
|
+
# @option params [String] :page_size
|
1221
|
+
#
|
1222
|
+
# @option params [String] :token
|
1223
|
+
#
|
1224
|
+
# @return [Types::GetAppsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1225
|
+
#
|
1226
|
+
# * {Types::GetAppsResponse#applications_response #applications_response} => Types::ApplicationsResponse
|
1227
|
+
#
|
1228
|
+
# @example Request syntax with placeholder values
|
1229
|
+
#
|
1230
|
+
# resp = client.get_apps({
|
1231
|
+
# page_size: "__string",
|
1232
|
+
# token: "__string",
|
1233
|
+
# })
|
1234
|
+
#
|
1235
|
+
# @example Response structure
|
1236
|
+
#
|
1237
|
+
# resp.applications_response.item #=> Array
|
1238
|
+
# resp.applications_response.item[0].id #=> String
|
1239
|
+
# resp.applications_response.item[0].name #=> String
|
1240
|
+
# resp.applications_response.next_token #=> String
|
1241
|
+
#
|
1242
|
+
# @overload get_apps(params = {})
|
1243
|
+
# @param [Hash] params ({})
|
1244
|
+
def get_apps(params = {}, options = {})
|
1245
|
+
req = build_request(:get_apps, params)
|
1246
|
+
req.send_request(options)
|
1247
|
+
end
|
1248
|
+
|
1113
1249
|
# Returns information about a campaign.
|
1114
1250
|
#
|
1115
1251
|
# @option params [required, String] :application_id
|
@@ -1138,6 +1274,7 @@ module Aws::Pinpoint
|
|
1138
1274
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.image_url #=> String
|
1139
1275
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.json_body #=> String
|
1140
1276
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.media_url #=> String
|
1277
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.raw_content #=> String
|
1141
1278
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.silent_push #=> Boolean
|
1142
1279
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.title #=> String
|
1143
1280
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.url #=> String
|
@@ -1148,10 +1285,12 @@ module Aws::Pinpoint
|
|
1148
1285
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_url #=> String
|
1149
1286
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.json_body #=> String
|
1150
1287
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.media_url #=> String
|
1288
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.raw_content #=> String
|
1151
1289
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.silent_push #=> Boolean
|
1152
1290
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.title #=> String
|
1153
1291
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.url #=> String
|
1154
1292
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.body #=> String
|
1293
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.from_address #=> String
|
1155
1294
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.html_body #=> String
|
1156
1295
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.title #=> String
|
1157
1296
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -1161,6 +1300,7 @@ module Aws::Pinpoint
|
|
1161
1300
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.image_url #=> String
|
1162
1301
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.json_body #=> String
|
1163
1302
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.media_url #=> String
|
1303
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.raw_content #=> String
|
1164
1304
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.silent_push #=> Boolean
|
1165
1305
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.title #=> String
|
1166
1306
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.url #=> String
|
@@ -1195,6 +1335,7 @@ module Aws::Pinpoint
|
|
1195
1335
|
# resp.campaign_response.message_configuration.apns_message.image_url #=> String
|
1196
1336
|
# resp.campaign_response.message_configuration.apns_message.json_body #=> String
|
1197
1337
|
# resp.campaign_response.message_configuration.apns_message.media_url #=> String
|
1338
|
+
# resp.campaign_response.message_configuration.apns_message.raw_content #=> String
|
1198
1339
|
# resp.campaign_response.message_configuration.apns_message.silent_push #=> Boolean
|
1199
1340
|
# resp.campaign_response.message_configuration.apns_message.title #=> String
|
1200
1341
|
# resp.campaign_response.message_configuration.apns_message.url #=> String
|
@@ -1205,10 +1346,12 @@ module Aws::Pinpoint
|
|
1205
1346
|
# resp.campaign_response.message_configuration.default_message.image_url #=> String
|
1206
1347
|
# resp.campaign_response.message_configuration.default_message.json_body #=> String
|
1207
1348
|
# resp.campaign_response.message_configuration.default_message.media_url #=> String
|
1349
|
+
# resp.campaign_response.message_configuration.default_message.raw_content #=> String
|
1208
1350
|
# resp.campaign_response.message_configuration.default_message.silent_push #=> Boolean
|
1209
1351
|
# resp.campaign_response.message_configuration.default_message.title #=> String
|
1210
1352
|
# resp.campaign_response.message_configuration.default_message.url #=> String
|
1211
1353
|
# resp.campaign_response.message_configuration.email_message.body #=> String
|
1354
|
+
# resp.campaign_response.message_configuration.email_message.from_address #=> String
|
1212
1355
|
# resp.campaign_response.message_configuration.email_message.html_body #=> String
|
1213
1356
|
# resp.campaign_response.message_configuration.email_message.title #=> String
|
1214
1357
|
# resp.campaign_response.message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -1218,6 +1361,7 @@ module Aws::Pinpoint
|
|
1218
1361
|
# resp.campaign_response.message_configuration.gcm_message.image_url #=> String
|
1219
1362
|
# resp.campaign_response.message_configuration.gcm_message.json_body #=> String
|
1220
1363
|
# resp.campaign_response.message_configuration.gcm_message.media_url #=> String
|
1364
|
+
# resp.campaign_response.message_configuration.gcm_message.raw_content #=> String
|
1221
1365
|
# resp.campaign_response.message_configuration.gcm_message.silent_push #=> Boolean
|
1222
1366
|
# resp.campaign_response.message_configuration.gcm_message.title #=> String
|
1223
1367
|
# resp.campaign_response.message_configuration.gcm_message.url #=> String
|
@@ -1324,6 +1468,7 @@ module Aws::Pinpoint
|
|
1324
1468
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.image_url #=> String
|
1325
1469
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.json_body #=> String
|
1326
1470
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.media_url #=> String
|
1471
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.raw_content #=> String
|
1327
1472
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.silent_push #=> Boolean
|
1328
1473
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.title #=> String
|
1329
1474
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.url #=> String
|
@@ -1334,10 +1479,12 @@ module Aws::Pinpoint
|
|
1334
1479
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_url #=> String
|
1335
1480
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.json_body #=> String
|
1336
1481
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.media_url #=> String
|
1482
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.raw_content #=> String
|
1337
1483
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.silent_push #=> Boolean
|
1338
1484
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.title #=> String
|
1339
1485
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.url #=> String
|
1340
1486
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.body #=> String
|
1487
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.from_address #=> String
|
1341
1488
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.html_body #=> String
|
1342
1489
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.title #=> String
|
1343
1490
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -1347,6 +1494,7 @@ module Aws::Pinpoint
|
|
1347
1494
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.image_url #=> String
|
1348
1495
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.json_body #=> String
|
1349
1496
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.media_url #=> String
|
1497
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.raw_content #=> String
|
1350
1498
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.silent_push #=> Boolean
|
1351
1499
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.title #=> String
|
1352
1500
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.url #=> String
|
@@ -1381,6 +1529,7 @@ module Aws::Pinpoint
|
|
1381
1529
|
# resp.campaign_response.message_configuration.apns_message.image_url #=> String
|
1382
1530
|
# resp.campaign_response.message_configuration.apns_message.json_body #=> String
|
1383
1531
|
# resp.campaign_response.message_configuration.apns_message.media_url #=> String
|
1532
|
+
# resp.campaign_response.message_configuration.apns_message.raw_content #=> String
|
1384
1533
|
# resp.campaign_response.message_configuration.apns_message.silent_push #=> Boolean
|
1385
1534
|
# resp.campaign_response.message_configuration.apns_message.title #=> String
|
1386
1535
|
# resp.campaign_response.message_configuration.apns_message.url #=> String
|
@@ -1391,10 +1540,12 @@ module Aws::Pinpoint
|
|
1391
1540
|
# resp.campaign_response.message_configuration.default_message.image_url #=> String
|
1392
1541
|
# resp.campaign_response.message_configuration.default_message.json_body #=> String
|
1393
1542
|
# resp.campaign_response.message_configuration.default_message.media_url #=> String
|
1543
|
+
# resp.campaign_response.message_configuration.default_message.raw_content #=> String
|
1394
1544
|
# resp.campaign_response.message_configuration.default_message.silent_push #=> Boolean
|
1395
1545
|
# resp.campaign_response.message_configuration.default_message.title #=> String
|
1396
1546
|
# resp.campaign_response.message_configuration.default_message.url #=> String
|
1397
1547
|
# resp.campaign_response.message_configuration.email_message.body #=> String
|
1548
|
+
# resp.campaign_response.message_configuration.email_message.from_address #=> String
|
1398
1549
|
# resp.campaign_response.message_configuration.email_message.html_body #=> String
|
1399
1550
|
# resp.campaign_response.message_configuration.email_message.title #=> String
|
1400
1551
|
# resp.campaign_response.message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -1404,6 +1555,7 @@ module Aws::Pinpoint
|
|
1404
1555
|
# resp.campaign_response.message_configuration.gcm_message.image_url #=> String
|
1405
1556
|
# resp.campaign_response.message_configuration.gcm_message.json_body #=> String
|
1406
1557
|
# resp.campaign_response.message_configuration.gcm_message.media_url #=> String
|
1558
|
+
# resp.campaign_response.message_configuration.gcm_message.raw_content #=> String
|
1407
1559
|
# resp.campaign_response.message_configuration.gcm_message.silent_push #=> Boolean
|
1408
1560
|
# resp.campaign_response.message_configuration.gcm_message.title #=> String
|
1409
1561
|
# resp.campaign_response.message_configuration.gcm_message.url #=> String
|
@@ -1467,6 +1619,7 @@ module Aws::Pinpoint
|
|
1467
1619
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.image_url #=> String
|
1468
1620
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.json_body #=> String
|
1469
1621
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.media_url #=> String
|
1622
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.raw_content #=> String
|
1470
1623
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.silent_push #=> Boolean
|
1471
1624
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.title #=> String
|
1472
1625
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.url #=> String
|
@@ -1477,10 +1630,12 @@ module Aws::Pinpoint
|
|
1477
1630
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.image_url #=> String
|
1478
1631
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.json_body #=> String
|
1479
1632
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.media_url #=> String
|
1633
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.raw_content #=> String
|
1480
1634
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.silent_push #=> Boolean
|
1481
1635
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.title #=> String
|
1482
1636
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.url #=> String
|
1483
1637
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.email_message.body #=> String
|
1638
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.email_message.from_address #=> String
|
1484
1639
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.email_message.html_body #=> String
|
1485
1640
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.email_message.title #=> String
|
1486
1641
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -1490,6 +1645,7 @@ module Aws::Pinpoint
|
|
1490
1645
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.image_url #=> String
|
1491
1646
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.json_body #=> String
|
1492
1647
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.media_url #=> String
|
1648
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.raw_content #=> String
|
1493
1649
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.silent_push #=> Boolean
|
1494
1650
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.title #=> String
|
1495
1651
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.url #=> String
|
@@ -1524,6 +1680,7 @@ module Aws::Pinpoint
|
|
1524
1680
|
# resp.campaigns_response.item[0].message_configuration.apns_message.image_url #=> String
|
1525
1681
|
# resp.campaigns_response.item[0].message_configuration.apns_message.json_body #=> String
|
1526
1682
|
# resp.campaigns_response.item[0].message_configuration.apns_message.media_url #=> String
|
1683
|
+
# resp.campaigns_response.item[0].message_configuration.apns_message.raw_content #=> String
|
1527
1684
|
# resp.campaigns_response.item[0].message_configuration.apns_message.silent_push #=> Boolean
|
1528
1685
|
# resp.campaigns_response.item[0].message_configuration.apns_message.title #=> String
|
1529
1686
|
# resp.campaigns_response.item[0].message_configuration.apns_message.url #=> String
|
@@ -1534,10 +1691,12 @@ module Aws::Pinpoint
|
|
1534
1691
|
# resp.campaigns_response.item[0].message_configuration.default_message.image_url #=> String
|
1535
1692
|
# resp.campaigns_response.item[0].message_configuration.default_message.json_body #=> String
|
1536
1693
|
# resp.campaigns_response.item[0].message_configuration.default_message.media_url #=> String
|
1694
|
+
# resp.campaigns_response.item[0].message_configuration.default_message.raw_content #=> String
|
1537
1695
|
# resp.campaigns_response.item[0].message_configuration.default_message.silent_push #=> Boolean
|
1538
1696
|
# resp.campaigns_response.item[0].message_configuration.default_message.title #=> String
|
1539
1697
|
# resp.campaigns_response.item[0].message_configuration.default_message.url #=> String
|
1540
1698
|
# resp.campaigns_response.item[0].message_configuration.email_message.body #=> String
|
1699
|
+
# resp.campaigns_response.item[0].message_configuration.email_message.from_address #=> String
|
1541
1700
|
# resp.campaigns_response.item[0].message_configuration.email_message.html_body #=> String
|
1542
1701
|
# resp.campaigns_response.item[0].message_configuration.email_message.title #=> String
|
1543
1702
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -1547,6 +1706,7 @@ module Aws::Pinpoint
|
|
1547
1706
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.image_url #=> String
|
1548
1707
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.json_body #=> String
|
1549
1708
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.media_url #=> String
|
1709
|
+
# resp.campaigns_response.item[0].message_configuration.gcm_message.raw_content #=> String
|
1550
1710
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.silent_push #=> Boolean
|
1551
1711
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.title #=> String
|
1552
1712
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.url #=> String
|
@@ -1608,6 +1768,7 @@ module Aws::Pinpoint
|
|
1608
1768
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.image_url #=> String
|
1609
1769
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.json_body #=> String
|
1610
1770
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.media_url #=> String
|
1771
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.raw_content #=> String
|
1611
1772
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.silent_push #=> Boolean
|
1612
1773
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.title #=> String
|
1613
1774
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.apns_message.url #=> String
|
@@ -1618,10 +1779,12 @@ module Aws::Pinpoint
|
|
1618
1779
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.image_url #=> String
|
1619
1780
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.json_body #=> String
|
1620
1781
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.media_url #=> String
|
1782
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.raw_content #=> String
|
1621
1783
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.silent_push #=> Boolean
|
1622
1784
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.title #=> String
|
1623
1785
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.default_message.url #=> String
|
1624
1786
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.email_message.body #=> String
|
1787
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.email_message.from_address #=> String
|
1625
1788
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.email_message.html_body #=> String
|
1626
1789
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.email_message.title #=> String
|
1627
1790
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -1631,6 +1794,7 @@ module Aws::Pinpoint
|
|
1631
1794
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.image_url #=> String
|
1632
1795
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.json_body #=> String
|
1633
1796
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.media_url #=> String
|
1797
|
+
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.raw_content #=> String
|
1634
1798
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.silent_push #=> Boolean
|
1635
1799
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.title #=> String
|
1636
1800
|
# resp.campaigns_response.item[0].additional_treatments[0].message_configuration.gcm_message.url #=> String
|
@@ -1665,6 +1829,7 @@ module Aws::Pinpoint
|
|
1665
1829
|
# resp.campaigns_response.item[0].message_configuration.apns_message.image_url #=> String
|
1666
1830
|
# resp.campaigns_response.item[0].message_configuration.apns_message.json_body #=> String
|
1667
1831
|
# resp.campaigns_response.item[0].message_configuration.apns_message.media_url #=> String
|
1832
|
+
# resp.campaigns_response.item[0].message_configuration.apns_message.raw_content #=> String
|
1668
1833
|
# resp.campaigns_response.item[0].message_configuration.apns_message.silent_push #=> Boolean
|
1669
1834
|
# resp.campaigns_response.item[0].message_configuration.apns_message.title #=> String
|
1670
1835
|
# resp.campaigns_response.item[0].message_configuration.apns_message.url #=> String
|
@@ -1675,10 +1840,12 @@ module Aws::Pinpoint
|
|
1675
1840
|
# resp.campaigns_response.item[0].message_configuration.default_message.image_url #=> String
|
1676
1841
|
# resp.campaigns_response.item[0].message_configuration.default_message.json_body #=> String
|
1677
1842
|
# resp.campaigns_response.item[0].message_configuration.default_message.media_url #=> String
|
1843
|
+
# resp.campaigns_response.item[0].message_configuration.default_message.raw_content #=> String
|
1678
1844
|
# resp.campaigns_response.item[0].message_configuration.default_message.silent_push #=> Boolean
|
1679
1845
|
# resp.campaigns_response.item[0].message_configuration.default_message.title #=> String
|
1680
1846
|
# resp.campaigns_response.item[0].message_configuration.default_message.url #=> String
|
1681
1847
|
# resp.campaigns_response.item[0].message_configuration.email_message.body #=> String
|
1848
|
+
# resp.campaigns_response.item[0].message_configuration.email_message.from_address #=> String
|
1682
1849
|
# resp.campaigns_response.item[0].message_configuration.email_message.html_body #=> String
|
1683
1850
|
# resp.campaigns_response.item[0].message_configuration.email_message.title #=> String
|
1684
1851
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -1688,6 +1855,7 @@ module Aws::Pinpoint
|
|
1688
1855
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.image_url #=> String
|
1689
1856
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.json_body #=> String
|
1690
1857
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.media_url #=> String
|
1858
|
+
# resp.campaigns_response.item[0].message_configuration.gcm_message.raw_content #=> String
|
1691
1859
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.silent_push #=> Boolean
|
1692
1860
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.title #=> String
|
1693
1861
|
# resp.campaigns_response.item[0].message_configuration.gcm_message.url #=> String
|
@@ -2690,6 +2858,7 @@ module Aws::Pinpoint
|
|
2690
2858
|
# image_url: "__string",
|
2691
2859
|
# json_body: "__string",
|
2692
2860
|
# media_url: "__string",
|
2861
|
+
# raw_content: "__string",
|
2693
2862
|
# silent_push: false,
|
2694
2863
|
# title: "__string",
|
2695
2864
|
# url: "__string",
|
@@ -2702,12 +2871,14 @@ module Aws::Pinpoint
|
|
2702
2871
|
# image_url: "__string",
|
2703
2872
|
# json_body: "__string",
|
2704
2873
|
# media_url: "__string",
|
2874
|
+
# raw_content: "__string",
|
2705
2875
|
# silent_push: false,
|
2706
2876
|
# title: "__string",
|
2707
2877
|
# url: "__string",
|
2708
2878
|
# },
|
2709
2879
|
# email_message: {
|
2710
2880
|
# body: "__string",
|
2881
|
+
# from_address: "__string",
|
2711
2882
|
# html_body: "__string",
|
2712
2883
|
# title: "__string",
|
2713
2884
|
# },
|
@@ -2719,6 +2890,7 @@ module Aws::Pinpoint
|
|
2719
2890
|
# image_url: "__string",
|
2720
2891
|
# json_body: "__string",
|
2721
2892
|
# media_url: "__string",
|
2893
|
+
# raw_content: "__string",
|
2722
2894
|
# silent_push: false,
|
2723
2895
|
# title: "__string",
|
2724
2896
|
# url: "__string",
|
@@ -2761,6 +2933,7 @@ module Aws::Pinpoint
|
|
2761
2933
|
# image_url: "__string",
|
2762
2934
|
# json_body: "__string",
|
2763
2935
|
# media_url: "__string",
|
2936
|
+
# raw_content: "__string",
|
2764
2937
|
# silent_push: false,
|
2765
2938
|
# title: "__string",
|
2766
2939
|
# url: "__string",
|
@@ -2773,12 +2946,14 @@ module Aws::Pinpoint
|
|
2773
2946
|
# image_url: "__string",
|
2774
2947
|
# json_body: "__string",
|
2775
2948
|
# media_url: "__string",
|
2949
|
+
# raw_content: "__string",
|
2776
2950
|
# silent_push: false,
|
2777
2951
|
# title: "__string",
|
2778
2952
|
# url: "__string",
|
2779
2953
|
# },
|
2780
2954
|
# email_message: {
|
2781
2955
|
# body: "__string",
|
2956
|
+
# from_address: "__string",
|
2782
2957
|
# html_body: "__string",
|
2783
2958
|
# title: "__string",
|
2784
2959
|
# },
|
@@ -2790,6 +2965,7 @@ module Aws::Pinpoint
|
|
2790
2965
|
# image_url: "__string",
|
2791
2966
|
# json_body: "__string",
|
2792
2967
|
# media_url: "__string",
|
2968
|
+
# raw_content: "__string",
|
2793
2969
|
# silent_push: false,
|
2794
2970
|
# title: "__string",
|
2795
2971
|
# url: "__string",
|
@@ -2830,6 +3006,7 @@ module Aws::Pinpoint
|
|
2830
3006
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.image_url #=> String
|
2831
3007
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.json_body #=> String
|
2832
3008
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.media_url #=> String
|
3009
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.raw_content #=> String
|
2833
3010
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.silent_push #=> Boolean
|
2834
3011
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.title #=> String
|
2835
3012
|
# resp.campaign_response.additional_treatments[0].message_configuration.apns_message.url #=> String
|
@@ -2840,10 +3017,12 @@ module Aws::Pinpoint
|
|
2840
3017
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.image_url #=> String
|
2841
3018
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.json_body #=> String
|
2842
3019
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.media_url #=> String
|
3020
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.raw_content #=> String
|
2843
3021
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.silent_push #=> Boolean
|
2844
3022
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.title #=> String
|
2845
3023
|
# resp.campaign_response.additional_treatments[0].message_configuration.default_message.url #=> String
|
2846
3024
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.body #=> String
|
3025
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.from_address #=> String
|
2847
3026
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.html_body #=> String
|
2848
3027
|
# resp.campaign_response.additional_treatments[0].message_configuration.email_message.title #=> String
|
2849
3028
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -2853,6 +3032,7 @@ module Aws::Pinpoint
|
|
2853
3032
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.image_url #=> String
|
2854
3033
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.json_body #=> String
|
2855
3034
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.media_url #=> String
|
3035
|
+
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.raw_content #=> String
|
2856
3036
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.silent_push #=> Boolean
|
2857
3037
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.title #=> String
|
2858
3038
|
# resp.campaign_response.additional_treatments[0].message_configuration.gcm_message.url #=> String
|
@@ -2887,6 +3067,7 @@ module Aws::Pinpoint
|
|
2887
3067
|
# resp.campaign_response.message_configuration.apns_message.image_url #=> String
|
2888
3068
|
# resp.campaign_response.message_configuration.apns_message.json_body #=> String
|
2889
3069
|
# resp.campaign_response.message_configuration.apns_message.media_url #=> String
|
3070
|
+
# resp.campaign_response.message_configuration.apns_message.raw_content #=> String
|
2890
3071
|
# resp.campaign_response.message_configuration.apns_message.silent_push #=> Boolean
|
2891
3072
|
# resp.campaign_response.message_configuration.apns_message.title #=> String
|
2892
3073
|
# resp.campaign_response.message_configuration.apns_message.url #=> String
|
@@ -2897,10 +3078,12 @@ module Aws::Pinpoint
|
|
2897
3078
|
# resp.campaign_response.message_configuration.default_message.image_url #=> String
|
2898
3079
|
# resp.campaign_response.message_configuration.default_message.json_body #=> String
|
2899
3080
|
# resp.campaign_response.message_configuration.default_message.media_url #=> String
|
3081
|
+
# resp.campaign_response.message_configuration.default_message.raw_content #=> String
|
2900
3082
|
# resp.campaign_response.message_configuration.default_message.silent_push #=> Boolean
|
2901
3083
|
# resp.campaign_response.message_configuration.default_message.title #=> String
|
2902
3084
|
# resp.campaign_response.message_configuration.default_message.url #=> String
|
2903
3085
|
# resp.campaign_response.message_configuration.email_message.body #=> String
|
3086
|
+
# resp.campaign_response.message_configuration.email_message.from_address #=> String
|
2904
3087
|
# resp.campaign_response.message_configuration.email_message.html_body #=> String
|
2905
3088
|
# resp.campaign_response.message_configuration.email_message.title #=> String
|
2906
3089
|
# resp.campaign_response.message_configuration.gcm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
|
@@ -2910,6 +3093,7 @@ module Aws::Pinpoint
|
|
2910
3093
|
# resp.campaign_response.message_configuration.gcm_message.image_url #=> String
|
2911
3094
|
# resp.campaign_response.message_configuration.gcm_message.json_body #=> String
|
2912
3095
|
# resp.campaign_response.message_configuration.gcm_message.media_url #=> String
|
3096
|
+
# resp.campaign_response.message_configuration.gcm_message.raw_content #=> String
|
2913
3097
|
# resp.campaign_response.message_configuration.gcm_message.silent_push #=> Boolean
|
2914
3098
|
# resp.campaign_response.message_configuration.gcm_message.title #=> String
|
2915
3099
|
# resp.campaign_response.message_configuration.gcm_message.url #=> String
|
@@ -3351,7 +3535,7 @@ module Aws::Pinpoint
|
|
3351
3535
|
params: params,
|
3352
3536
|
config: config)
|
3353
3537
|
context[:gem_name] = 'aws-sdk-pinpoint'
|
3354
|
-
context[:gem_version] = '1.0.0.
|
3538
|
+
context[:gem_version] = '1.0.0.rc11'
|
3355
3539
|
Seahorse::Client::Request.new(handlers, context)
|
3356
3540
|
end
|
3357
3541
|
|