aws-sdk-pinpoint 1.40.0 → 1.45.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8cb8e4aee8ac2338f70c5cc0374ec5074cce60b7dbff3fa8e95fdec83a944a45
4
- data.tar.gz: 85a346dd6d818a880195a5da5d1d644909d67ea59964e9d23f8b69023b6333b3
3
+ metadata.gz: 3f7e1d6032f47e4850d95eb29304736211d03b52f898a6a08ceb0dc8dd1aec35
4
+ data.tar.gz: c59d971b645445219f372085982a6ab91c749dd6b70c279e9d5865654106ea8b
5
5
  SHA512:
6
- metadata.gz: e1d9e3372693fa62e776493f879b4053200b2ac98ad636aa9b559e90f9a10aa26fcc60a0caf335e02f8a913a8fa443ed4aab1af906faeeb057301450056a06e5
7
- data.tar.gz: afd5ab8d7193b1f1e6f4a1fd27d33c2973c8f63d08a7beaced42d913e9253ec8e1336d82794af07f96ce216723b88db7dfe039c57d7361c5b1757e0b294bc443
6
+ metadata.gz: 3fb5552854e5dd881c0ca1b1671bb5787ae9f89b17a9154f41ef8250f14f97b36f41618779f7ec66bfedb6a1dfe4a7a1f56ddaabc9875b202e748b2adbe832d5
7
+ data.tar.gz: 3a7952b5d3361cb0fb1f6099acc45150f6c94d9f4045fc8ff002f5c4fa037b6e654da5d3bb9840ff8dc5bf0f4000db75c295719c5d5668cb282016562619a1c6
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-pinpoint/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::Pinpoint
47
49
 
48
- GEM_VERSION = '1.40.0'
50
+ GEM_VERSION = '1.45.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::Pinpoint
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::Pinpoint
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::Pinpoint
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::Pinpoint
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -367,7 +386,7 @@ module Aws::Pinpoint
367
386
  # {
368
387
  # custom_delivery_configuration: {
369
388
  # delivery_uri: "__string", # required
370
- # endpoint_types: ["GCM"], # accepts GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
389
+ # endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
371
390
  # },
372
391
  # message_configuration: {
373
392
  # adm_message: {
@@ -512,7 +531,7 @@ module Aws::Pinpoint
512
531
  # ],
513
532
  # custom_delivery_configuration: {
514
533
  # delivery_uri: "__string", # required
515
- # endpoint_types: ["GCM"], # accepts GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
534
+ # endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
516
535
  # },
517
536
  # description: "__string",
518
537
  # holdout_percent: 1,
@@ -680,7 +699,7 @@ module Aws::Pinpoint
680
699
  # resp.campaign_response.additional_treatments #=> Array
681
700
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
682
701
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
683
- # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
702
+ # 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"
684
703
  # resp.campaign_response.additional_treatments[0].id #=> String
685
704
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
686
705
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
@@ -785,7 +804,7 @@ module Aws::Pinpoint
785
804
  # resp.campaign_response.creation_date #=> String
786
805
  # resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
787
806
  # resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
788
- # resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
807
+ # 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"
789
808
  # resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
790
809
  # resp.campaign_response.description #=> String
791
810
  # resp.campaign_response.holdout_percent #=> Integer
@@ -1089,6 +1108,16 @@ module Aws::Pinpoint
1089
1108
  # write_journey_request: { # required
1090
1109
  # activities: {
1091
1110
  # "__string" => {
1111
+ # custom: {
1112
+ # delivery_uri: "__string",
1113
+ # endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
1114
+ # message_config: {
1115
+ # data: "__string",
1116
+ # },
1117
+ # next_activity: "__string",
1118
+ # template_name: "__string",
1119
+ # template_version: "__string",
1120
+ # },
1092
1121
  # conditional_split: {
1093
1122
  # condition: {
1094
1123
  # conditions: [
@@ -1309,6 +1338,14 @@ module Aws::Pinpoint
1309
1338
  # wait_until: "__string",
1310
1339
  # },
1311
1340
  # },
1341
+ # push: {
1342
+ # message_config: {
1343
+ # time_to_live: "__string",
1344
+ # },
1345
+ # next_activity: "__string",
1346
+ # template_name: "__string",
1347
+ # template_version: "__string",
1348
+ # },
1312
1349
  # random_split: {
