aws-sdk-pinpoint 1.42.1 → 1.47.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-pinpoint.rb +5 -2
- data/lib/aws-sdk-pinpoint/client.rb +170 -33
- data/lib/aws-sdk-pinpoint/client_api.rb +20 -1
- data/lib/aws-sdk-pinpoint/errors.rb +23 -0
- data/lib/aws-sdk-pinpoint/resource.rb +2 -0
- data/lib/aws-sdk-pinpoint/types.rb +708 -44
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4271f61c360e5c35ccf64d9b0f43b64dc25a4fed77f8a562052f9d2b066854a
|
4
|
+
data.tar.gz: 7289bc4a95a9b07ce166a1db51be4de94f6ecbfdd07fe64725ecba20e52548b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5c97598e2fb9d12471871a6ab6aaef7457c74a4aabc5c9b65a26fe62c4730694db1ca2abfffe527c273daedae45e070a51a7446eafc8bbb57f36e624a02ea0e
|
7
|
+
data.tar.gz: cdb94a5c31db59f68bb75e1a6012022dfde272a6eb7f4d0f3d45d810855dae50bcd7f1b158964895a4c6991aea9f3a1f5796c8e0b02b0febeae39a940f8489dc
|
data/lib/aws-sdk-pinpoint.rb
CHANGED
@@ -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:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-pinpoint/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::Pinpoint
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.47.0'
|
49
52
|
|
50
53
|
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:
|
@@ -83,13 +85,28 @@ module Aws::Pinpoint
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::Pinpoint
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -771,7 +788,7 @@ module Aws::Pinpoint
|
|
771
788
|
# resp.campaign_response.additional_treatments[0].schedule.start_time #=> String
|
772
789
|
# resp.campaign_response.additional_treatments[0].schedule.timezone #=> String
|
773
790
|
# resp.campaign_response.additional_treatments[0].size_percent #=> Integer
|
774
|
-
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
791
|
+
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
775
792
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.name #=> String
|
776
793
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.version #=> String
|
777
794
|
# resp.campaign_response.additional_treatments[0].template_configuration.push_template.name #=> String
|
@@ -788,7 +805,7 @@ module Aws::Pinpoint
|
|
788
805
|
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
789
806
|
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
790
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"
|
791
|
-
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
808
|
+
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
792
809
|
# resp.campaign_response.description #=> String
|
793
810
|
# resp.campaign_response.holdout_percent #=> Integer
|
794
811
|
# resp.campaign_response.hook.lambda_function_name #=> String
|
@@ -890,7 +907,7 @@ module Aws::Pinpoint
|
|
890
907
|
# resp.campaign_response.schedule.timezone #=> String
|
891
908
|
# resp.campaign_response.segment_id #=> String
|
892
909
|
# resp.campaign_response.segment_version #=> Integer
|
893
|
-
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
910
|
+
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
894
911
|
# resp.campaign_response.tags #=> Hash
|
895
912
|
# resp.campaign_response.tags["__string"] #=> String
|
896
913
|
# resp.campaign_response.template_configuration.email_template.name #=> String
|
@@ -1106,7 +1123,7 @@ module Aws::Pinpoint
|
|
1106
1123
|
# conditions: [
|
1107
1124
|
# {
|
1108
1125
|
# event_condition: {
|
1109
|
-
# dimensions: {
|
1126
|
+
# dimensions: {
|
1110
1127
|
# attributes: {
|
1111
1128
|
# "__string" => {
|
1112
1129
|
# attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
|
@@ -1223,7 +1240,7 @@ module Aws::Pinpoint
|
|
1223
1240
|
# {
|
1224
1241
|
# condition: {
|
1225
1242
|
# event_condition: {
|
1226
|
-
# dimensions: {
|
1243
|
+
# dimensions: {
|
1227
1244
|
# attributes: {
|
1228
1245
|
# "__string" => {
|
1229
1246
|
# attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
|
@@ -1377,6 +1394,30 @@ module Aws::Pinpoint
|
|
1377
1394
|
# start_activity: "__string",
|
1378
1395
|
# start_condition: {
|
1379
1396
|
# description: "__string",
|
1397
|
+
# event_start_condition: {
|
1398
|
+
# event_filter: {
|
1399
|
+
# dimensions: { # required
|
1400
|
+
# attributes: {
|
1401
|
+
# "__string" => {
|
1402
|
+
# attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
|
1403
|
+
# values: ["__string"], # required
|
1404
|
+
# },
|
1405
|
+
# },
|
1406
|
+
# event_type: {
|
1407
|
+
# dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
|
1408
|
+
# values: ["__string"], # required
|
1409
|
+
# },
|
1410
|
+
# metrics: {
|
1411
|
+
# "__string" => {
|
1412
|
+
# comparison_operator: "__string", # required
|
1413
|
+
# value: 1.0, # required
|
1414
|
+
# },
|
1415
|
+
# },
|
1416
|
+
# },
|
1417
|
+
# filter_type: "SYSTEM", # required, accepts SYSTEM, ENDPOINT
|
1418
|
+
# },
|
1419
|
+
# segment_id: "__string",
|
1420
|
+
# },
|
1380
1421
|
# segment_start_condition: {
|
1381
1422
|
# segment_id: "__string", # required
|
1382
1423
|
# },
|
@@ -1543,6 +1584,18 @@ module Aws::Pinpoint
|
|
1543
1584
|
# resp.journey_response.schedule.timezone #=> String
|
1544
1585
|
# resp.journey_response.start_activity #=> String
|
1545
1586
|
# resp.journey_response.start_condition.description #=> String
|
1587
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes #=> Hash
|
1588
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
1589
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values #=> Array
|
1590
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values[0] #=> String
|
1591
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
1592
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values #=> Array
|
1593
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values[0] #=> String
|
1594
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics #=> Hash
|
1595
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].comparison_operator #=> String
|
1596
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].value #=> Float
|
1597
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.filter_type #=> String, one of "SYSTEM", "ENDPOINT"
|
1598
|
+
# resp.journey_response.start_condition.event_start_condition.segment_id #=> String
|
1546
1599
|
# resp.journey_response.start_condition.segment_start_condition.segment_id #=> String
|
1547
1600
|
# resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED"
|
1548
1601
|
# resp.journey_response.tags #=> Hash
|
@@ -2446,7 +2499,7 @@ module Aws::Pinpoint
|
|
2446
2499
|
# resp.campaign_response.additional_treatments[0].schedule.start_time #=> String
|
2447
2500
|
# resp.campaign_response.additional_treatments[0].schedule.timezone #=> String
|
2448
2501
|
# resp.campaign_response.additional_treatments[0].size_percent #=> Integer
|
2449
|
-
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
2502
|
+
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
2450
2503
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.name #=> String
|
2451
2504
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.version #=> String
|
2452
2505
|
# resp.campaign_response.additional_treatments[0].template_configuration.push_template.name #=> String
|
@@ -2463,7 +2516,7 @@ module Aws::Pinpoint
|
|
2463
2516
|
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
2464
2517
|
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
2465
2518
|
# 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"
|
2466
|
-
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
2519
|
+
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
2467
2520
|
# resp.campaign_response.description #=> String
|
2468
2521
|
# resp.campaign_response.holdout_percent #=> Integer
|
2469
2522
|
# resp.campaign_response.hook.lambda_function_name #=> String
|
@@ -2565,7 +2618,7 @@ module Aws::Pinpoint
|
|
2565
2618
|
# resp.campaign_response.schedule.timezone #=> String
|
2566
2619
|
# resp.campaign_response.segment_id #=> String
|
2567
2620
|
# resp.campaign_response.segment_version #=> Integer
|
2568
|
-
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
2621
|
+
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
2569
2622
|
# resp.campaign_response.tags #=> Hash
|
2570
2623
|
# resp.campaign_response.tags["__string"] #=> String
|
2571
2624
|
# resp.campaign_response.template_configuration.email_template.name #=> String
|
@@ -2970,6 +3023,18 @@ module Aws::Pinpoint
|
|
2970
3023
|
# resp.journey_response.schedule.timezone #=> String
|
2971
3024
|
# resp.journey_response.start_activity #=> String
|
2972
3025
|
# resp.journey_response.start_condition.description #=> String
|
3026
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes #=> Hash
|
3027
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
3028
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values #=> Array
|
3029
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values[0] #=> String
|
3030
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
3031
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values #=> Array
|
3032
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values[0] #=> String
|
3033
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics #=> Hash
|
3034
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].comparison_operator #=> String
|
3035
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].value #=> Float
|
3036
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.filter_type #=> String, one of "SYSTEM", "ENDPOINT"
|
3037
|
+
# resp.journey_response.start_condition.event_start_condition.segment_id #=> String
|
2973
3038
|
# resp.journey_response.start_condition.segment_start_condition.segment_id #=> String
|
2974
3039
|
# resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED"
|
2975
3040
|
# resp.journey_response.tags #=> Hash
|
@@ -3892,7 +3957,7 @@ module Aws::Pinpoint
|
|
3892
3957
|
# resp.campaign_response.additional_treatments[0].schedule.start_time #=> String
|
3893
3958
|
# resp.campaign_response.additional_treatments[0].schedule.timezone #=> String
|
3894
3959
|
# resp.campaign_response.additional_treatments[0].size_percent #=> Integer
|
3895
|
-
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
3960
|
+
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
3896
3961
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.name #=> String
|
3897
3962
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.version #=> String
|
3898
3963
|
# resp.campaign_response.additional_treatments[0].template_configuration.push_template.name #=> String
|
@@ -3909,7 +3974,7 @@ module Aws::Pinpoint
|
|
3909
3974
|
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
3910
3975
|
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
3911
3976
|
# 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"
|
3912
|
-
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
3977
|
+
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
3913
3978
|
# resp.campaign_response.description #=> String
|
3914
3979
|
# resp.campaign_response.holdout_percent #=> Integer
|
3915
3980
|
# resp.campaign_response.hook.lambda_function_name #=> String
|
@@ -4011,7 +4076,7 @@ module Aws::Pinpoint
|
|
4011
4076
|
# resp.campaign_response.schedule.timezone #=> String
|
4012
4077
|
# resp.campaign_response.segment_id #=> String
|
4013
4078
|
# resp.campaign_response.segment_version #=> Integer
|
4014
|
-
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4079
|
+
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4015
4080
|
# resp.campaign_response.tags #=> Hash
|
4016
4081
|
# resp.campaign_response.tags["__string"] #=> String
|
4017
4082
|
# resp.campaign_response.template_configuration.email_template.name #=> String
|
@@ -4260,7 +4325,7 @@ module Aws::Pinpoint
|
|
4260
4325
|
# resp.campaign_response.additional_treatments[0].schedule.start_time #=> String
|
4261
4326
|
# resp.campaign_response.additional_treatments[0].schedule.timezone #=> String
|
4262
4327
|
# resp.campaign_response.additional_treatments[0].size_percent #=> Integer
|
4263
|
-
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4328
|
+
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4264
4329
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.name #=> String
|
4265
4330
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.version #=> String
|
4266
4331
|
# resp.campaign_response.additional_treatments[0].template_configuration.push_template.name #=> String
|
@@ -4277,7 +4342,7 @@ module Aws::Pinpoint
|
|
4277
4342
|
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
4278
4343
|
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
4279
4344
|
# 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"
|
4280
|
-
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4345
|
+
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4281
4346
|
# resp.campaign_response.description #=> String
|
4282
4347
|
# resp.campaign_response.holdout_percent #=> Integer
|
4283
4348
|
# resp.campaign_response.hook.lambda_function_name #=> String
|
@@ -4379,7 +4444,7 @@ module Aws::Pinpoint
|
|
4379
4444
|
# resp.campaign_response.schedule.timezone #=> String
|
4380
4445
|
# resp.campaign_response.segment_id #=> String
|
4381
4446
|
# resp.campaign_response.segment_version #=> Integer
|
4382
|
-
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4447
|
+
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4383
4448
|
# resp.campaign_response.tags #=> Hash
|
4384
4449
|
# resp.campaign_response.tags["__string"] #=> String
|
4385
4450
|
# resp.campaign_response.template_configuration.email_template.name #=> String
|
@@ -4522,7 +4587,7 @@ module Aws::Pinpoint
|
|
4522
4587
|
# resp.campaigns_response.item[0].additional_treatments[0].schedule.start_time #=> String
|
4523
4588
|
# resp.campaigns_response.item[0].additional_treatments[0].schedule.timezone #=> String
|
4524
4589
|
# resp.campaigns_response.item[0].additional_treatments[0].size_percent #=> Integer
|
4525
|
-
# resp.campaigns_response.item[0].additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4590
|
+
# resp.campaigns_response.item[0].additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4526
4591
|
# resp.campaigns_response.item[0].additional_treatments[0].template_configuration.email_template.name #=> String
|
4527
4592
|
# resp.campaigns_response.item[0].additional_treatments[0].template_configuration.email_template.version #=> String
|
4528
4593
|
# resp.campaigns_response.item[0].additional_treatments[0].template_configuration.push_template.name #=> String
|
@@ -4539,7 +4604,7 @@ module Aws::Pinpoint
|
|
4539
4604
|
# resp.campaigns_response.item[0].custom_delivery_configuration.delivery_uri #=> String
|
4540
4605
|
# resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types #=> Array
|
4541
4606
|
# 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"
|
4542
|
-
# resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4607
|
+
# resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4543
4608
|
# resp.campaigns_response.item[0].description #=> String
|
4544
4609
|
# resp.campaigns_response.item[0].holdout_percent #=> Integer
|
4545
4610
|
# resp.campaigns_response.item[0].hook.lambda_function_name #=> String
|
@@ -4641,7 +4706,7 @@ module Aws::Pinpoint
|
|
4641
4706
|
# resp.campaigns_response.item[0].schedule.timezone #=> String
|
4642
4707
|
# resp.campaigns_response.item[0].segment_id #=> String
|
4643
4708
|
# resp.campaigns_response.item[0].segment_version #=> Integer
|
4644
|
-
# resp.campaigns_response.item[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4709
|
+
# resp.campaigns_response.item[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4645
4710
|
# resp.campaigns_response.item[0].tags #=> Hash
|
4646
4711
|
# resp.campaigns_response.item[0].tags["__string"] #=> String
|
4647
4712
|
# resp.campaigns_response.item[0].template_configuration.email_template.name #=> String
|
@@ -4783,7 +4848,7 @@ module Aws::Pinpoint
|
|
4783
4848
|
# resp.campaigns_response.item[0].additional_treatments[0].schedule.start_time #=> String
|
4784
4849
|
# resp.campaigns_response.item[0].additional_treatments[0].schedule.timezone #=> String
|
4785
4850
|
# resp.campaigns_response.item[0].additional_treatments[0].size_percent #=> Integer
|
4786
|
-
# resp.campaigns_response.item[0].additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4851
|
+
# resp.campaigns_response.item[0].additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4787
4852
|
# resp.campaigns_response.item[0].additional_treatments[0].template_configuration.email_template.name #=> String
|
4788
4853
|
# resp.campaigns_response.item[0].additional_treatments[0].template_configuration.email_template.version #=> String
|
4789
4854
|
# resp.campaigns_response.item[0].additional_treatments[0].template_configuration.push_template.name #=> String
|
@@ -4800,7 +4865,7 @@ module Aws::Pinpoint
|
|
4800
4865
|
# resp.campaigns_response.item[0].custom_delivery_configuration.delivery_uri #=> String
|
4801
4866
|
# resp.campaigns_response.item[0].custom_delivery_configuration.endpoint_types #=> Array
|
4802
4867
|
# 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"
|
4803
|
-
# resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4868
|
+
# resp.campaigns_response.item[0].default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4804
4869
|
# resp.campaigns_response.item[0].description #=> String
|
4805
4870
|
# resp.campaigns_response.item[0].holdout_percent #=> Integer
|
4806
4871
|
# resp.campaigns_response.item[0].hook.lambda_function_name #=> String
|
@@ -4902,7 +4967,7 @@ module Aws::Pinpoint
|
|
4902
4967
|
# resp.campaigns_response.item[0].schedule.timezone #=> String
|
4903
4968
|
# resp.campaigns_response.item[0].segment_id #=> String
|
4904
4969
|
# resp.campaigns_response.item[0].segment_version #=> Integer
|
4905
|
-
# resp.campaigns_response.item[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
4970
|
+
# resp.campaigns_response.item[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
4906
4971
|
# resp.campaigns_response.item[0].tags #=> Hash
|
4907
4972
|
# resp.campaigns_response.item[0].tags["__string"] #=> String
|
4908
4973
|
# resp.campaigns_response.item[0].template_configuration.email_template.name #=> String
|
@@ -5566,6 +5631,18 @@ module Aws::Pinpoint
|
|
5566
5631
|
# resp.journey_response.schedule.timezone #=> String
|
5567
5632
|
# resp.journey_response.start_activity #=> String
|
5568
5633
|
# resp.journey_response.start_condition.description #=> String
|
5634
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes #=> Hash
|
5635
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
5636
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values #=> Array
|
5637
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values[0] #=> String
|
5638
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
5639
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values #=> Array
|
5640
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values[0] #=> String
|
5641
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics #=> Hash
|
5642
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].comparison_operator #=> String
|
5643
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].value #=> Float
|
5644
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.filter_type #=> String, one of "SYSTEM", "ENDPOINT"
|
5645
|
+
# resp.journey_response.start_condition.event_start_condition.segment_id #=> String
|
5569
5646
|
# resp.journey_response.start_condition.segment_start_condition.segment_id #=> String
|
5570
5647
|
# resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED"
|
5571
5648
|
# resp.journey_response.tags #=> Hash
|
@@ -6948,6 +7025,18 @@ module Aws::Pinpoint
|
|
6948
7025
|
# resp.journeys_response.item[0].schedule.timezone #=> String
|
6949
7026
|
# resp.journeys_response.item[0].start_activity #=> String
|
6950
7027
|
# resp.journeys_response.item[0].start_condition.description #=> String
|
7028
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.attributes #=> Hash
|
7029
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
7030
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values #=> Array
|
7031
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values[0] #=> String
|
7032
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.event_type.dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
7033
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.event_type.values #=> Array
|
7034
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.event_type.values[0] #=> String
|
7035
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.metrics #=> Hash
|
7036
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].comparison_operator #=> String
|
7037
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].value #=> Float
|
7038
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.event_filter.filter_type #=> String, one of "SYSTEM", "ENDPOINT"
|
7039
|
+
# resp.journeys_response.item[0].start_condition.event_start_condition.segment_id #=> String
|
6951
7040
|
# resp.journeys_response.item[0].start_condition.segment_start_condition.segment_id #=> String
|
6952
7041
|
# resp.journeys_response.item[0].state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED"
|
6953
7042
|
# resp.journeys_response.item[0].tags #=> Hash
|
@@ -8646,7 +8735,7 @@ module Aws::Pinpoint
|
|
8646
8735
|
# resp.campaign_response.additional_treatments[0].schedule.start_time #=> String
|
8647
8736
|
# resp.campaign_response.additional_treatments[0].schedule.timezone #=> String
|
8648
8737
|
# resp.campaign_response.additional_treatments[0].size_percent #=> Integer
|
8649
|
-
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
8738
|
+
# resp.campaign_response.additional_treatments[0].state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
8650
8739
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.name #=> String
|
8651
8740
|
# resp.campaign_response.additional_treatments[0].template_configuration.email_template.version #=> String
|
8652
8741
|
# resp.campaign_response.additional_treatments[0].template_configuration.push_template.name #=> String
|
@@ -8663,7 +8752,7 @@ module Aws::Pinpoint
|
|
8663
8752
|
# resp.campaign_response.custom_delivery_configuration.delivery_uri #=> String
|
8664
8753
|
# resp.campaign_response.custom_delivery_configuration.endpoint_types #=> Array
|
8665
8754
|
# 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"
|
8666
|
-
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
8755
|
+
# resp.campaign_response.default_state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
8667
8756
|
# resp.campaign_response.description #=> String
|
8668
8757
|
# resp.campaign_response.holdout_percent #=> Integer
|
8669
8758
|
# resp.campaign_response.hook.lambda_function_name #=> String
|
@@ -8765,7 +8854,7 @@ module Aws::Pinpoint
|
|
8765
8854
|
# resp.campaign_response.schedule.timezone #=> String
|
8766
8855
|
# resp.campaign_response.segment_id #=> String
|
8767
8856
|
# resp.campaign_response.segment_version #=> Integer
|
8768
|
-
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED"
|
8857
|
+
# resp.campaign_response.state.campaign_status #=> String, one of "SCHEDULED", "EXECUTING", "PENDING_NEXT_RUN", "COMPLETED", "PAUSED", "DELETED", "INVALID"
|
8769
8858
|
# resp.campaign_response.tags #=> Hash
|
8770
8859
|
# resp.campaign_response.tags["__string"] #=> String
|
8771
8860
|
# resp.campaign_response.template_configuration.email_template.name #=> String
|
@@ -9133,7 +9222,7 @@ module Aws::Pinpoint
|
|
9133
9222
|
# conditions: [
|
9134
9223
|
# {
|
9135
9224
|
# event_condition: {
|
9136
|
-
# dimensions: {
|
9225
|
+
# dimensions: {
|
9137
9226
|
# attributes: {
|
9138
9227
|
# "__string" => {
|
9139
9228
|
# attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
|
@@ -9250,7 +9339,7 @@ module Aws::Pinpoint
|
|
9250
9339
|
# {
|
9251
9340
|
# condition: {
|
9252
9341
|
# event_condition: {
|
9253
|
-
# dimensions: {
|
9342
|
+
# dimensions: {
|
9254
9343
|
# attributes: {
|
9255
9344
|
# "__string" => {
|
9256
9345
|
# attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
|
@@ -9404,6 +9493,30 @@ module Aws::Pinpoint
|
|
9404
9493
|
# start_activity: "__string",
|
9405
9494
|
# start_condition: {
|
9406
9495
|
# description: "__string",
|
9496
|
+
# event_start_condition: {
|
9497
|
+
# event_filter: {
|
9498
|
+
# dimensions: { # required
|
9499
|
+
# attributes: {
|
9500
|
+
# "__string" => {
|
9501
|
+
# attribute_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
|
9502
|
+
# values: ["__string"], # required
|
9503
|
+
# },
|
9504
|
+
# },
|
9505
|
+
# event_type: {
|
9506
|
+
# dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
|
9507
|
+
# values: ["__string"], # required
|
9508
|
+
# },
|
9509
|
+
# metrics: {
|
9510
|
+
# "__string" => {
|
9511
|
+
# comparison_operator: "__string", # required
|
9512
|
+
# value: 1.0, # required
|
9513
|
+
# },
|
9514
|
+
# },
|
9515
|
+
# },
|
9516
|
+
# filter_type: "SYSTEM", # required, accepts SYSTEM, ENDPOINT
|
9517
|
+
# },
|
9518
|
+
# segment_id: "__string",
|
9519
|
+
# },
|
9407
9520
|
# segment_start_condition: {
|
9408
9521
|
# segment_id: "__string", # required
|
9409
9522
|
# },
|
@@ -9570,6 +9683,18 @@ module Aws::Pinpoint
|
|
9570
9683
|
# resp.journey_response.schedule.timezone #=> String
|
9571
9684
|
# resp.journey_response.start_activity #=> String
|
9572
9685
|
# resp.journey_response.start_condition.description #=> String
|
9686
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes #=> Hash
|
9687
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
9688
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values #=> Array
|
9689
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values[0] #=> String
|
9690
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
9691
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values #=> Array
|
9692
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values[0] #=> String
|
9693
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics #=> Hash
|
9694
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].comparison_operator #=> String
|
9695
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].value #=> Float
|
9696
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.filter_type #=> String, one of "SYSTEM", "ENDPOINT"
|
9697
|
+
# resp.journey_response.start_condition.event_start_condition.segment_id #=> String
|
9573
9698
|
# resp.journey_response.start_condition.segment_start_condition.segment_id #=> String
|
9574
9699
|
# resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED"
|
9575
9700
|
# resp.journey_response.tags #=> Hash
|
@@ -9765,6 +9890,18 @@ module Aws::Pinpoint
|
|
9765
9890
|
# resp.journey_response.schedule.timezone #=> String
|
9766
9891
|
# resp.journey_response.start_activity #=> String
|
9767
9892
|
# resp.journey_response.start_condition.description #=> String
|
9893
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes #=> Hash
|
9894
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].attribute_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
9895
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values #=> Array
|
9896
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.attributes["__string"].values[0] #=> String
|
9897
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
|
9898
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values #=> Array
|
9899
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.event_type.values[0] #=> String
|
9900
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics #=> Hash
|
9901
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].comparison_operator #=> String
|
9902
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.dimensions.metrics["__string"].value #=> Float
|
9903
|
+
# resp.journey_response.start_condition.event_start_condition.event_filter.filter_type #=> String, one of "SYSTEM", "ENDPOINT"
|
9904
|
+
# resp.journey_response.start_condition.event_start_condition.segment_id #=> String
|
9768
9905
|
# resp.journey_response.start_condition.segment_start_condition.segment_id #=> String
|
9769
9906
|
# resp.journey_response.state #=> String, one of "DRAFT", "ACTIVE", "COMPLETED", "CANCELLED", "CLOSED"
|
9770
9907
|
# resp.journey_response.tags #=> Hash
|
@@ -10462,7 +10599,7 @@ module Aws::Pinpoint
|
|
10462
10599
|
params: params,
|
10463
10600
|
config: config)
|
10464
10601
|
context[:gem_name] = 'aws-sdk-pinpoint'
|
10465
|
-
context[:gem_version] = '1.
|
10602
|
+
context[:gem_version] = '1.47.0'
|
10466
10603
|
Seahorse::Client::Request.new(handlers, context)
|
10467
10604
|
end
|
10468
10605
|
|