1313
1350
  # branches: [
1314
1351
  # {
@@ -1317,6 +1354,15 @@ module Aws::Pinpoint
1317
1354
  # },
1318
1355
  # ],
1319
1356
  # },
1357
+ # sms: {
1358
+ # message_config: {
1359
+ # message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
1360
+ # sender_id: "__string",
1361
+ # },
1362
+ # next_activity: "__string",
1363
+ # template_name: "__string",
1364
+ # template_version: "__string",
1365
+ # },
1320
1366
  # wait: {
1321
1367
  # next_activity: "__string",
1322
1368
  # wait_time: {
@@ -1359,6 +1405,13 @@ module Aws::Pinpoint
1359
1405
  # @example Response structure
1360
1406
  #
1361
1407
  # resp.journey_response.activities #=> Hash
1408
+ # resp.journey_response.activities["__string"].custom.delivery_uri #=> String
1409
+ # resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
1410
+ # 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"
1411
+ # resp.journey_response.activities["__string"].custom.message_config.data #=> String
1412
+ # resp.journey_response.activities["__string"].custom.next_activity #=> String
1413
+ # resp.journey_response.activities["__string"].custom.template_name #=> String
1414
+ # resp.journey_response.activities["__string"].custom.template_version #=> String
1362
1415
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
1363
1416
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
1364
1417
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
@@ -1475,9 +1528,18 @@ module Aws::Pinpoint
1475
1528
  # resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
1476
1529
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
1477
1530
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
1531
+ # resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
1532
+ # resp.journey_response.activities["__string"].push.next_activity #=> String
1533
+ # resp.journey_response.activities["__string"].push.template_name #=> String
1534
+ # resp.journey_response.activities["__string"].push.template_version #=> String
1478
1535
  # resp.journey_response.activities["__string"].random_split.branches #=> Array
1479
1536
  # resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
1480
1537
  # resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
1538
+ # resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
1539
+ # resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
1540
+ # resp.journey_response.activities["__string"].sms.next_activity #=> String
1541
+ # resp.journey_response.activities["__string"].sms.template_name #=> String
1542
+ # resp.journey_response.activities["__string"].sms.template_version #=> String
1481
1543
  # resp.journey_response.activities["__string"].wait.next_activity #=> String
1482
1544
  # resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
1483
1545
  # resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
@@ -2312,7 +2374,7 @@ module Aws::Pinpoint
2312
2374
  # resp.campaign_response.additional_treatments #=> Array
2313
2375
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
2314
2376
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
2315
- # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
2377
+ # 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"
2316
2378
  # resp.campaign_response.additional_treatments[0].id #=> String
2317
2379
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2318
2380
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
@@ -2417,7 +2479,7 @@ module Aws::Pinpoint
2417
2479
  # resp.campaign_response.creation_date #=> String
2418
2480
  # resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
2419
2481
  # resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
2420
- # resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
2482
+ # 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"
2421
2483
  # resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
2422
2484
  # resp.campaign_response.description #=> String
2423
2485
  # resp.campaign_response.holdout_percent #=> Integer
@@ -2642,7 +2704,7 @@ module Aws::Pinpoint
2642
2704
  # resp.endpoint_response.attributes #=> Hash
2643
2705
  # resp.endpoint_response.attributes["__string"] #=> Array
2644
2706
  # resp.endpoint_response.attributes["__string"][0] #=> String
2645
- # resp.endpoint_response.channel_type #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
2707
+ # resp.endpoint_response.channel_type #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
2646
2708
  # resp.endpoint_response.cohort_id #=> String
2647
2709
  # resp.endpoint_response.creation_date #=> String
2648
2710
  # resp.endpoint_response.demographic.app_version #=> String
@@ -2770,6 +2832,13 @@ module Aws::Pinpoint
2770
2832
  # @example Response structure
2771
2833
  #
2772
2834
  # resp.journey_response.activities #=> Hash
2835
+ # resp.journey_response.activities["__string"].custom.delivery_uri #=> String
2836
+ # resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
2837
+ # 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"
2838
+ # resp.journey_response.activities["__string"].custom.message_config.data #=> String
2839
+ # resp.journey_response.activities["__string"].custom.next_activity #=> String
2840
+ # resp.journey_response.activities["__string"].custom.template_name #=> String
2841
+ # resp.journey_response.activities["__string"].custom.template_version #=> String
2773
2842
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
2774
2843
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
2775
2844
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
@@ -2886,9 +2955,18 @@ module Aws::Pinpoint
2886
2955
  # resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
2887
2956
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
2888
2957
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
2958
+ # resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
2959
+ # resp.journey_response.activities["__string"].push.next_activity #=> String
2960
+ # resp.journey_response.activities["__string"].push.template_name #=> String
2961
+ # resp.journey_response.activities["__string"].push.template_version #=> String
2889
2962
  # resp.journey_response.activities["__string"].random_split.branches #=> Array
2890
2963
  # resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
2891
2964
  # resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
2965
+ # resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
2966
+ # resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
2967
+ # resp.journey_response.activities["__string"].sms.next_activity #=> String
2968
+ # resp.journey_response.activities["__string"].sms.template_name #=> String
2969
+ # resp.journey_response.activities["__string"].sms.template_version #=> String
2892
2970
  # resp.journey_response.activities["__string"].wait.next_activity #=> String
2893
2971
  # resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
2894
2972
  # resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
@@ -3220,7 +3298,7 @@ module Aws::Pinpoint
3220
3298
  # resp.endpoints_response.item[0].attributes #=> Hash
3221
3299
  # resp.endpoints_response.item[0].attributes["__string"] #=> Array
3222
3300
  # resp.endpoints_response.item[0].attributes["__string"][0] #=> String
3223
- # 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"
3301
+ # 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"
3224
3302
  # resp.endpoints_response.item[0].cohort_id #=> String
3225
3303
  # resp.endpoints_response.item[0].creation_date #=> String
3226
3304
  # resp.endpoints_response.item[0].demographic.app_version #=> String
@@ -3742,7 +3820,7 @@ module Aws::Pinpoint
3742
3820
  # resp.campaign_response.additional_treatments #=> Array
3743
3821
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
3744
3822
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
3745
- # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
3823
+ # 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"
3746
3824
  # resp.campaign_response.additional_treatments[0].id #=> String
3747
3825
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
3748
3826
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
@@ -3847,7 +3925,7 @@ module Aws::Pinpoint
3847
3925
  # resp.campaign_response.creation_date #=> String
3848
3926
  # resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
3849
3927
  # resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
3850
- # resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
3928
+ # 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"
3851
3929
  # resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
3852
3930
  # resp.campaign_response.description #=> String
3853
3931
  # resp.campaign_response.holdout_percent #=> Integer
@@ -4110,7 +4188,7 @@ module Aws::Pinpoint
4110
4188
  # resp.campaign_response.additional_treatments #=> Array
4111
4189
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
4112
4190
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
4113
- # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
4191
+ # 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"
4114
4192
  # resp.campaign_response.additional_treatments[0].id #=> String
4115
4193
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
4116
4194
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
@@ -4215,7 +4293,7 @@ module Aws::Pinpoint
4215
4293
  # resp.campaign_response.creation_date #=> String
4216
4294
  # resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
4217
4295
  # resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
4218
- # resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
4296
+ # 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"
4219
4297
  # resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
4220
4298
  # resp.campaign_response.description #=> String
4221
4299
  # resp.campaign_response.holdout_percent #=> Integer
@@ -4372,7 +4450,7 @@ module Aws::Pinpoint
4372
4450
  # resp.campaigns_response.item[0].additional_treatments #=> Array
4373
4451
  # resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
4374
4452
  # resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
4375
- # resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
4453
+ # 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"
4376
4454
  # resp.campaigns_response.item[0].additional_treatments[0].id #=> String
4377
4455
  # resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
4378
4456
  # resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.body #=> String
@@ -4477,7 +4555,7 @@ module Aws::Pinpoint
4477
4555
  # resp.campaigns_response.item[0].creation_date #=> String
4478
4556
  # resp.campaigns_response.item[0].custom_delivery_configuration.delivery_uri #=> String
4479
4557
  # resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types #=> Array
4480
- # resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
4558
+ # 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"
4481
4559
  # resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
4482
4560
  # resp.campaigns_response.item[0].description #=> String
4483
4561
  # resp.campaigns_response.item[0].holdout_percent #=> Integer
@@ -4633,7 +4711,7 @@ module Aws::Pinpoint
4633
4711
  # resp.campaigns_response.item[0].additional_treatments #=> Array
4634
4712
  # resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
4635
4713
  # resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
4636
- # resp.campaigns_response.item[0].additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
4714
+ # 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"
4637
4715
  # resp.campaigns_response.item[0].additional_treatments[0].id #=> String
4638
4716
  # resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
4639
4717
  # resp.campaigns_response.item[0].additional_treatments[0].message_configuration.adm_message.body #=> String
@@ -4738,7 +4816,7 @@ module Aws::Pinpoint
4738
4816
  # resp.campaigns_response.item[0].creation_date #=> String
4739
4817
  # resp.campaigns_response.item[0].custom_delivery_configuration.delivery_uri #=> String
4740
4818
  # resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types #=> Array
4741
- # resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
4819
+ # 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"
4742
4820
  # resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
4743
4821
  # resp.campaigns_response.item[0].description #=> String
4744
4822
  # resp.campaigns_response.item[0].holdout_percent #=> Integer
@@ -5014,7 +5092,7 @@ module Aws::Pinpoint
5014
5092
  # resp.endpoint_response.attributes #=> Hash
5015
5093
  # resp.endpoint_response.attributes["__string"] #=> Array
5016
5094
  # resp.endpoint_response.attributes["__string"][0] #=> String
5017
- # resp.endpoint_response.channel_type #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
5095
+ # resp.endpoint_response.channel_type #=> String, one of "PUSH", "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
5018
5096
  # resp.endpoint_response.cohort_id #=> String
5019
5097
  # resp.endpoint_response.creation_date #=> String
5020
5098
  # resp.endpoint_response.demographic.app_version #=> String
@@ -5350,6 +5428,13 @@ module Aws::Pinpoint
5350
5428
  # @example Response structure
5351
5429
  #
5352
5430
  # resp.journey_response.activities #=> Hash
5431
+ # resp.journey_response.activities["__string"].custom.delivery_uri #=> String
5432
+ # resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
5433
+ # 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"
5434
+ # resp.journey_response.activities["__string"].custom.message_config.data #=> String
5435
+ # resp.journey_response.activities["__string"].custom.next_activity #=> String
5436
+ # resp.journey_response.activities["__string"].custom.template_name #=> String
5437
+ # resp.journey_response.activities["__string"].custom.template_version #=> String
5353
5438
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
5354
5439
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
5355
5440
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
@@ -5466,9 +5551,18 @@ module Aws::Pinpoint
5466
5551
  # resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
5467
5552
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
5468
5553
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
5554
+ # resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
5555
+ # resp.journey_response.activities["__string"].push.next_activity #=> String
5556
+ # resp.journey_response.activities["__string"].push.template_name #=> String
5557
+ # resp.journey_response.activities["__string"].push.template_version #=> String
5469
5558
  # resp.journey_response.activities["__string"].random_split.branches #=> Array
5470
5559
  # resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
5471
5560
  # resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
5561
+ # resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
5562
+ # resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
5563
+ # resp.journey_response.activities["__string"].sms.next_activity #=> String
5564
+ # resp.journey_response.activities["__string"].sms.template_name #=> String
5565
+ # resp.journey_response.activities["__string"].sms.template_version #=> String
5472
5566
  # resp.journey_response.activities["__string"].wait.next_activity #=> String
5473
5567
  # resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
5474
5568
  # resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
@@ -6573,7 +6667,7 @@ module Aws::Pinpoint
6573
6667
  # resp.endpoints_response.item[0].attributes #=> Hash
6574
6668
  # resp.endpoints_response.item[0].attributes["__string"] #=> Array
6575
6669
  # resp.endpoints_response.item[0].attributes["__string"][0] #=> String
6576
- # 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"
6670
+ # 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"
6577
6671
  # resp.endpoints_response.item[0].cohort_id #=> String
6578
6672
  # resp.endpoints_response.item[0].creation_date #=> String
6579
6673
  # resp.endpoints_response.item[0].demographic.app_version #=> String
@@ -6716,6 +6810,13 @@ module Aws::Pinpoint
6716
6810
  #
6717
6811
  # resp.journeys_response.item #=> Array
6718
6812
  # resp.journeys_response.item[0].activities #=> Hash
6813
+ # resp.journeys_response.item[0].activities["__string"].custom.delivery_uri #=> String
6814
+ # resp.journeys_response.item[0].activities["__string"].custom.endpoint_types #=> Array
6815
+ # 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"
6816
+ # resp.journeys_response.item[0].activities["__string"].custom.message_config.data #=> String
6817
+ # resp.journeys_response.item[0].activities["__string"].custom.next_activity #=> String
6818
+ # resp.journeys_response.item[0].activities["__string"].custom.template_name #=> String
6819
+ # resp.journeys_response.item[0].activities["__string"].custom.template_version #=> String
6719
6820
  # resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions #=> Array
6720
6821
  # resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
6721
6822
  # resp.journeys_response.item[0].activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
@@ -6832,9 +6933,18 @@ module Aws::Pinpoint
6832
6933
  # resp.journeys_response.item[0].activities["__string"].multi_condition.default_activity #=> String
6833
6934
  # resp.journeys_response.item[0].activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
6834
6935
  # resp.journeys_response.item[0].activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
6936
+ # resp.journeys_response.item[0].activities["__string"].push.message_config.time_to_live #=> String
6937
+ # resp.journeys_response.item[0].activities["__string"].push.next_activity #=> String
6938
+ # resp.journeys_response.item[0].activities["__string"].push.template_name #=> String
6939
+ # resp.journeys_response.item[0].activities["__string"].push.template_version #=> String
6835
6940
  # resp.journeys_response.item[0].activities["__string"].random_split.branches #=> Array
6836
6941
  # resp.journeys_response.item[0].activities["__string"].random_split.branches[0].next_activity #=> String
6837
6942
  # resp.journeys_response.item[0].activities["__string"].random_split.branches[0].percentage #=> Integer
6943
+ # resp.journeys_response.item[0].activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
6944
+ # resp.journeys_response.item[0].activities["__string"].sms.message_config.sender_id #=> String
6945
+ # resp.journeys_response.item[0].activities["__string"].sms.next_activity #=> String
6946
+ # resp.journeys_response.item[0].activities["__string"].sms.template_name #=> String
6947
+ # resp.journeys_response.item[0].activities["__string"].sms.template_version #=> String
6838
6948
  # resp.journeys_response.item[0].activities["__string"].wait.next_activity #=> String
6839
6949
  # resp.journeys_response.item[0].activities["__string"].wait.wait_time.wait_for #=> String
6840
6950
  # resp.journeys_response.item[0].activities["__string"].wait.wait_time.wait_until #=> String
@@ -7104,7 +7214,7 @@ module Aws::Pinpoint
7104
7214
  # attributes: {
7105
7215
  # "__string" => ["__string"],
7106
7216
  # },
7107
- # channel_type: "GCM", # accepts GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
7217
+ # channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
7108
7218
  # demographic: {
7109
7219
  # app_version: "__string",
7110
7220
  # locale: "__string",
@@ -7243,7 +7353,7 @@ module Aws::Pinpoint
7243
7353
  # addresses: {
7244
7354
  # "__string" => {
7245
7355
  # body_override: "__string",
7246
- # channel_type: "GCM", # accepts GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
7356
+ # channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
7247
7357
  # context: {
7248
7358
  # "__string" => "__string",
7249
7359
  # },
@@ -8151,7 +8261,7 @@ module Aws::Pinpoint
8151
8261
  # {
8152
8262
  # custom_delivery_configuration: {
8153
8263
  # delivery_uri: "__string", # required
8154
- # endpoint_types: ["GCM"], # accepts GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
8264
+ # endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
8155
8265
  # },
8156
8266
  # message_configuration: {
8157
8267
  # adm_message: {
@@ -8296,7 +8406,7 @@ module Aws::Pinpoint
8296
8406
  # ],
8297
8407
  # custom_delivery_configuration: {
8298
8408
  # delivery_uri: "__string", # required
8299
- # endpoint_types: ["GCM"], # accepts GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
8409
+ # endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
8300
8410
  # },
8301
8411
  # description: "__string",
8302
8412
  # holdout_percent: 1,
@@ -8464,7 +8574,7 @@ module Aws::Pinpoint
8464
8574
  # resp.campaign_response.additional_treatments #=> Array
8465
8575
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.delivery_uri #=> String
8466
8576
  # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types #=> Array
8467
- # resp.campaign_response.additional_treatments[0].custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
8577
+ # 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"
8468
8578
  # resp.campaign_response.additional_treatments[0].id #=> String
8469
8579
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8470
8580
  # resp.campaign_response.additional_treatments[0].message_configuration.adm_message.body #=> String
@@ -8569,7 +8679,7 @@ module Aws::Pinpoint
8569
8679
  # resp.campaign_response.creation_date #=> String
8570
8680
  # resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
8571
8681
  # resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
8572
- # resp.campaign_response.custom_delivery_configuration.endpoint_types[0] #=> String, one of "GCM", "APNS", "APNS_SANDBOX", "APNS_VOIP", "APNS_VOIP_SANDBOX", "ADM", "SMS", "VOICE", "EMAIL", "BAIDU", "CUSTOM"
8682
+ # 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"
8573
8683
  # resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
8574
8684
  # resp.campaign_response.description #=> String
8575
8685
  # resp.campaign_response.holdout_percent #=> Integer
@@ -8827,7 +8937,7 @@ module Aws::Pinpoint
8827
8937
  # attributes: {
8828
8938
  # "__string" => ["__string"],
8829
8939
  # },
8830
- # channel_type: "GCM", # accepts GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
8940
+ # channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
8831
8941
  # demographic: {
8832
8942
  # app_version: "__string",
8833
8943
  # locale: "__string",
@@ -8904,7 +9014,7 @@ module Aws::Pinpoint
8904
9014
  # attributes: {
8905
9015
  # "__string" => ["__string"],
8906
9016
  # },
8907
- # channel_type: "GCM", # accepts GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
9017
+ # channel_type: "PUSH", # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
8908
9018
  # demographic: {
8909
9019
  # app_version: "__string",
8910
9020
  # locale: "__string",
@@ -9025,6 +9135,16 @@ module Aws::Pinpoint
9025
9135
  # write_journey_request: { # required
9026
9136
  # activities: {
9027
9137
  # "__string" => {
9138
+ # custom: {
9139
+ # delivery_uri: "__string",
9140
+ # endpoint_types: ["PUSH"], # accepts PUSH, GCM, APNS, APNS_SANDBOX, APNS_VOIP, APNS_VOIP_SANDBOX, ADM, SMS, VOICE, EMAIL, BAIDU, CUSTOM
9141
+ # message_config: {
9142
+ # data: "__string",
9143
+ # },
9144
+ # next_activity: "__string",
9145
+ # template_name: "__string",
9146
+ # template_version: "__string",
9147
+ # },
9028
9148
  # conditional_split: {
9029
9149
  # condition: {
9030
9150
  # conditions: [
@@ -9245,6 +9365,14 @@ module Aws::Pinpoint
9245
9365
  # wait_until: "__string",
9246
9366
  # },
9247
9367
  # },
9368
+ # push: {
9369
+ # message_config: {
9370
+ # time_to_live: "__string",
9371
+ # },
9372
+ # next_activity: "__string",
9373
+ # template_name: "__string",
9374
+ # template_version: "__string",
9375
+ # },
9248
9376
  # random_split: {
9249
9377
  # branches: [
9250
9378
  # {
@@ -9253,6 +9381,15 @@ module Aws::Pinpoint
9253
9381
  # },
9254
9382
  # ],
9255
9383
  # },
9384
+ # sms: {
9385
+ # message_config: {
9386
+ # message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
9387
+ # sender_id: "__string",
9388
+ # },
9389
+ # next_activity: "__string",
9390
+ # template_name: "__string",
9391
+ # template_version: "__string",
9392
+ # },
9256
9393
  # wait: {
9257
9394
  # next_activity: "__string",
9258
9395
  # wait_time: {
@@ -9295,6 +9432,13 @@ module Aws::Pinpoint
9295
9432
  # @example Response structure
9296
9433
  #
9297
9434
  # resp.journey_response.activities #=> Hash
9435
+ # resp.journey_response.activities["__string"].custom.delivery_uri #=> String
9436
+ # resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
9437
+ # 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"
9438
+ # resp.journey_response.activities["__string"].custom.message_config.data #=> String
9439
+ # resp.journey_response.activities["__string"].custom.next_activity #=> String
9440
+ # resp.journey_response.activities["__string"].custom.template_name #=> String
9441
+ # resp.journey_response.activities["__string"].custom.template_version #=> String
9298
9442
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
9299
9443
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
9300
9444
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
@@ -9411,9 +9555,18 @@ module Aws::Pinpoint
9411
9555
  # resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
9412
9556
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
9413
9557
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
9558
+ # resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
9559
+ # resp.journey_response.activities["__string"].push.next_activity #=> String
9560
+ # resp.journey_response.activities["__string"].push.template_name #=> String
9561
+ # resp.journey_response.activities["__string"].push.template_version #=> String
9414
9562
  # resp.journey_response.activities["__string"].random_split.branches #=> Array
9415
9563
  # resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
9416
9564
  # resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
9565
+ # resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
9566
+ # resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
9567
+ # resp.journey_response.activities["__string"].sms.next_activity #=> String
9568
+ # resp.journey_response.activities["__string"].sms.template_name #=> String
9569
+ # resp.journey_response.activities["__string"].sms.template_version #=> String
9417
9570
  # resp.journey_response.activities["__string"].wait.next_activity #=> String
9418
9571
  # resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
9419
9572
  # resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
@@ -9474,6 +9627,13 @@ module Aws::Pinpoint
9474
9627
  # @example Response structure
9475
9628
  #
9476
9629
  # resp.journey_response.activities #=> Hash
9630
+ # resp.journey_response.activities["__string"].custom.delivery_uri #=> String
9631
+ # resp.journey_response.activities["__string"].custom.endpoint_types #=> Array
9632
+ # 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"
9633
+ # resp.journey_response.activities["__string"].custom.message_config.data #=> String
9634
+ # resp.journey_response.activities["__string"].custom.next_activity #=> String
9635
+ # resp.journey_response.activities["__string"].custom.template_name #=> String
9636
+ # resp.journey_response.activities["__string"].custom.template_version #=> String
9477
9637
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions #=> Array
9478
9638
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes #=> Hash
9479
9639
  # resp.journey_response.activities["__string"].conditional_split.condition.conditions[0].event_condition.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
@@ -9590,9 +9750,18 @@ module Aws::Pinpoint
9590
9750
  # resp.journey_response.activities["__string"].multi_condition.default_activity #=> String
9591
9751
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_for #=> String
9592
9752
  # resp.journey_response.activities["__string"].multi_condition.evaluation_wait_time.wait_until #=> String
9753
+ # resp.journey_response.activities["__string"].push.message_config.time_to_live #=> String
9754
+ # resp.journey_response.activities["__string"].push.next_activity #=> String
9755
+ # resp.journey_response.activities["__string"].push.template_name #=> String
9756
+ # resp.journey_response.activities["__string"].push.template_version #=> String
9593
9757
  # resp.journey_response.activities["__string"].random_split.branches #=> Array
9594
9758
  # resp.journey_response.activities["__string"].random_split.branches[0].next_activity #=> String
9595
9759
  # resp.journey_response.activities["__string"].random_split.branches[0].percentage #=> Integer
9760
+ # resp.journey_response.activities["__string"].sms.message_config.message_type #=> String, one of "TRANSACTIONAL", "PROMOTIONAL"
9761
+ # resp.journey_response.activities["__string"].sms.message_config.sender_id #=> String
9762
+ # resp.journey_response.activities["__string"].sms.next_activity #=> String
9763
+ # resp.journey_response.activities["__string"].sms.template_name #=> String
9764
+ # resp.journey_response.activities["__string"].sms.template_version #=> String
9596
9765
  # resp.journey_response.activities["__string"].wait.next_activity #=> String
9597
9766
  # resp.journey_response.activities["__string"].wait.wait_time.wait_for #=> String
9598
9767
  # resp.journey_response.activities["__string"].wait.wait_time.wait_until #=> String
@@ -10310,7 +10479,7 @@ module Aws::Pinpoint
10310
10479
  params: params,
10311
10480
  config: config)
10312
10481
  context[:gem_name] = 'aws-sdk-pinpoint'
10313
- context[:gem_version] = '1.40.0'
10482
+ context[:gem_version] = '1.45.0'
10314
10483
  Seahorse::Client::Request.new(handlers, context)
10315
10484
  end
10316
10485