aws-sdk-pinpoint 1.41.0 → 1.46.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 +4 -4
- data/lib/aws-sdk-pinpoint.rb +5 -2
- data/lib/aws-sdk-pinpoint/client.rb +28 -9
- data/lib/aws-sdk-pinpoint/client_api.rb +2 -0
- data/lib/aws-sdk-pinpoint/errors.rb +2 -0
- data/lib/aws-sdk-pinpoint/resource.rb +2 -0
- data/lib/aws-sdk-pinpoint/types.rb +410 -1
- 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: 4f67a1e4080b9700c6c106c1e3af4552fa1f816fc143d645db9efdac5d7f1901
|
4
|
+
data.tar.gz: bb4748b9300ab6b7087268bad1b16fea6b6385586666b7e8e60509553a27d43b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dff5c7c549603131820e96bdf503424e7e81a9bcd7602abb1785ac91721cc145d559e0fbca6cdbb3e3470e249e1333b775cce9b603a660cd51e794a3f950b21c
|
7
|
+
data.tar.gz: 87cbcd604eb0c025ef4d48d165026694ba5603e8edb1fff87f929d9d029651bdc2c29b68579da280c6566edc5e49c85e5d5ed886369e5dbebe5d04686f60ff5f
|
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.46.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:
|
@@ -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::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
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
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
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
|
@@ -10460,7 +10479,7 @@ module Aws::Pinpoint
|
|
10460
10479
|
params: params,
|
10461
10480
|
config: config)
|
10462
10481
|
context[:gem_name] = 'aws-sdk-pinpoint'
|
10463
|
-
context[:gem_version] = '1.
|
10482
|
+
context[:gem_version] = '1.46.0'
|
10464
10483
|
Seahorse::Client::Request.new(handlers, context)
|
10465
10484
|
end
|
10466
10485
|
|
@@ -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:
|
@@ -40,6 +42,7 @@ module Aws::Pinpoint
|
|
40
42
|
:client_id,
|
41
43
|
:client_secret,
|
42
44
|
:enabled)
|
45
|
+
SENSITIVE = []
|
43
46
|
include Aws::Structure
|
44
47
|
end
|
45
48
|
|
@@ -103,6 +106,7 @@ module Aws::Pinpoint
|
|
103
106
|
:last_modified_date,
|
104
107
|
:platform,
|
105
108
|
:version)
|
109
|
+
SENSITIVE = []
|
106
110
|
include Aws::Structure
|
107
111
|
end
|
108
112
|
|
@@ -254,6 +258,7 @@ module Aws::Pinpoint
|
|
254
258
|
:substitutions,
|
255
259
|
:title,
|
256
260
|
:url)
|
261
|
+
SENSITIVE = []
|
257
262
|
include Aws::Structure
|
258
263
|
end
|
259
264
|
|
@@ -324,6 +329,7 @@ module Aws::Pinpoint
|
|
324
329
|
:team_id,
|
325
330
|
:token_key,
|
326
331
|
:token_key_id)
|
332
|
+
SENSITIVE = []
|
327
333
|
include Aws::Structure
|
328
334
|
end
|
329
335
|
|
@@ -400,6 +406,7 @@ module Aws::Pinpoint
|
|
400
406
|
:last_modified_date,
|
401
407
|
:platform,
|
402
408
|
:version)
|
409
|
+
SENSITIVE = []
|
403
410
|
include Aws::Structure
|
404
411
|
end
|
405
412
|
|
@@ -667,6 +674,7 @@ module Aws::Pinpoint
|
|
667
674
|
:time_to_live,
|
668
675
|
:title,
|
669
676
|
:url)
|
677
|
+
SENSITIVE = []
|
670
678
|
include Aws::Structure
|
671
679
|
end
|
672
680
|
|
@@ -749,6 +757,7 @@ module Aws::Pinpoint
|
|
749
757
|
:sound,
|
750
758
|
:title,
|
751
759
|
:url)
|
760
|
+
SENSITIVE = []
|
752
761
|
include Aws::Structure
|
753
762
|
end
|
754
763
|
|
@@ -822,6 +831,7 @@ module Aws::Pinpoint
|
|
822
831
|
:team_id,
|
823
832
|
:token_key,
|
824
833
|
:token_key_id)
|
834
|
+
SENSITIVE = []
|
825
835
|
include Aws::Structure
|
826
836
|
end
|
827
837
|
|
@@ -901,6 +911,7 @@ module Aws::Pinpoint
|
|
901
911
|
:last_modified_date,
|
902
912
|
:platform,
|
903
913
|
:version)
|
914
|
+
SENSITIVE = []
|
904
915
|
include Aws::Structure
|
905
916
|
end
|
906
917
|
|
@@ -972,6 +983,7 @@ module Aws::Pinpoint
|
|
972
983
|
:team_id,
|
973
984
|
:token_key,
|
974
985
|
:token_key_id)
|
986
|
+
SENSITIVE = []
|
975
987
|
include Aws::Structure
|
976
988
|
end
|
977
989
|
|
@@ -1049,6 +1061,7 @@ module Aws::Pinpoint
|
|
1049
1061
|
:last_modified_date,
|
1050
1062
|
:platform,
|
1051
1063
|
:version)
|
1064
|
+
SENSITIVE = []
|
1052
1065
|
include Aws::Structure
|
1053
1066
|
end
|
1054
1067
|
|
@@ -1122,6 +1135,7 @@ module Aws::Pinpoint
|
|
1122
1135
|
:team_id,
|
1123
1136
|
:token_key,
|
1124
1137
|
:token_key_id)
|
1138
|
+
SENSITIVE = []
|
1125
1139
|
include Aws::Structure
|
1126
1140
|
end
|
1127
1141
|
|
@@ -1202,6 +1216,7 @@ module Aws::Pinpoint
|
|
1202
1216
|
:last_modified_date,
|
1203
1217
|
:platform,
|
1204
1218
|
:version)
|
1219
|
+
SENSITIVE = []
|
1205
1220
|
include Aws::Structure
|
1206
1221
|
end
|
1207
1222
|
|
@@ -1224,6 +1239,7 @@ module Aws::Pinpoint
|
|
1224
1239
|
class ActivitiesResponse < Struct.new(
|
1225
1240
|
:item,
|
1226
1241
|
:next_token)
|
1242
|
+
SENSITIVE = []
|
1227
1243
|
include Aws::Structure
|
1228
1244
|
end
|
1229
1245
|
|
@@ -1567,6 +1583,7 @@ module Aws::Pinpoint
|
|
1567
1583
|
:random_split,
|
1568
1584
|
:sms,
|
1569
1585
|
:wait)
|
1586
|
+
SENSITIVE = []
|
1570
1587
|
include Aws::Structure
|
1571
1588
|
end
|
1572
1589
|
|
@@ -1650,6 +1667,7 @@ module Aws::Pinpoint
|
|
1650
1667
|
:timezones_total_count,
|
1651
1668
|
:total_endpoint_count,
|
1652
1669
|
:treatment_id)
|
1670
|
+
SENSITIVE = []
|
1653
1671
|
include Aws::Structure
|
1654
1672
|
end
|
1655
1673
|
|
@@ -1716,6 +1734,7 @@ module Aws::Pinpoint
|
|
1716
1734
|
:raw_content,
|
1717
1735
|
:substitutions,
|
1718
1736
|
:title_override)
|
1737
|
+
SENSITIVE = []
|
1719
1738
|
include Aws::Structure
|
1720
1739
|
end
|
1721
1740
|
|
@@ -1813,6 +1832,7 @@ module Aws::Pinpoint
|
|
1813
1832
|
:sound,
|
1814
1833
|
:title,
|
1815
1834
|
:url)
|
1835
|
+
SENSITIVE = []
|
1816
1836
|
include Aws::Structure
|
1817
1837
|
end
|
1818
1838
|
|
@@ -1872,6 +1892,7 @@ module Aws::Pinpoint
|
|
1872
1892
|
:kpi_result,
|
1873
1893
|
:next_token,
|
1874
1894
|
:start_time)
|
1895
|
+
SENSITIVE = []
|
1875
1896
|
include Aws::Structure
|
1876
1897
|
end
|
1877
1898
|
|
@@ -1904,6 +1925,7 @@ module Aws::Pinpoint
|
|
1904
1925
|
:id,
|
1905
1926
|
:name,
|
1906
1927
|
:tags)
|
1928
|
+
SENSITIVE = []
|
1907
1929
|
include Aws::Structure
|
1908
1930
|
end
|
1909
1931
|
|
@@ -1962,6 +1984,7 @@ module Aws::Pinpoint
|
|
1962
1984
|
:last_modified_date,
|
1963
1985
|
:limits,
|
1964
1986
|
:quiet_time)
|
1987
|
+
SENSITIVE = []
|
1965
1988
|
include Aws::Structure
|
1966
1989
|
end
|
1967
1990
|
|
@@ -1982,6 +2005,7 @@ module Aws::Pinpoint
|
|
1982
2005
|
class ApplicationsResponse < Struct.new(
|
1983
2006
|
:item,
|
1984
2007
|
:next_token)
|
2008
|
+
SENSITIVE = []
|
1985
2009
|
include Aws::Structure
|
1986
2010
|
end
|
1987
2011
|
|
@@ -2015,6 +2039,7 @@ module Aws::Pinpoint
|
|
2015
2039
|
class AttributeDimension < Struct.new(
|
2016
2040
|
:attribute_type,
|
2017
2041
|
:values)
|
2042
|
+
SENSITIVE = []
|
2018
2043
|
include Aws::Structure
|
2019
2044
|
end
|
2020
2045
|
|
@@ -2050,6 +2075,7 @@ module Aws::Pinpoint
|
|
2050
2075
|
:application_id,
|
2051
2076
|
:attribute_type,
|
2052
2077
|
:attributes)
|
2078
|
+
SENSITIVE = []
|
2053
2079
|
include Aws::Structure
|
2054
2080
|
end
|
2055
2081
|
|
@@ -2066,6 +2092,7 @@ module Aws::Pinpoint
|
|
2066
2092
|
class BadRequestException < Struct.new(
|
2067
2093
|
:message,
|
2068
2094
|
:request_id)
|
2095
|
+
SENSITIVE = []
|
2069
2096
|
include Aws::Structure
|
2070
2097
|
end
|
2071
2098
|
|
@@ -2101,6 +2128,7 @@ module Aws::Pinpoint
|
|
2101
2128
|
:api_key,
|
2102
2129
|
:enabled,
|
2103
2130
|
:secret_key)
|
2131
|
+
SENSITIVE = []
|
2104
2132
|
include Aws::Structure
|
2105
2133
|
end
|
2106
2134
|
|
@@ -2170,6 +2198,7 @@ module Aws::Pinpoint
|
|
2170
2198
|
:last_modified_date,
|
2171
2199
|
:platform,
|
2172
2200
|
:version)
|
2201
|
+
SENSITIVE = []
|
2173
2202
|
include Aws::Structure
|
2174
2203
|
end
|
2175
2204
|
|
@@ -2305,6 +2334,7 @@ module Aws::Pinpoint
|
|
2305
2334
|
:time_to_live,
|
2306
2335
|
:title,
|
2307
2336
|
:url)
|
2337
|
+
SENSITIVE = []
|
2308
2338
|
include Aws::Structure
|
2309
2339
|
end
|
2310
2340
|
|
@@ -2321,6 +2351,7 @@ module Aws::Pinpoint
|
|
2321
2351
|
#
|
2322
2352
|
class BaseKpiResult < Struct.new(
|
2323
2353
|
:rows)
|
2354
|
+
SENSITIVE = []
|
2324
2355
|
include Aws::Structure
|
2325
2356
|
end
|
2326
2357
|
|
@@ -2343,6 +2374,7 @@ module Aws::Pinpoint
|
|
2343
2374
|
#
|
2344
2375
|
class CampaignCustomMessage < Struct.new(
|
2345
2376
|
:data)
|
2377
|
+
SENSITIVE = []
|
2346
2378
|
include Aws::Structure
|
2347
2379
|
end
|
2348
2380
|
|
@@ -2407,6 +2439,7 @@ module Aws::Pinpoint
|
|
2407
2439
|
:kpi_result,
|
2408
2440
|
:next_token,
|
2409
2441
|
:start_time)
|
2442
|
+
SENSITIVE = []
|
2410
2443
|
include Aws::Structure
|
2411
2444
|
end
|
2412
2445
|
|
@@ -2450,6 +2483,7 @@ module Aws::Pinpoint
|
|
2450
2483
|
:from_address,
|
2451
2484
|
:html_body,
|
2452
2485
|
:title)
|
2486
|
+
SENSITIVE = []
|
2453
2487
|
include Aws::Structure
|
2454
2488
|
end
|
2455
2489
|
|
@@ -2498,6 +2532,7 @@ module Aws::Pinpoint
|
|
2498
2532
|
class CampaignEventFilter < Struct.new(
|
2499
2533
|
:dimensions,
|
2500
2534
|
:filter_type)
|
2535
|
+
SENSITIVE = []
|
2501
2536
|
include Aws::Structure
|
2502
2537
|
end
|
2503
2538
|
|
@@ -2543,6 +2578,7 @@ module Aws::Pinpoint
|
|
2543
2578
|
:lambda_function_name,
|
2544
2579
|
:mode,
|
2545
2580
|
:web_url)
|
2581
|
+
SENSITIVE = []
|
2546
2582
|
include Aws::Structure
|
2547
2583
|
end
|
2548
2584
|
|
@@ -2595,6 +2631,7 @@ module Aws::Pinpoint
|
|
2595
2631
|
:maximum_duration,
|
2596
2632
|
:messages_per_second,
|
2597
2633
|
:total)
|
2634
|
+
SENSITIVE = []
|
2598
2635
|
include Aws::Structure
|
2599
2636
|
end
|
2600
2637
|
|
@@ -2738,6 +2775,7 @@ module Aws::Pinpoint
|
|
2738
2775
|
:treatment_description,
|
2739
2776
|
:treatment_name,
|
2740
2777
|
:version)
|
2778
|
+
SENSITIVE = []
|
2741
2779
|
include Aws::Structure
|
2742
2780
|
end
|
2743
2781
|
|
@@ -2775,6 +2813,7 @@ module Aws::Pinpoint
|
|
2775
2813
|
:body,
|
2776
2814
|
:message_type,
|
2777
2815
|
:sender_id)
|
2816
|
+
SENSITIVE = []
|
2778
2817
|
include Aws::Structure
|
2779
2818
|
end
|
2780
2819
|
|
@@ -2794,6 +2833,7 @@ module Aws::Pinpoint
|
|
2794
2833
|
#
|
2795
2834
|
class CampaignState < Struct.new(
|
2796
2835
|
:campaign_status)
|
2836
|
+
SENSITIVE = []
|
2797
2837
|
include Aws::Structure
|
2798
2838
|
end
|
2799
2839
|
|
@@ -2816,6 +2856,7 @@ module Aws::Pinpoint
|
|
2816
2856
|
class CampaignsResponse < Struct.new(
|
2817
2857
|
:item,
|
2818
2858
|
:next_token)
|
2859
|
+
SENSITIVE = []
|
2819
2860
|
include Aws::Structure
|
2820
2861
|
end
|
2821
2862
|
|
@@ -2873,6 +2914,7 @@ module Aws::Pinpoint
|
|
2873
2914
|
:last_modified_by,
|
2874
2915
|
:last_modified_date,
|
2875
2916
|
:version)
|
2917
|
+
SENSITIVE = []
|
2876
2918
|
include Aws::Structure
|
2877
2919
|
end
|
2878
2920
|
|
@@ -2890,6 +2932,7 @@ module Aws::Pinpoint
|
|
2890
2932
|
#
|
2891
2933
|
class ChannelsResponse < Struct.new(
|
2892
2934
|
:channels)
|
2935
|
+
SENSITIVE = []
|
2893
2936
|
include Aws::Structure
|
2894
2937
|
end
|
2895
2938
|
|
@@ -3012,6 +3055,7 @@ module Aws::Pinpoint
|
|
3012
3055
|
class Condition < Struct.new(
|
3013
3056
|
:conditions,
|
3014
3057
|
:operator)
|
3058
|
+
SENSITIVE = []
|
3015
3059
|
include Aws::Structure
|
3016
3060
|
end
|
3017
3061
|
|
@@ -3155,6 +3199,7 @@ module Aws::Pinpoint
|
|
3155
3199
|
:evaluation_wait_time,
|
3156
3200
|
:false_activity,
|
3157
3201
|
:true_activity)
|
3202
|
+
SENSITIVE = []
|
3158
3203
|
include Aws::Structure
|
3159
3204
|
end
|
3160
3205
|
|
@@ -3179,6 +3224,7 @@ module Aws::Pinpoint
|
|
3179
3224
|
#
|
3180
3225
|
class CreateAppRequest < Struct.new(
|
3181
3226
|
:create_application_request)
|
3227
|
+
SENSITIVE = []
|
3182
3228
|
include Aws::Structure
|
3183
3229
|
end
|
3184
3230
|
|
@@ -3190,6 +3236,7 @@ module Aws::Pinpoint
|
|
3190
3236
|
#
|
3191
3237
|
class CreateAppResponse < Struct.new(
|
3192
3238
|
:application_response)
|
3239
|
+
SENSITIVE = []
|
3193
3240
|
include Aws::Structure
|
3194
3241
|
end
|
3195
3242
|
|
@@ -3222,6 +3269,7 @@ module Aws::Pinpoint
|
|
3222
3269
|
class CreateApplicationRequest < Struct.new(
|
3223
3270
|
:name,
|
3224
3271
|
:tags)
|
3272
|
+
SENSITIVE = []
|
3225
3273
|
include Aws::Structure
|
3226
3274
|
end
|
3227
3275
|
|
@@ -3555,6 +3603,7 @@ module Aws::Pinpoint
|
|
3555
3603
|
class CreateCampaignRequest < Struct.new(
|
3556
3604
|
:application_id,
|
3557
3605
|
:write_campaign_request)
|
3606
|
+
SENSITIVE = []
|
3558
3607
|
include Aws::Structure
|
3559
3608
|
end
|
3560
3609
|
|
@@ -3567,6 +3616,7 @@ module Aws::Pinpoint
|
|
3567
3616
|
#
|
3568
3617
|
class CreateCampaignResponse < Struct.new(
|
3569
3618
|
:campaign_response)
|
3619
|
+
SENSITIVE = []
|
3570
3620
|
include Aws::Structure
|
3571
3621
|
end
|
3572
3622
|
|
@@ -3601,6 +3651,7 @@ module Aws::Pinpoint
|
|
3601
3651
|
class CreateEmailTemplateRequest < Struct.new(
|
3602
3652
|
:email_template_request,
|
3603
3653
|
:template_name)
|
3654
|
+
SENSITIVE = []
|
3604
3655
|
include Aws::Structure
|
3605
3656
|
end
|
3606
3657
|
|
@@ -3612,6 +3663,7 @@ module Aws::Pinpoint
|
|
3612
3663
|
#
|
3613
3664
|
class CreateEmailTemplateResponse < Struct.new(
|
3614
3665
|
:create_template_message_body)
|
3666
|
+
SENSITIVE = []
|
3615
3667
|
include Aws::Structure
|
3616
3668
|
end
|
3617
3669
|
|
@@ -3641,6 +3693,7 @@ module Aws::Pinpoint
|
|
3641
3693
|
class CreateExportJobRequest < Struct.new(
|
3642
3694
|
:application_id,
|
3643
3695
|
:export_job_request)
|
3696
|
+
SENSITIVE = []
|
3644
3697
|
include Aws::Structure
|
3645
3698
|
end
|
3646
3699
|
|
@@ -3656,6 +3709,7 @@ module Aws::Pinpoint
|
|
3656
3709
|
#
|
3657
3710
|
class CreateExportJobResponse < Struct.new(
|
3658
3711
|
:export_job_response)
|
3712
|
+
SENSITIVE = []
|
3659
3713
|
include Aws::Structure
|
3660
3714
|
end
|
3661
3715
|
|
@@ -3689,6 +3743,7 @@ module Aws::Pinpoint
|
|
3689
3743
|
class CreateImportJobRequest < Struct.new(
|
3690
3744
|
:application_id,
|
3691
3745
|
:import_job_request)
|
3746
|
+
SENSITIVE = []
|
3692
3747
|
include Aws::Structure
|
3693
3748
|
end
|
3694
3749
|
|
@@ -3704,6 +3759,7 @@ module Aws::Pinpoint
|
|
3704
3759
|
#
|
3705
3760
|
class CreateImportJobResponse < Struct.new(
|
3706
3761
|
:import_job_response)
|
3762
|
+
SENSITIVE = []
|
3707
3763
|
include Aws::Structure
|
3708
3764
|
end
|
3709
3765
|
|
@@ -4021,6 +4077,7 @@ module Aws::Pinpoint
|
|
4021
4077
|
class CreateJourneyRequest < Struct.new(
|
4022
4078
|
:application_id,
|
4023
4079
|
:write_journey_request)
|
4080
|
+
SENSITIVE = []
|
4024
4081
|
include Aws::Structure
|
4025
4082
|
end
|
4026
4083
|
|
@@ -4033,6 +4090,7 @@ module Aws::Pinpoint
|
|
4033
4090
|
#
|
4034
4091
|
class CreateJourneyResponse < Struct.new(
|
4035
4092
|
:journey_response)
|
4093
|
+
SENSITIVE = []
|
4036
4094
|
include Aws::Structure
|
4037
4095
|
end
|
4038
4096
|
|
@@ -4114,6 +4172,7 @@ module Aws::Pinpoint
|
|
4114
4172
|
class CreatePushTemplateRequest < Struct.new(
|
4115
4173
|
:push_notification_template_request,
|
4116
4174
|
:template_name)
|
4175
|
+
SENSITIVE = []
|
4117
4176
|
include Aws::Structure
|
4118
4177
|
end
|
4119
4178
|
|
@@ -4125,6 +4184,7 @@ module Aws::Pinpoint
|
|
4125
4184
|
#
|
4126
4185
|
class CreatePushTemplateResponse < Struct.new(
|
4127
4186
|
:create_template_message_body)
|
4187
|
+
SENSITIVE = []
|
4128
4188
|
include Aws::Structure
|
4129
4189
|
end
|
4130
4190
|
|
@@ -4269,6 +4329,7 @@ module Aws::Pinpoint
|
|
4269
4329
|
:recommendation_transformer_uri,
|
4270
4330
|
:recommendations_display_name,
|
4271
4331
|
:recommendations_per_message)
|
4332
|
+
SENSITIVE = []
|
4272
4333
|
include Aws::Structure
|
4273
4334
|
end
|
4274
4335
|
|
@@ -4300,6 +4361,7 @@ module Aws::Pinpoint
|
|
4300
4361
|
#
|
4301
4362
|
class CreateRecommenderConfigurationRequest < Struct.new(
|
4302
4363
|
:create_recommender_configuration)
|
4364
|
+
SENSITIVE = []
|
4303
4365
|
include Aws::Structure
|
4304
4366
|
end
|
4305
4367
|
|
@@ -4312,6 +4374,7 @@ module Aws::Pinpoint
|
|
4312
4374
|
#
|
4313
4375
|
class CreateRecommenderConfigurationResponse < Struct.new(
|
4314
4376
|
:recommender_configuration_response)
|
4377
|
+
SENSITIVE = []
|
4315
4378
|
include Aws::Structure
|
4316
4379
|
end
|
4317
4380
|
|
@@ -4489,6 +4552,7 @@ module Aws::Pinpoint
|
|
4489
4552
|
class CreateSegmentRequest < Struct.new(
|
4490
4553
|
:application_id,
|
4491
4554
|
:write_segment_request)
|
4555
|
+
SENSITIVE = []
|
4492
4556
|
include Aws::Structure
|
4493
4557
|
end
|
4494
4558
|
|
@@ -4501,6 +4565,7 @@ module Aws::Pinpoint
|
|
4501
4565
|
#
|
4502
4566
|
class CreateSegmentResponse < Struct.new(
|
4503
4567
|
:segment_response)
|
4568
|
+
SENSITIVE = []
|
4504
4569
|
include Aws::Structure
|
4505
4570
|
end
|
4506
4571
|
|
@@ -4533,6 +4598,7 @@ module Aws::Pinpoint
|
|
4533
4598
|
class CreateSmsTemplateRequest < Struct.new(
|
4534
4599
|
:sms_template_request,
|
4535
4600
|
:template_name)
|
4601
|
+
SENSITIVE = []
|
4536
4602
|
include Aws::Structure
|
4537
4603
|
end
|
4538
4604
|
|
@@ -4544,6 +4610,7 @@ module Aws::Pinpoint
|
|
4544
4610
|
#
|
4545
4611
|
class CreateSmsTemplateResponse < Struct.new(
|
4546
4612
|
:create_template_message_body)
|
4613
|
+
SENSITIVE = []
|
4547
4614
|
include Aws::Structure
|
4548
4615
|
end
|
4549
4616
|
|
@@ -4570,6 +4637,7 @@ module Aws::Pinpoint
|
|
4570
4637
|
:arn,
|
4571
4638
|
:message,
|
4572
4639
|
:request_id)
|
4640
|
+
SENSITIVE = []
|
4573
4641
|
include Aws::Structure
|
4574
4642
|
end
|
4575
4643
|
|
@@ -4603,6 +4671,7 @@ module Aws::Pinpoint
|
|
4603
4671
|
class CreateVoiceTemplateRequest < Struct.new(
|
4604
4672
|
:template_name,
|
4605
4673
|
:voice_template_request)
|
4674
|
+
SENSITIVE = []
|
4606
4675
|
include Aws::Structure
|
4607
4676
|
end
|
4608
4677
|
|
@@ -4614,6 +4683,7 @@ module Aws::Pinpoint
|
|
4614
4683
|
#
|
4615
4684
|
class CreateVoiceTemplateResponse < Struct.new(
|
4616
4685
|
:create_template_message_body)
|
4686
|
+
SENSITIVE = []
|
4617
4687
|
include Aws::Structure
|
4618
4688
|
end
|
4619
4689
|
|
@@ -4653,6 +4723,7 @@ module Aws::Pinpoint
|
|
4653
4723
|
class CustomDeliveryConfiguration < Struct.new(
|
4654
4724
|
:delivery_uri,
|
4655
4725
|
:endpoint_types)
|
4726
|
+
SENSITIVE = []
|
4656
4727
|
include Aws::Structure
|
4657
4728
|
end
|
4658
4729
|
|
@@ -4733,6 +4804,7 @@ module Aws::Pinpoint
|
|
4733
4804
|
:next_activity,
|
4734
4805
|
:template_name,
|
4735
4806
|
:template_version)
|
4807
|
+
SENSITIVE = []
|
4736
4808
|
include Aws::Structure
|
4737
4809
|
end
|
4738
4810
|
|
@@ -4762,6 +4834,7 @@ module Aws::Pinpoint
|
|
4762
4834
|
class DefaultMessage < Struct.new(
|
4763
4835
|
:body,
|
4764
4836
|
:substitutions)
|
4837
|
+
SENSITIVE = []
|
4765
4838
|
include Aws::Structure
|
4766
4839
|
end
|
4767
4840
|
|
@@ -4845,6 +4918,7 @@ module Aws::Pinpoint
|
|
4845
4918
|
:substitutions,
|
4846
4919
|
:title,
|
4847
4920
|
:url)
|
4921
|
+
SENSITIVE = []
|
4848
4922
|
include Aws::Structure
|
4849
4923
|
end
|
4850
4924
|
|
@@ -4917,6 +4991,7 @@ module Aws::Pinpoint
|
|
4917
4991
|
:sound,
|
4918
4992
|
:title,
|
4919
4993
|
:url)
|
4994
|
+
SENSITIVE = []
|
4920
4995
|
include Aws::Structure
|
4921
4996
|
end
|
4922
4997
|
|
@@ -4934,6 +5009,7 @@ module Aws::Pinpoint
|
|
4934
5009
|
#
|
4935
5010
|
class DeleteAdmChannelRequest < Struct.new(
|
4936
5011
|
:application_id)
|
5012
|
+
SENSITIVE = []
|
4937
5013
|
include Aws::Structure
|
4938
5014
|
end
|
4939
5015
|
|
@@ -4946,6 +5022,7 @@ module Aws::Pinpoint
|
|
4946
5022
|
#
|
4947
5023
|
class DeleteAdmChannelResponse < Struct.new(
|
4948
5024
|
:adm_channel_response)
|
5025
|
+
SENSITIVE = []
|
4949
5026
|
include Aws::Structure
|
4950
5027
|
end
|
4951
5028
|
|
@@ -4963,6 +5040,7 @@ module Aws::Pinpoint
|
|
4963
5040
|
#
|
4964
5041
|
class DeleteApnsChannelRequest < Struct.new(
|
4965
5042
|
:application_id)
|
5043
|
+
SENSITIVE = []
|
4966
5044
|
include Aws::Structure
|
4967
5045
|
end
|
4968
5046
|
|
@@ -4975,6 +5053,7 @@ module Aws::Pinpoint
|
|
4975
5053
|
#
|
4976
5054
|
class DeleteApnsChannelResponse < Struct.new(
|
4977
5055
|
:apns_channel_response)
|
5056
|
+
SENSITIVE = []
|
4978
5057
|
include Aws::Structure
|
4979
5058
|
end
|
4980
5059
|
|
@@ -4992,6 +5071,7 @@ module Aws::Pinpoint
|
|
4992
5071
|
#
|
4993
5072
|
class DeleteApnsSandboxChannelRequest < Struct.new(
|
4994
5073
|
:application_id)
|
5074
|
+
SENSITIVE = []
|
4995
5075
|
include Aws::Structure
|
4996
5076
|
end
|
4997
5077
|
|
@@ -5005,6 +5085,7 @@ module Aws::Pinpoint
|
|
5005
5085
|
#
|
5006
5086
|
class DeleteApnsSandboxChannelResponse < Struct.new(
|
5007
5087
|
:apns_sandbox_channel_response)
|
5088
|
+
SENSITIVE = []
|
5008
5089
|
include Aws::Structure
|
5009
5090
|
end
|
5010
5091
|
|
@@ -5022,6 +5103,7 @@ module Aws::Pinpoint
|
|
5022
5103
|
#
|
5023
5104
|
class DeleteApnsVoipChannelRequest < Struct.new(
|
5024
5105
|
:application_id)
|
5106
|
+
SENSITIVE = []
|
5025
5107
|
include Aws::Structure
|
5026
5108
|
end
|
5027
5109
|
|
@@ -5034,6 +5116,7 @@ module Aws::Pinpoint
|
|
5034
5116
|
#
|
5035
5117
|
class DeleteApnsVoipChannelResponse < Struct.new(
|
5036
5118
|
:apns_voip_channel_response)
|
5119
|
+
SENSITIVE = []
|
5037
5120
|
include Aws::Structure
|
5038
5121
|
end
|
5039
5122
|
|
@@ -5051,6 +5134,7 @@ module Aws::Pinpoint
|
|
5051
5134
|
#
|
5052
5135
|
class DeleteApnsVoipSandboxChannelRequest < Struct.new(
|
5053
5136
|
:application_id)
|
5137
|
+
SENSITIVE = []
|
5054
5138
|
include Aws::Structure
|
5055
5139
|
end
|
5056
5140
|
|
@@ -5064,6 +5148,7 @@ module Aws::Pinpoint
|
|
5064
5148
|
#
|
5065
5149
|
class DeleteApnsVoipSandboxChannelResponse < Struct.new(
|
5066
5150
|
:apns_voip_sandbox_channel_response)
|
5151
|
+
SENSITIVE = []
|
5067
5152
|
include Aws::Structure
|
5068
5153
|
end
|
5069
5154
|
|
@@ -5081,6 +5166,7 @@ module Aws::Pinpoint
|
|
5081
5166
|
#
|
5082
5167
|
class DeleteAppRequest < Struct.new(
|
5083
5168
|
:application_id)
|
5169
|
+
SENSITIVE = []
|
5084
5170
|
include Aws::Structure
|
5085
5171
|
end
|
5086
5172
|
|
@@ -5092,6 +5178,7 @@ module Aws::Pinpoint
|
|
5092
5178
|
#
|
5093
5179
|
class DeleteAppResponse < Struct.new(
|
5094
5180
|
:application_response)
|
5181
|
+
SENSITIVE = []
|
5095
5182
|
include Aws::Structure
|
5096
5183
|
end
|
5097
5184
|
|
@@ -5109,6 +5196,7 @@ module Aws::Pinpoint
|
|
5109
5196
|
#
|
5110
5197
|
class DeleteBaiduChannelRequest < Struct.new(
|
5111
5198
|
:application_id)
|
5199
|
+
SENSITIVE = []
|
5112
5200
|
include Aws::Structure
|
5113
5201
|
end
|
5114
5202
|
|
@@ -5121,6 +5209,7 @@ module Aws::Pinpoint
|
|
5121
5209
|
#
|
5122
5210
|
class DeleteBaiduChannelResponse < Struct.new(
|
5123
5211
|
:baidu_channel_response)
|
5212
|
+
SENSITIVE = []
|
5124
5213
|
include Aws::Structure
|
5125
5214
|
end
|
5126
5215
|
|
@@ -5143,6 +5232,7 @@ module Aws::Pinpoint
|
|
5143
5232
|
class DeleteCampaignRequest < Struct.new(
|
5144
5233
|
:application_id,
|
5145
5234
|
:campaign_id)
|
5235
|
+
SENSITIVE = []
|
5146
5236
|
include Aws::Structure
|
5147
5237
|
end
|
5148
5238
|
|
@@ -5155,6 +5245,7 @@ module Aws::Pinpoint
|
|
5155
5245
|
#
|
5156
5246
|
class DeleteCampaignResponse < Struct.new(
|
5157
5247
|
:campaign_response)
|
5248
|
+
SENSITIVE = []
|
5158
5249
|
include Aws::Structure
|
5159
5250
|
end
|
5160
5251
|
|
@@ -5172,6 +5263,7 @@ module Aws::Pinpoint
|
|
5172
5263
|
#
|
5173
5264
|
class DeleteEmailChannelRequest < Struct.new(
|
5174
5265
|
:application_id)
|
5266
|
+
SENSITIVE = []
|
5175
5267
|
include Aws::Structure
|
5176
5268
|
end
|
5177
5269
|
|
@@ -5184,6 +5276,7 @@ module Aws::Pinpoint
|
|
5184
5276
|
#
|
5185
5277
|
class DeleteEmailChannelResponse < Struct.new(
|
5186
5278
|
:email_channel_response)
|
5279
|
+
SENSITIVE = []
|
5187
5280
|
include Aws::Structure
|
5188
5281
|
end
|
5189
5282
|
|
@@ -5206,6 +5299,7 @@ module Aws::Pinpoint
|
|
5206
5299
|
class DeleteEmailTemplateRequest < Struct.new(
|
5207
5300
|
:template_name,
|
5208
5301
|
:version)
|
5302
|
+
SENSITIVE = []
|
5209
5303
|
include Aws::Structure
|
5210
5304
|
end
|
5211
5305
|
|
@@ -5217,6 +5311,7 @@ module Aws::Pinpoint
|
|
5217
5311
|
#
|
5218
5312
|
class DeleteEmailTemplateResponse < Struct.new(
|
5219
5313
|
:message_body)
|
5314
|
+
SENSITIVE = []
|
5220
5315
|
include Aws::Structure
|
5221
5316
|
end
|
5222
5317
|
|
@@ -5239,6 +5334,7 @@ module Aws::Pinpoint
|
|
5239
5334
|
class DeleteEndpointRequest < Struct.new(
|
5240
5335
|
:application_id,
|
5241
5336
|
:endpoint_id)
|
5337
|
+
SENSITIVE = []
|
5242
5338
|
include Aws::Structure
|
5243
5339
|
end
|
5244
5340
|
|
@@ -5251,6 +5347,7 @@ module Aws::Pinpoint
|
|
5251
5347
|
#
|
5252
5348
|
class DeleteEndpointResponse < Struct.new(
|
5253
5349
|
:endpoint_response)
|
5350
|
+
SENSITIVE = []
|
5254
5351
|
include Aws::Structure
|
5255
5352
|
end
|
5256
5353
|
|
@@ -5268,6 +5365,7 @@ module Aws::Pinpoint
|
|
5268
5365
|
#
|
5269
5366
|
class DeleteEventStreamRequest < Struct.new(
|
5270
5367
|
:application_id)
|
5368
|
+
SENSITIVE = []
|
5271
5369
|
include Aws::Structure
|
5272
5370
|
end
|
5273
5371
|
|
@@ -5280,6 +5378,7 @@ module Aws::Pinpoint
|
|
5280
5378
|
#
|
5281
5379
|
class DeleteEventStreamResponse < Struct.new(
|
5282
5380
|
:event_stream)
|
5381
|
+
SENSITIVE = []
|
5283
5382
|
include Aws::Structure
|
5284
5383
|
end
|
5285
5384
|
|
@@ -5297,6 +5396,7 @@ module Aws::Pinpoint
|
|
5297
5396
|
#
|
5298
5397
|
class DeleteGcmChannelRequest < Struct.new(
|
5299
5398
|
:application_id)
|
5399
|
+
SENSITIVE = []
|
5300
5400
|
include Aws::Structure
|
5301
5401
|
end
|
5302
5402
|
|
@@ -5311,6 +5411,7 @@ module Aws::Pinpoint
|
|
5311
5411
|
#
|
5312
5412
|
class DeleteGcmChannelResponse < Struct.new(
|
5313
5413
|
:gcm_channel_response)
|
5414
|
+
SENSITIVE = []
|
5314
5415
|
include Aws::Structure
|
5315
5416
|
end
|
5316
5417
|
|
@@ -5333,6 +5434,7 @@ module Aws::Pinpoint
|
|
5333
5434
|
class DeleteJourneyRequest < Struct.new(
|
5334
5435
|
:application_id,
|
5335
5436
|
:journey_id)
|
5437
|
+
SENSITIVE = []
|
5336
5438
|
include Aws::Structure
|
5337
5439
|
end
|
5338
5440
|
|
@@ -5345,6 +5447,7 @@ module Aws::Pinpoint
|
|
5345
5447
|
#
|
5346
5448
|
class DeleteJourneyResponse < Struct.new(
|
5347
5449
|
:journey_response)
|
5450
|
+
SENSITIVE = []
|
5348
5451
|
include Aws::Structure
|
5349
5452
|
end
|
5350
5453
|
|
@@ -5367,6 +5470,7 @@ module Aws::Pinpoint
|
|
5367
5470
|
class DeletePushTemplateRequest < Struct.new(
|
5368
5471
|
:template_name,
|
5369
5472
|
:version)
|
5473
|
+
SENSITIVE = []
|
5370
5474
|
include Aws::Structure
|
5371
5475
|
end
|
5372
5476
|
|
@@ -5378,6 +5482,7 @@ module Aws::Pinpoint
|
|
5378
5482
|
#
|
5379
5483
|
class DeletePushTemplateResponse < Struct.new(
|
5380
5484
|
:message_body)
|
5485
|
+
SENSITIVE = []
|
5381
5486
|
include Aws::Structure
|
5382
5487
|
end
|
5383
5488
|
|
@@ -5395,6 +5500,7 @@ module Aws::Pinpoint
|
|
5395
5500
|
#
|
5396
5501
|
class DeleteRecommenderConfigurationRequest < Struct.new(
|
5397
5502
|
:recommender_id)
|
5503
|
+
SENSITIVE = []
|
5398
5504
|
include Aws::Structure
|
5399
5505
|
end
|
5400
5506
|
|
@@ -5407,6 +5513,7 @@ module Aws::Pinpoint
|
|
5407
5513
|
#
|
5408
5514
|
class DeleteRecommenderConfigurationResponse < Struct.new(
|
5409
5515
|
:recommender_configuration_response)
|
5516
|
+
SENSITIVE = []
|
5410
5517
|
include Aws::Structure
|
5411
5518
|
end
|
5412
5519
|
|
@@ -5429,6 +5536,7 @@ module Aws::Pinpoint
|
|
5429
5536
|
class DeleteSegmentRequest < Struct.new(
|
5430
5537
|
:application_id,
|
5431
5538
|
:segment_id)
|
5539
|
+
SENSITIVE = []
|
5432
5540
|
include Aws::Structure
|
5433
5541
|
end
|
5434
5542
|
|
@@ -5441,6 +5549,7 @@ module Aws::Pinpoint
|
|
5441
5549
|
#
|
5442
5550
|
class DeleteSegmentResponse < Struct.new(
|
5443
5551
|
:segment_response)
|
5552
|
+
SENSITIVE = []
|
5444
5553
|
include Aws::Structure
|
5445
5554
|
end
|
5446
5555
|
|
@@ -5458,6 +5567,7 @@ module Aws::Pinpoint
|
|
5458
5567
|
#
|
5459
5568
|
class DeleteSmsChannelRequest < Struct.new(
|
5460
5569
|
:application_id)
|
5570
|
+
SENSITIVE = []
|
5461
5571
|
include Aws::Structure
|
5462
5572
|
end
|
5463
5573
|
|
@@ -5470,6 +5580,7 @@ module Aws::Pinpoint
|
|
5470
5580
|
#
|
5471
5581
|
class DeleteSmsChannelResponse < Struct.new(
|
5472
5582
|
:sms_channel_response)
|
5583
|
+
SENSITIVE = []
|
5473
5584
|
include Aws::Structure
|
5474
5585
|
end
|
5475
5586
|
|
@@ -5492,6 +5603,7 @@ module Aws::Pinpoint
|
|
5492
5603
|
class DeleteSmsTemplateRequest < Struct.new(
|
5493
5604
|
:template_name,
|
5494
5605
|
:version)
|
5606
|
+
SENSITIVE = []
|
5495
5607
|
include Aws::Structure
|
5496
5608
|
end
|
5497
5609
|
|
@@ -5503,6 +5615,7 @@ module Aws::Pinpoint
|
|
5503
5615
|
#
|
5504
5616
|
class DeleteSmsTemplateResponse < Struct.new(
|
5505
5617
|
:message_body)
|
5618
|
+
SENSITIVE = []
|
5506
5619
|
include Aws::Structure
|
5507
5620
|
end
|
5508
5621
|
|
@@ -5525,6 +5638,7 @@ module Aws::Pinpoint
|
|
5525
5638
|
class DeleteUserEndpointsRequest < Struct.new(
|
5526
5639
|
:application_id,
|
5527
5640
|
:user_id)
|
5641
|
+
SENSITIVE = []
|
5528
5642
|
include Aws::Structure
|
5529
5643
|
end
|
5530
5644
|
|
@@ -5537,6 +5651,7 @@ module Aws::Pinpoint
|
|
5537
5651
|
#
|
5538
5652
|
class DeleteUserEndpointsResponse < Struct.new(
|
5539
5653
|
:endpoints_response)
|
5654
|
+
SENSITIVE = []
|
5540
5655
|
include Aws::Structure
|
5541
5656
|
end
|
5542
5657
|
|
@@ -5554,6 +5669,7 @@ module Aws::Pinpoint
|
|
5554
5669
|
#
|
5555
5670
|
class DeleteVoiceChannelRequest < Struct.new(
|
5556
5671
|
:application_id)
|
5672
|
+
SENSITIVE = []
|
5557
5673
|
include Aws::Structure
|
5558
5674
|
end
|
5559
5675
|
|
@@ -5566,6 +5682,7 @@ module Aws::Pinpoint
|
|
5566
5682
|
#
|
5567
5683
|
class DeleteVoiceChannelResponse < Struct.new(
|
5568
5684
|
:voice_channel_response)
|
5685
|
+
SENSITIVE = []
|
5569
5686
|
include Aws::Structure
|
5570
5687
|
end
|
5571
5688
|
|
@@ -5588,6 +5705,7 @@ module Aws::Pinpoint
|
|
5588
5705
|
class DeleteVoiceTemplateRequest < Struct.new(
|
5589
5706
|
:template_name,
|
5590
5707
|
:version)
|
5708
|
+
SENSITIVE = []
|
5591
5709
|
include Aws::Structure
|
5592
5710
|
end
|
5593
5711
|
|
@@ -5599,6 +5717,7 @@ module Aws::Pinpoint
|
|
5599
5717
|
#
|
5600
5718
|
class DeleteVoiceTemplateResponse < Struct.new(
|
5601
5719
|
:message_body)
|
5720
|
+
SENSITIVE = []
|
5602
5721
|
include Aws::Structure
|
5603
5722
|
end
|
5604
5723
|
|
@@ -5827,6 +5946,7 @@ module Aws::Pinpoint
|
|
5827
5946
|
:gcm_message,
|
5828
5947
|
:sms_message,
|
5829
5948
|
:voice_message)
|
5949
|
+
SENSITIVE = []
|
5830
5950
|
include Aws::Structure
|
5831
5951
|
end
|
5832
5952
|
|
@@ -5882,6 +6002,7 @@ module Aws::Pinpoint
|
|
5882
6002
|
:from_address,
|
5883
6003
|
:identity,
|
5884
6004
|
:role_arn)
|
6005
|
+
SENSITIVE = []
|
5885
6006
|
include Aws::Structure
|
5886
6007
|
end
|
5887
6008
|
|
@@ -5983,6 +6104,7 @@ module Aws::Pinpoint
|
|
5983
6104
|
:platform,
|
5984
6105
|
:role_arn,
|
5985
6106
|
:version)
|
6107
|
+
SENSITIVE = []
|
5986
6108
|
include Aws::Structure
|
5987
6109
|
end
|
5988
6110
|
|
@@ -6062,6 +6184,7 @@ module Aws::Pinpoint
|
|
6062
6184
|
:reply_to_addresses,
|
6063
6185
|
:simple_email,
|
6064
6186
|
:substitutions)
|
6187
|
+
SENSITIVE = []
|
6065
6188
|
include Aws::Structure
|
6066
6189
|
end
|
6067
6190
|
|
@@ -6119,6 +6242,7 @@ module Aws::Pinpoint
|
|
6119
6242
|
:next_activity,
|
6120
6243
|
:template_name,
|
6121
6244
|
:template_version)
|
6245
|
+
SENSITIVE = []
|
6122
6246
|
include Aws::Structure
|
6123
6247
|
end
|
6124
6248
|
|
@@ -6198,6 +6322,7 @@ module Aws::Pinpoint
|
|
6198
6322
|
:tags,
|
6199
6323
|
:template_description,
|
6200
6324
|
:text_part)
|
6325
|
+
SENSITIVE = []
|
6201
6326
|
include Aws::Structure
|
6202
6327
|
end
|
6203
6328
|
|
@@ -6287,6 +6412,7 @@ module Aws::Pinpoint
|
|
6287
6412
|
:template_type,
|
6288
6413
|
:text_part,
|
6289
6414
|
:version)
|
6415
|
+
SENSITIVE = []
|
6290
6416
|
include Aws::Structure
|
6291
6417
|
end
|
6292
6418
|
|
@@ -6437,6 +6563,7 @@ module Aws::Pinpoint
|
|
6437
6563
|
:opt_out,
|
6438
6564
|
:request_id,
|
6439
6565
|
:user)
|
6566
|
+
SENSITIVE = []
|
6440
6567
|
include Aws::Structure
|
6441
6568
|
end
|
6442
6569
|
|
@@ -6500,6 +6627,7 @@ module Aws::Pinpoint
|
|
6500
6627
|
#
|
6501
6628
|
class EndpointBatchRequest < Struct.new(
|
6502
6629
|
:item)
|
6630
|
+
SENSITIVE = []
|
6503
6631
|
include Aws::Structure
|
6504
6632
|
end
|
6505
6633
|
|
@@ -6567,6 +6695,7 @@ module Aws::Pinpoint
|
|
6567
6695
|
:platform,
|
6568
6696
|
:platform_version,
|
6569
6697
|
:timezone)
|
6698
|
+
SENSITIVE = []
|
6570
6699
|
include Aws::Structure
|
6571
6700
|
end
|
6572
6701
|
|
@@ -6588,6 +6717,7 @@ module Aws::Pinpoint
|
|
6588
6717
|
class EndpointItemResponse < Struct.new(
|
6589
6718
|
:message,
|
6590
6719
|
:status_code)
|
6720
|
+
SENSITIVE = []
|
6591
6721
|
include Aws::Structure
|
6592
6722
|
end
|
6593
6723
|
|
@@ -6643,6 +6773,7 @@ module Aws::Pinpoint
|
|
6643
6773
|
:longitude,
|
6644
6774
|
:postal_code,
|
6645
6775
|
:region)
|
6776
|
+
SENSITIVE = []
|
6646
6777
|
include Aws::Structure
|
6647
6778
|
end
|
6648
6779
|
|
@@ -6709,6 +6840,7 @@ module Aws::Pinpoint
|
|
6709
6840
|
:status_code,
|
6710
6841
|
:status_message,
|
6711
6842
|
:updated_token)
|
6843
|
+
SENSITIVE = []
|
6712
6844
|
include Aws::Structure
|
6713
6845
|
end
|
6714
6846
|
|
@@ -6851,6 +6983,7 @@ module Aws::Pinpoint
|
|
6851
6983
|
:opt_out,
|
6852
6984
|
:request_id,
|
6853
6985
|
:user)
|
6986
|
+
SENSITIVE = []
|
6854
6987
|
include Aws::Structure
|
6855
6988
|
end
|
6856
6989
|
|
@@ -6974,6 +7107,7 @@ module Aws::Pinpoint
|
|
6974
7107
|
:opt_out,
|
6975
7108
|
:request_id,
|
6976
7109
|
:user)
|
7110
|
+
SENSITIVE = []
|
6977
7111
|
include Aws::Structure
|
6978
7112
|
end
|
6979
7113
|
|
@@ -7035,6 +7169,7 @@ module Aws::Pinpoint
|
|
7035
7169
|
:raw_content,
|
7036
7170
|
:substitutions,
|
7037
7171
|
:title_override)
|
7172
|
+
SENSITIVE = []
|
7038
7173
|
include Aws::Structure
|
7039
7174
|
end
|
7040
7175
|
|
@@ -7076,6 +7211,7 @@ module Aws::Pinpoint
|
|
7076
7211
|
class EndpointUser < Struct.new(
|
7077
7212
|
:user_attributes,
|
7078
7213
|
:user_id)
|
7214
|
+
SENSITIVE = []
|
7079
7215
|
include Aws::Structure
|
7080
7216
|
end
|
7081
7217
|
|
@@ -7091,6 +7227,7 @@ module Aws::Pinpoint
|
|
7091
7227
|
#
|
7092
7228
|
class EndpointsResponse < Struct.new(
|
7093
7229
|
:item)
|
7230
|
+
SENSITIVE = []
|
7094
7231
|
include Aws::Structure
|
7095
7232
|
end
|
7096
7233
|
|
@@ -7175,6 +7312,7 @@ module Aws::Pinpoint
|
|
7175
7312
|
:sdk_name,
|
7176
7313
|
:session,
|
7177
7314
|
:timestamp)
|
7315
|
+
SENSITIVE = []
|
7178
7316
|
include Aws::Structure
|
7179
7317
|
end
|
7180
7318
|
|
@@ -7220,6 +7358,7 @@ module Aws::Pinpoint
|
|
7220
7358
|
class EventCondition < Struct.new(
|
7221
7359
|
:dimensions,
|
7222
7360
|
:message_activity)
|
7361
|
+
SENSITIVE = []
|
7223
7362
|
include Aws::Structure
|
7224
7363
|
end
|
7225
7364
|
|
@@ -7279,6 +7418,7 @@ module Aws::Pinpoint
|
|
7279
7418
|
:attributes,
|
7280
7419
|
:event_type,
|
7281
7420
|
:metrics)
|
7421
|
+
SENSITIVE = []
|
7282
7422
|
include Aws::Structure
|
7283
7423
|
end
|
7284
7424
|
|
@@ -7301,6 +7441,7 @@ module Aws::Pinpoint
|
|
7301
7441
|
class EventItemResponse < Struct.new(
|
7302
7442
|
:message,
|
7303
7443
|
:status_code)
|
7444
|
+
SENSITIVE = []
|
7304
7445
|
include Aws::Structure
|
7305
7446
|
end
|
7306
7447
|
|
@@ -7355,6 +7496,7 @@ module Aws::Pinpoint
|
|
7355
7496
|
:last_modified_date,
|
7356
7497
|
:last_updated_by,
|
7357
7498
|
:role_arn)
|
7499
|
+
SENSITIVE = []
|
7358
7500
|
include Aws::Structure
|
7359
7501
|
end
|
7360
7502
|
|
@@ -7441,6 +7583,7 @@ module Aws::Pinpoint
|
|
7441
7583
|
class EventsBatch < Struct.new(
|
7442
7584
|
:endpoint,
|
7443
7585
|
:events)
|
7586
|
+
SENSITIVE = []
|
7444
7587
|
include Aws::Structure
|
7445
7588
|
end
|
7446
7589
|
|
@@ -7527,6 +7670,7 @@ module Aws::Pinpoint
|
|
7527
7670
|
#
|
7528
7671
|
class EventsRequest < Struct.new(
|
7529
7672
|
:batch_item)
|
7673
|
+
SENSITIVE = []
|
7530
7674
|
include Aws::Structure
|
7531
7675
|
end
|
7532
7676
|
|
@@ -7546,6 +7690,7 @@ module Aws::Pinpoint
|
|
7546
7690
|
#
|
7547
7691
|
class EventsResponse < Struct.new(
|
7548
7692
|
:results)
|
7693
|
+
SENSITIVE = []
|
7549
7694
|
include Aws::Structure
|
7550
7695
|
end
|
7551
7696
|
|
@@ -7595,6 +7740,7 @@ module Aws::Pinpoint
|
|
7595
7740
|
:s3_url_prefix,
|
7596
7741
|
:segment_id,
|
7597
7742
|
:segment_version)
|
7743
|
+
SENSITIVE = []
|
7598
7744
|
include Aws::Structure
|
7599
7745
|
end
|
7600
7746
|
|
@@ -7637,6 +7783,7 @@ module Aws::Pinpoint
|
|
7637
7783
|
:s3_url_prefix,
|
7638
7784
|
:segment_id,
|
7639
7785
|
:segment_version)
|
7786
|
+
SENSITIVE = []
|
7640
7787
|
include Aws::Structure
|
7641
7788
|
end
|
7642
7789
|
|
@@ -7724,6 +7871,7 @@ module Aws::Pinpoint
|
|
7724
7871
|
:total_pieces,
|
7725
7872
|
:total_processed,
|
7726
7873
|
:type)
|
7874
|
+
SENSITIVE = []
|
7727
7875
|
include Aws::Structure
|
7728
7876
|
end
|
7729
7877
|
|
@@ -7748,6 +7896,7 @@ module Aws::Pinpoint
|
|
7748
7896
|
class ExportJobsResponse < Struct.new(
|
7749
7897
|
:item,
|
7750
7898
|
:next_token)
|
7899
|
+
SENSITIVE = []
|
7751
7900
|
include Aws::Structure
|
7752
7901
|
end
|
7753
7902
|
|
@@ -7764,6 +7913,7 @@ module Aws::Pinpoint
|
|
7764
7913
|
class ForbiddenException < Struct.new(
|
7765
7914
|
:message,
|
7766
7915
|
:request_id)
|
7916
|
+
SENSITIVE = []
|
7767
7917
|
include Aws::Structure
|
7768
7918
|
end
|
7769
7919
|
|
@@ -7794,6 +7944,7 @@ module Aws::Pinpoint
|
|
7794
7944
|
class GCMChannelRequest < Struct.new(
|
7795
7945
|
:api_key,
|
7796
7946
|
:enabled)
|
7947
|
+
SENSITIVE = []
|
7797
7948
|
include Aws::Structure
|
7798
7949
|
end
|
7799
7950
|
|
@@ -7865,6 +8016,7 @@ module Aws::Pinpoint
|
|
7865
8016
|
:last_modified_date,
|
7866
8017
|
:platform,
|
7867
8018
|
:version)
|
8019
|
+
SENSITIVE = []
|
7868
8020
|
include Aws::Structure
|
7869
8021
|
end
|
7870
8022
|
|
@@ -8046,6 +8198,7 @@ module Aws::Pinpoint
|
|
8046
8198
|
:time_to_live,
|
8047
8199
|
:title,
|
8048
8200
|
:url)
|
8201
|
+
SENSITIVE = []
|
8049
8202
|
include Aws::Structure
|
8050
8203
|
end
|
8051
8204
|
|
@@ -8072,6 +8225,7 @@ module Aws::Pinpoint
|
|
8072
8225
|
class GPSCoordinates < Struct.new(
|
8073
8226
|
:latitude,
|
8074
8227
|
:longitude)
|
8228
|
+
SENSITIVE = []
|
8075
8229
|
include Aws::Structure
|
8076
8230
|
end
|
8077
8231
|
|
@@ -8102,6 +8256,7 @@ module Aws::Pinpoint
|
|
8102
8256
|
class GPSPointDimension < Struct.new(
|
8103
8257
|
:coordinates,
|
8104
8258
|
:range_in_kilometers)
|
8259
|
+
SENSITIVE = []
|
8105
8260
|
include Aws::Structure
|
8106
8261
|
end
|
8107
8262
|
|
@@ -8119,6 +8274,7 @@ module Aws::Pinpoint
|
|
8119
8274
|
#
|
8120
8275
|
class GetAdmChannelRequest < Struct.new(
|
8121
8276
|
:application_id)
|
8277
|
+
SENSITIVE = []
|
8122
8278
|
include Aws::Structure
|
8123
8279
|
end
|
8124
8280
|
|
@@ -8131,6 +8287,7 @@ module Aws::Pinpoint
|
|
8131
8287
|
#
|
8132
8288
|
class GetAdmChannelResponse < Struct.new(
|
8133
8289
|
:adm_channel_response)
|
8290
|
+
SENSITIVE = []
|
8134
8291
|
include Aws::Structure
|
8135
8292
|
end
|
8136
8293
|
|
@@ -8148,6 +8305,7 @@ module Aws::Pinpoint
|
|
8148
8305
|
#
|
8149
8306
|
class GetApnsChannelRequest < Struct.new(
|
8150
8307
|
:application_id)
|
8308
|
+
SENSITIVE = []
|
8151
8309
|
include Aws::Structure
|
8152
8310
|
end
|
8153
8311
|
|
@@ -8160,6 +8318,7 @@ module Aws::Pinpoint
|
|
8160
8318
|
#
|
8161
8319
|
class GetApnsChannelResponse < Struct.new(
|
8162
8320
|
:apns_channel_response)
|
8321
|
+
SENSITIVE = []
|
8163
8322
|
include Aws::Structure
|
8164
8323
|
end
|
8165
8324
|
|
@@ -8177,6 +8336,7 @@ module Aws::Pinpoint
|
|
8177
8336
|
#
|
8178
8337
|
class GetApnsSandboxChannelRequest < Struct.new(
|
8179
8338
|
:application_id)
|
8339
|
+
SENSITIVE = []
|
8180
8340
|
include Aws::Structure
|
8181
8341
|
end
|
8182
8342
|
|
@@ -8190,6 +8350,7 @@ module Aws::Pinpoint
|
|
8190
8350
|
#
|
8191
8351
|
class GetApnsSandboxChannelResponse < Struct.new(
|
8192
8352
|
:apns_sandbox_channel_response)
|
8353
|
+
SENSITIVE = []
|
8193
8354
|
include Aws::Structure
|
8194
8355
|
end
|
8195
8356
|
|
@@ -8207,6 +8368,7 @@ module Aws::Pinpoint
|
|
8207
8368
|
#
|
8208
8369
|
class GetApnsVoipChannelRequest < Struct.new(
|
8209
8370
|
:application_id)
|
8371
|
+
SENSITIVE = []
|
8210
8372
|
include Aws::Structure
|
8211
8373
|
end
|
8212
8374
|
|
@@ -8219,6 +8381,7 @@ module Aws::Pinpoint
|
|
8219
8381
|
#
|
8220
8382
|
class GetApnsVoipChannelResponse < Struct.new(
|
8221
8383
|
:apns_voip_channel_response)
|
8384
|
+
SENSITIVE = []
|
8222
8385
|
include Aws::Structure
|
8223
8386
|
end
|
8224
8387
|
|
@@ -8236,6 +8399,7 @@ module Aws::Pinpoint
|
|
8236
8399
|
#
|
8237
8400
|
class GetApnsVoipSandboxChannelRequest < Struct.new(
|
8238
8401
|
:application_id)
|
8402
|
+
SENSITIVE = []
|
8239
8403
|
include Aws::Structure
|
8240
8404
|
end
|
8241
8405
|
|
@@ -8249,6 +8413,7 @@ module Aws::Pinpoint
|
|
8249
8413
|
#
|
8250
8414
|
class GetApnsVoipSandboxChannelResponse < Struct.new(
|
8251
8415
|
:apns_voip_sandbox_channel_response)
|
8416
|
+
SENSITIVE = []
|
8252
8417
|
include Aws::Structure
|
8253
8418
|
end
|
8254
8419
|
|
@@ -8266,6 +8431,7 @@ module Aws::Pinpoint
|
|
8266
8431
|
#
|
8267
8432
|
class GetAppRequest < Struct.new(
|
8268
8433
|
:application_id)
|
8434
|
+
SENSITIVE = []
|
8269
8435
|
include Aws::Structure
|
8270
8436
|
end
|
8271
8437
|
|
@@ -8277,6 +8443,7 @@ module Aws::Pinpoint
|
|
8277
8443
|
#
|
8278
8444
|
class GetAppResponse < Struct.new(
|
8279
8445
|
:application_response)
|
8446
|
+
SENSITIVE = []
|
8280
8447
|
include Aws::Structure
|
8281
8448
|
end
|
8282
8449
|
|
@@ -8319,6 +8486,7 @@ module Aws::Pinpoint
|
|
8319
8486
|
:next_token,
|
8320
8487
|
:page_size,
|
8321
8488
|
:start_time)
|
8489
|
+
SENSITIVE = []
|
8322
8490
|
include Aws::Structure
|
8323
8491
|
end
|
8324
8492
|
|
@@ -8332,6 +8500,7 @@ module Aws::Pinpoint
|
|
8332
8500
|
#
|
8333
8501
|
class GetApplicationDateRangeKpiResponse < Struct.new(
|
8334
8502
|
:application_date_range_kpi_response)
|
8503
|
+
SENSITIVE = []
|
8335
8504
|
include Aws::Structure
|
8336
8505
|
end
|
8337
8506
|
|
@@ -8349,6 +8518,7 @@ module Aws::Pinpoint
|
|
8349
8518
|
#
|
8350
8519
|
class GetApplicationSettingsRequest < Struct.new(
|
8351
8520
|
:application_id)
|
8521
|
+
SENSITIVE = []
|
8352
8522
|
include Aws::Structure
|
8353
8523
|
end
|
8354
8524
|
|
@@ -8361,6 +8531,7 @@ module Aws::Pinpoint
|
|
8361
8531
|
#
|
8362
8532
|
class GetApplicationSettingsResponse < Struct.new(
|
8363
8533
|
:application_settings_resource)
|
8534
|
+
SENSITIVE = []
|
8364
8535
|
include Aws::Structure
|
8365
8536
|
end
|
8366
8537
|
|
@@ -8383,6 +8554,7 @@ module Aws::Pinpoint
|
|
8383
8554
|
class GetAppsRequest < Struct.new(
|
8384
8555
|
:page_size,
|
8385
8556
|
:token)
|
8557
|
+
SENSITIVE = []
|
8386
8558
|
include Aws::Structure
|
8387
8559
|
end
|
8388
8560
|
|
@@ -8394,6 +8566,7 @@ module Aws::Pinpoint
|
|
8394
8566
|
#
|
8395
8567
|
class GetAppsResponse < Struct.new(
|
8396
8568
|
:applications_response)
|
8569
|
+
SENSITIVE = []
|
8397
8570
|
include Aws::Structure
|
8398
8571
|
end
|
8399
8572
|
|
@@ -8411,6 +8584,7 @@ module Aws::Pinpoint
|
|
8411
8584
|
#
|
8412
8585
|
class GetBaiduChannelRequest < Struct.new(
|
8413
8586
|
:application_id)
|
8587
|
+
SENSITIVE = []
|
8414
8588
|
include Aws::Structure
|
8415
8589
|
end
|
8416
8590
|
|
@@ -8423,6 +8597,7 @@ module Aws::Pinpoint
|
|
8423
8597
|
#
|
8424
8598
|
class GetBaiduChannelResponse < Struct.new(
|
8425
8599
|
:baidu_channel_response)
|
8600
|
+
SENSITIVE = []
|
8426
8601
|
include Aws::Structure
|
8427
8602
|
end
|
8428
8603
|
|
@@ -8455,6 +8630,7 @@ module Aws::Pinpoint
|
|
8455
8630
|
:campaign_id,
|
8456
8631
|
:page_size,
|
8457
8632
|
:token)
|
8633
|
+
SENSITIVE = []
|
8458
8634
|
include Aws::Structure
|
8459
8635
|
end
|
8460
8636
|
|
@@ -8467,6 +8643,7 @@ module Aws::Pinpoint
|
|
8467
8643
|
#
|
8468
8644
|
class GetCampaignActivitiesResponse < Struct.new(
|
8469
8645
|
:activities_response)
|
8646
|
+
SENSITIVE = []
|
8470
8647
|
include Aws::Structure
|
8471
8648
|
end
|
8472
8649
|
|
@@ -8514,6 +8691,7 @@ module Aws::Pinpoint
|
|
8514
8691
|
:next_token,
|
8515
8692
|
:page_size,
|
8516
8693
|
:start_time)
|
8694
|
+
SENSITIVE = []
|
8517
8695
|
include Aws::Structure
|
8518
8696
|
end
|
8519
8697
|
|
@@ -8527,6 +8705,7 @@ module Aws::Pinpoint
|
|
8527
8705
|
#
|
8528
8706
|
class GetCampaignDateRangeKpiResponse < Struct.new(
|
8529
8707
|
:campaign_date_range_kpi_response)
|
8708
|
+
SENSITIVE = []
|
8530
8709
|
include Aws::Structure
|
8531
8710
|
end
|
8532
8711
|
|
@@ -8549,6 +8728,7 @@ module Aws::Pinpoint
|
|
8549
8728
|
class GetCampaignRequest < Struct.new(
|
8550
8729
|
:application_id,
|
8551
8730
|
:campaign_id)
|
8731
|
+
SENSITIVE = []
|
8552
8732
|
include Aws::Structure
|
8553
8733
|
end
|
8554
8734
|
|
@@ -8561,6 +8741,7 @@ module Aws::Pinpoint
|
|
8561
8741
|
#
|
8562
8742
|
class GetCampaignResponse < Struct.new(
|
8563
8743
|
:campaign_response)
|
8744
|
+
SENSITIVE = []
|
8564
8745
|
include Aws::Structure
|
8565
8746
|
end
|
8566
8747
|
|
@@ -8588,6 +8769,7 @@ module Aws::Pinpoint
|
|
8588
8769
|
:application_id,
|
8589
8770
|
:campaign_id,
|
8590
8771
|
:version)
|
8772
|
+
SENSITIVE = []
|
8591
8773
|
include Aws::Structure
|
8592
8774
|
end
|
8593
8775
|
|
@@ -8600,6 +8782,7 @@ module Aws::Pinpoint
|
|
8600
8782
|
#
|
8601
8783
|
class GetCampaignVersionResponse < Struct.new(
|
8602
8784
|
:campaign_response)
|
8785
|
+
SENSITIVE = []
|
8603
8786
|
include Aws::Structure
|
8604
8787
|
end
|
8605
8788
|
|
@@ -8632,6 +8815,7 @@ module Aws::Pinpoint
|
|
8632
8815
|
:campaign_id,
|
8633
8816
|
:page_size,
|
8634
8817
|
:token)
|
8818
|
+
SENSITIVE = []
|
8635
8819
|
include Aws::Structure
|
8636
8820
|
end
|
8637
8821
|
|
@@ -8644,6 +8828,7 @@ module Aws::Pinpoint
|
|
8644
8828
|
#
|
8645
8829
|
class GetCampaignVersionsResponse < Struct.new(
|
8646
8830
|
:campaigns_response)
|
8831
|
+
SENSITIVE = []
|
8647
8832
|
include Aws::Structure
|
8648
8833
|
end
|
8649
8834
|
|
@@ -8671,6 +8856,7 @@ module Aws::Pinpoint
|
|
8671
8856
|
:application_id,
|
8672
8857
|
:page_size,
|
8673
8858
|
:token)
|
8859
|
+
SENSITIVE = []
|
8674
8860
|
include Aws::Structure
|
8675
8861
|
end
|
8676
8862
|
|
@@ -8683,6 +8869,7 @@ module Aws::Pinpoint
|
|
8683
8869
|
#
|
8684
8870
|
class GetCampaignsResponse < Struct.new(
|
8685
8871
|
:campaigns_response)
|
8872
|
+
SENSITIVE = []
|
8686
8873
|
include Aws::Structure
|
8687
8874
|
end
|
8688
8875
|
|
@@ -8700,6 +8887,7 @@ module Aws::Pinpoint
|
|
8700
8887
|
#
|
8701
8888
|
class GetChannelsRequest < Struct.new(
|
8702
8889
|
:application_id)
|
8890
|
+
SENSITIVE = []
|
8703
8891
|
include Aws::Structure
|
8704
8892
|
end
|
8705
8893
|
|
@@ -8713,6 +8901,7 @@ module Aws::Pinpoint
|
|
8713
8901
|
#
|
8714
8902
|
class GetChannelsResponse < Struct.new(
|
8715
8903
|
:channels_response)
|
8904
|
+
SENSITIVE = []
|
8716
8905
|
include Aws::Structure
|
8717
8906
|
end
|
8718
8907
|
|
@@ -8730,6 +8919,7 @@ module Aws::Pinpoint
|
|
8730
8919
|
#
|
8731
8920
|
class GetEmailChannelRequest < Struct.new(
|
8732
8921
|
:application_id)
|
8922
|
+
SENSITIVE = []
|
8733
8923
|
include Aws::Structure
|
8734
8924
|
end
|
8735
8925
|
|
@@ -8742,6 +8932,7 @@ module Aws::Pinpoint
|
|
8742
8932
|
#
|
8743
8933
|
class GetEmailChannelResponse < Struct.new(
|
8744
8934
|
:email_channel_response)
|
8935
|
+
SENSITIVE = []
|
8745
8936
|
include Aws::Structure
|
8746
8937
|
end
|
8747
8938
|
|
@@ -8764,6 +8955,7 @@ module Aws::Pinpoint
|
|
8764
8955
|
class GetEmailTemplateRequest < Struct.new(
|
8765
8956
|
:template_name,
|
8766
8957
|
:version)
|
8958
|
+
SENSITIVE = []
|
8767
8959
|
include Aws::Structure
|
8768
8960
|
end
|
8769
8961
|
|
@@ -8777,6 +8969,7 @@ module Aws::Pinpoint
|
|
8777
8969
|
#
|
8778
8970
|
class GetEmailTemplateResponse < Struct.new(
|
8779
8971
|
:email_template_response)
|
8972
|
+
SENSITIVE = []
|
8780
8973
|
include Aws::Structure
|
8781
8974
|
end
|
8782
8975
|
|
@@ -8799,6 +8992,7 @@ module Aws::Pinpoint
|
|
8799
8992
|
class GetEndpointRequest < Struct.new(
|
8800
8993
|
:application_id,
|
8801
8994
|
:endpoint_id)
|
8995
|
+
SENSITIVE = []
|
8802
8996
|
include Aws::Structure
|
8803
8997
|
end
|
8804
8998
|
|
@@ -8811,6 +9005,7 @@ module Aws::Pinpoint
|
|
8811
9005
|
#
|
8812
9006
|
class GetEndpointResponse < Struct.new(
|
8813
9007
|
:endpoint_response)
|
9008
|
+
SENSITIVE = []
|
8814
9009
|
include Aws::Structure
|
8815
9010
|
end
|
8816
9011
|
|
@@ -8828,6 +9023,7 @@ module Aws::Pinpoint
|
|
8828
9023
|
#
|
8829
9024
|
class GetEventStreamRequest < Struct.new(
|
8830
9025
|
:application_id)
|
9026
|
+
SENSITIVE = []
|
8831
9027
|
include Aws::Structure
|
8832
9028
|
end
|
8833
9029
|
|
@@ -8840,6 +9036,7 @@ module Aws::Pinpoint
|
|
8840
9036
|
#
|
8841
9037
|
class GetEventStreamResponse < Struct.new(
|
8842
9038
|
:event_stream)
|
9039
|
+
SENSITIVE = []
|
8843
9040
|
include Aws::Structure
|
8844
9041
|
end
|
8845
9042
|
|
@@ -8862,6 +9059,7 @@ module Aws::Pinpoint
|
|
8862
9059
|
class GetExportJobRequest < Struct.new(
|
8863
9060
|
:application_id,
|
8864
9061
|
:job_id)
|
9062
|
+
SENSITIVE = []
|
8865
9063
|
include Aws::Structure
|
8866
9064
|
end
|
8867
9065
|
|
@@ -8877,6 +9075,7 @@ module Aws::Pinpoint
|
|
8877
9075
|
#
|
8878
9076
|
class GetExportJobResponse < Struct.new(
|
8879
9077
|
:export_job_response)
|
9078
|
+
SENSITIVE = []
|
8880
9079
|
include Aws::Structure
|
8881
9080
|
end
|
8882
9081
|
|
@@ -8904,6 +9103,7 @@ module Aws::Pinpoint
|
|
8904
9103
|
:application_id,
|
8905
9104
|
:page_size,
|
8906
9105
|
:token)
|
9106
|
+
SENSITIVE = []
|
8907
9107
|
include Aws::Structure
|
8908
9108
|
end
|
8909
9109
|
|
@@ -8917,6 +9117,7 @@ module Aws::Pinpoint
|
|
8917
9117
|
#
|
8918
9118
|
class GetExportJobsResponse < Struct.new(
|
8919
9119
|
:export_jobs_response)
|
9120
|
+
SENSITIVE = []
|
8920
9121
|
include Aws::Structure
|
8921
9122
|
end
|
8922
9123
|
|
@@ -8934,6 +9135,7 @@ module Aws::Pinpoint
|
|
8934
9135
|
#
|
8935
9136
|
class GetGcmChannelRequest < Struct.new(
|
8936
9137
|
:application_id)
|
9138
|
+
SENSITIVE = []
|
8937
9139
|
include Aws::Structure
|
8938
9140
|
end
|
8939
9141
|
|
@@ -8948,6 +9150,7 @@ module Aws::Pinpoint
|
|
8948
9150
|
#
|
8949
9151
|
class GetGcmChannelResponse < Struct.new(
|
8950
9152
|
:gcm_channel_response)
|
9153
|
+
SENSITIVE = []
|
8951
9154
|
include Aws::Structure
|
8952
9155
|
end
|
8953
9156
|
|
@@ -8970,6 +9173,7 @@ module Aws::Pinpoint
|
|
8970
9173
|
class GetImportJobRequest < Struct.new(
|
8971
9174
|
:application_id,
|
8972
9175
|
:job_id)
|
9176
|
+
SENSITIVE = []
|
8973
9177
|
include Aws::Structure
|
8974
9178
|
end
|
8975
9179
|
|
@@ -8985,6 +9189,7 @@ module Aws::Pinpoint
|
|
8985
9189
|
#
|
8986
9190
|
class GetImportJobResponse < Struct.new(
|
8987
9191
|
:import_job_response)
|
9192
|
+
SENSITIVE = []
|
8988
9193
|
include Aws::Structure
|
8989
9194
|
end
|
8990
9195
|
|
@@ -9012,6 +9217,7 @@ module Aws::Pinpoint
|
|
9012
9217
|
:application_id,
|
9013
9218
|
:page_size,
|
9014
9219
|
:token)
|
9220
|
+
SENSITIVE = []
|
9015
9221
|
include Aws::Structure
|
9016
9222
|
end
|
9017
9223
|
|
@@ -9026,6 +9232,7 @@ module Aws::Pinpoint
|
|
9026
9232
|
#
|
9027
9233
|
class GetImportJobsResponse < Struct.new(
|
9028
9234
|
:import_jobs_response)
|
9235
|
+
SENSITIVE = []
|
9029
9236
|
include Aws::Structure
|
9030
9237
|
end
|
9031
9238
|
|
@@ -9073,6 +9280,7 @@ module Aws::Pinpoint
|
|
9073
9280
|
:next_token,
|
9074
9281
|
:page_size,
|
9075
9282
|
:start_time)
|
9283
|
+
SENSITIVE = []
|
9076
9284
|
include Aws::Structure
|
9077
9285
|
end
|
9078
9286
|
|
@@ -9086,6 +9294,7 @@ module Aws::Pinpoint
|
|
9086
9294
|
#
|
9087
9295
|
class GetJourneyDateRangeKpiResponse < Struct.new(
|
9088
9296
|
:journey_date_range_kpi_response)
|
9297
|
+
SENSITIVE = []
|
9089
9298
|
include Aws::Structure
|
9090
9299
|
end
|
9091
9300
|
|
@@ -9123,6 +9332,7 @@ module Aws::Pinpoint
|
|
9123
9332
|
:journey_id,
|
9124
9333
|
:next_token,
|
9125
9334
|
:page_size)
|
9335
|
+
SENSITIVE = []
|
9126
9336
|
include Aws::Structure
|
9127
9337
|
end
|
9128
9338
|
|
@@ -9136,6 +9346,7 @@ module Aws::Pinpoint
|
|
9136
9346
|
#
|
9137
9347
|
class GetJourneyExecutionActivityMetricsResponse < Struct.new(
|
9138
9348
|
:journey_execution_activity_metrics_response)
|
9349
|
+
SENSITIVE = []
|
9139
9350
|
include Aws::Structure
|
9140
9351
|
end
|
9141
9352
|
|
@@ -9168,6 +9379,7 @@ module Aws::Pinpoint
|
|
9168
9379
|
:journey_id,
|
9169
9380
|
:next_token,
|
9170
9381
|
:page_size)
|
9382
|
+
SENSITIVE = []
|
9171
9383
|
include Aws::Structure
|
9172
9384
|
end
|
9173
9385
|
|
@@ -9181,6 +9393,7 @@ module Aws::Pinpoint
|
|
9181
9393
|
#
|
9182
9394
|
class GetJourneyExecutionMetricsResponse < Struct.new(
|
9183
9395
|
:journey_execution_metrics_response)
|
9396
|
+
SENSITIVE = []
|
9184
9397
|
include Aws::Structure
|
9185
9398
|
end
|
9186
9399
|
|
@@ -9203,6 +9416,7 @@ module Aws::Pinpoint
|
|
9203
9416
|
class GetJourneyRequest < Struct.new(
|
9204
9417
|
:application_id,
|
9205
9418
|
:journey_id)
|
9419
|
+
SENSITIVE = []
|
9206
9420
|
include Aws::Structure
|
9207
9421
|
end
|
9208
9422
|
|
@@ -9215,6 +9429,7 @@ module Aws::Pinpoint
|
|
9215
9429
|
#
|
9216
9430
|
class GetJourneyResponse < Struct.new(
|
9217
9431
|
:journey_response)
|
9432
|
+
SENSITIVE = []
|
9218
9433
|
include Aws::Structure
|
9219
9434
|
end
|
9220
9435
|
|
@@ -9237,6 +9452,7 @@ module Aws::Pinpoint
|
|
9237
9452
|
class GetPushTemplateRequest < Struct.new(
|
9238
9453
|
:template_name,
|
9239
9454
|
:version)
|
9455
|
+
SENSITIVE = []
|
9240
9456
|
include Aws::Structure
|
9241
9457
|
end
|
9242
9458
|
|
@@ -9250,6 +9466,7 @@ module Aws::Pinpoint
|
|
9250
9466
|
#
|
9251
9467
|
class GetPushTemplateResponse < Struct.new(
|
9252
9468
|
:push_notification_template_response)
|
9469
|
+
SENSITIVE = []
|
9253
9470
|
include Aws::Structure
|
9254
9471
|
end
|
9255
9472
|
|
@@ -9267,6 +9484,7 @@ module Aws::Pinpoint
|
|
9267
9484
|
#
|
9268
9485
|
class GetRecommenderConfigurationRequest < Struct.new(
|
9269
9486
|
:recommender_id)
|
9487
|
+
SENSITIVE = []
|
9270
9488
|
include Aws::Structure
|
9271
9489
|
end
|
9272
9490
|
|
@@ -9279,6 +9497,7 @@ module Aws::Pinpoint
|
|
9279
9497
|
#
|
9280
9498
|
class GetRecommenderConfigurationResponse < Struct.new(
|
9281
9499
|
:recommender_configuration_response)
|
9500
|
+
SENSITIVE = []
|
9282
9501
|
include Aws::Structure
|
9283
9502
|
end
|
9284
9503
|
|
@@ -9301,6 +9520,7 @@ module Aws::Pinpoint
|
|
9301
9520
|
class GetRecommenderConfigurationsRequest < Struct.new(
|
9302
9521
|
:page_size,
|
9303
9522
|
:token)
|
9523
|
+
SENSITIVE = []
|
9304
9524
|
include Aws::Structure
|
9305
9525
|
end
|
9306
9526
|
|
@@ -9313,6 +9533,7 @@ module Aws::Pinpoint
|
|
9313
9533
|
#
|
9314
9534
|
class GetRecommenderConfigurationsResponse < Struct.new(
|
9315
9535
|
:list_recommender_configurations_response)
|
9536
|
+
SENSITIVE = []
|
9316
9537
|
include Aws::Structure
|
9317
9538
|
end
|
9318
9539
|
|
@@ -9345,6 +9566,7 @@ module Aws::Pinpoint
|
|
9345
9566
|
:page_size,
|
9346
9567
|
:segment_id,
|
9347
9568
|
:token)
|
9569
|
+
SENSITIVE = []
|
9348
9570
|
include Aws::Structure
|
9349
9571
|
end
|
9350
9572
|
|
@@ -9358,6 +9580,7 @@ module Aws::Pinpoint
|
|
9358
9580
|
#
|
9359
9581
|
class GetSegmentExportJobsResponse < Struct.new(
|
9360
9582
|
:export_jobs_response)
|
9583
|
+
SENSITIVE = []
|
9361
9584
|
include Aws::Structure
|
9362
9585
|
end
|
9363
9586
|
|
@@ -9390,6 +9613,7 @@ module Aws::Pinpoint
|
|
9390
9613
|
:page_size,
|
9391
9614
|
:segment_id,
|
9392
9615
|
:token)
|
9616
|
+
SENSITIVE = []
|
9393
9617
|
include Aws::Structure
|
9394
9618
|
end
|
9395
9619
|
|
@@ -9404,6 +9628,7 @@ module Aws::Pinpoint
|
|
9404
9628
|
#
|
9405
9629
|
class GetSegmentImportJobsResponse < Struct.new(
|
9406
9630
|
:import_jobs_response)
|
9631
|
+
SENSITIVE = []
|
9407
9632
|
include Aws::Structure
|
9408
9633
|
end
|
9409
9634
|
|
@@ -9426,6 +9651,7 @@ module Aws::Pinpoint
|
|
9426
9651
|
class GetSegmentRequest < Struct.new(
|
9427
9652
|
:application_id,
|
9428
9653
|
:segment_id)
|
9654
|
+
SENSITIVE = []
|
9429
9655
|
include Aws::Structure
|
9430
9656
|
end
|
9431
9657
|
|
@@ -9438,6 +9664,7 @@ module Aws::Pinpoint
|
|
9438
9664
|
#
|
9439
9665
|
class GetSegmentResponse < Struct.new(
|
9440
9666
|
:segment_response)
|
9667
|
+
SENSITIVE = []
|
9441
9668
|
include Aws::Structure
|
9442
9669
|
end
|
9443
9670
|
|
@@ -9465,6 +9692,7 @@ module Aws::Pinpoint
|
|
9465
9692
|
:application_id,
|
9466
9693
|
:segment_id,
|
9467
9694
|
:version)
|
9695
|
+
SENSITIVE = []
|
9468
9696
|
include Aws::Structure
|
9469
9697
|
end
|
9470
9698
|
|
@@ -9477,6 +9705,7 @@ module Aws::Pinpoint
|
|
9477
9705
|
#
|
9478
9706
|
class GetSegmentVersionResponse < Struct.new(
|
9479
9707
|
:segment_response)
|
9708
|
+
SENSITIVE = []
|
9480
9709
|
include Aws::Structure
|
9481
9710
|
end
|
9482
9711
|
|
@@ -9509,6 +9738,7 @@ module Aws::Pinpoint
|
|
9509
9738
|
:page_size,
|
9510
9739
|
:segment_id,
|
9511
9740
|
:token)
|
9741
|
+
SENSITIVE = []
|
9512
9742
|
include Aws::Structure
|
9513
9743
|
end
|
9514
9744
|
|
@@ -9521,6 +9751,7 @@ module Aws::Pinpoint
|
|
9521
9751
|
#
|
9522
9752
|
class GetSegmentVersionsResponse < Struct.new(
|
9523
9753
|
:segments_response)
|
9754
|
+
SENSITIVE = []
|
9524
9755
|
include Aws::Structure
|
9525
9756
|
end
|
9526
9757
|
|
@@ -9548,6 +9779,7 @@ module Aws::Pinpoint
|
|
9548
9779
|
:application_id,
|
9549
9780
|
:page_size,
|
9550
9781
|
:token)
|
9782
|
+
SENSITIVE = []
|
9551
9783
|
include Aws::Structure
|
9552
9784
|
end
|
9553
9785
|
|
@@ -9560,6 +9792,7 @@ module Aws::Pinpoint
|
|
9560
9792
|
#
|
9561
9793
|
class GetSegmentsResponse < Struct.new(
|
9562
9794
|
:segments_response)
|
9795
|
+
SENSITIVE = []
|
9563
9796
|
include Aws::Structure
|
9564
9797
|
end
|
9565
9798
|
|
@@ -9577,6 +9810,7 @@ module Aws::Pinpoint
|
|
9577
9810
|
#
|
9578
9811
|
class GetSmsChannelRequest < Struct.new(
|
9579
9812
|
:application_id)
|
9813
|
+
SENSITIVE = []
|
9580
9814
|
include Aws::Structure
|
9581
9815
|
end
|
9582
9816
|
|
@@ -9589,6 +9823,7 @@ module Aws::Pinpoint
|
|
9589
9823
|
#
|
9590
9824
|
class GetSmsChannelResponse < Struct.new(
|
9591
9825
|
:sms_channel_response)
|
9826
|
+
SENSITIVE = []
|
9592
9827
|
include Aws::Structure
|
9593
9828
|
end
|
9594
9829
|
|
@@ -9611,6 +9846,7 @@ module Aws::Pinpoint
|
|
9611
9846
|
class GetSmsTemplateRequest < Struct.new(
|
9612
9847
|
:template_name,
|
9613
9848
|
:version)
|
9849
|
+
SENSITIVE = []
|
9614
9850
|
include Aws::Structure
|
9615
9851
|
end
|
9616
9852
|
|
@@ -9624,6 +9860,7 @@ module Aws::Pinpoint
|
|
9624
9860
|
#
|
9625
9861
|
class GetSmsTemplateResponse < Struct.new(
|
9626
9862
|
:sms_template_response)
|
9863
|
+
SENSITIVE = []
|
9627
9864
|
include Aws::Structure
|
9628
9865
|
end
|
9629
9866
|
|
@@ -9646,6 +9883,7 @@ module Aws::Pinpoint
|
|
9646
9883
|
class GetUserEndpointsRequest < Struct.new(
|
9647
9884
|
:application_id,
|
9648
9885
|
:user_id)
|
9886
|
+
SENSITIVE = []
|
9649
9887
|
include Aws::Structure
|
9650
9888
|
end
|
9651
9889
|
|
@@ -9658,6 +9896,7 @@ module Aws::Pinpoint
|
|
9658
9896
|
#
|
9659
9897
|
class GetUserEndpointsResponse < Struct.new(
|
9660
9898
|
:endpoints_response)
|
9899
|
+
SENSITIVE = []
|
9661
9900
|
include Aws::Structure
|
9662
9901
|
end
|
9663
9902
|
|
@@ -9675,6 +9914,7 @@ module Aws::Pinpoint
|
|
9675
9914
|
#
|
9676
9915
|
class GetVoiceChannelRequest < Struct.new(
|
9677
9916
|
:application_id)
|
9917
|
+
SENSITIVE = []
|
9678
9918
|
include Aws::Structure
|
9679
9919
|
end
|
9680
9920
|
|
@@ -9687,6 +9927,7 @@ module Aws::Pinpoint
|
|
9687
9927
|
#
|
9688
9928
|
class GetVoiceChannelResponse < Struct.new(
|
9689
9929
|
:voice_channel_response)
|
9930
|
+
SENSITIVE = []
|
9690
9931
|
include Aws::Structure
|
9691
9932
|
end
|
9692
9933
|
|
@@ -9709,6 +9950,7 @@ module Aws::Pinpoint
|
|
9709
9950
|
class GetVoiceTemplateRequest < Struct.new(
|
9710
9951
|
:template_name,
|
9711
9952
|
:version)
|
9953
|
+
SENSITIVE = []
|
9712
9954
|
include Aws::Structure
|
9713
9955
|
end
|
9714
9956
|
|
@@ -9722,6 +9964,7 @@ module Aws::Pinpoint
|
|
9722
9964
|
#
|
9723
9965
|
class GetVoiceTemplateResponse < Struct.new(
|
9724
9966
|
:voice_template_response)
|
9967
|
+
SENSITIVE = []
|
9725
9968
|
include Aws::Structure
|
9726
9969
|
end
|
9727
9970
|
|
@@ -9756,6 +9999,7 @@ module Aws::Pinpoint
|
|
9756
9999
|
class HoldoutActivity < Struct.new(
|
9757
10000
|
:next_activity,
|
9758
10001
|
:percentage)
|
10002
|
+
SENSITIVE = []
|
9759
10003
|
include Aws::Structure
|
9760
10004
|
end
|
9761
10005
|
|
@@ -9844,6 +10088,7 @@ module Aws::Pinpoint
|
|
9844
10088
|
:s3_url,
|
9845
10089
|
:segment_id,
|
9846
10090
|
:segment_name)
|
10091
|
+
SENSITIVE = []
|
9847
10092
|
include Aws::Structure
|
9848
10093
|
end
|
9849
10094
|
|
@@ -9922,6 +10167,7 @@ module Aws::Pinpoint
|
|
9922
10167
|
:s3_url,
|
9923
10168
|
:segment_id,
|
9924
10169
|
:segment_name)
|
10170
|
+
SENSITIVE = []
|
9925
10171
|
include Aws::Structure
|
9926
10172
|
end
|
9927
10173
|
|
@@ -10009,6 +10255,7 @@ module Aws::Pinpoint
|
|
10009
10255
|
:total_pieces,
|
10010
10256
|
:total_processed,
|
10011
10257
|
:type)
|
10258
|
+
SENSITIVE = []
|
10012
10259
|
include Aws::Structure
|
10013
10260
|
end
|
10014
10261
|
|
@@ -10033,6 +10280,7 @@ module Aws::Pinpoint
|
|
10033
10280
|
class ImportJobsResponse < Struct.new(
|
10034
10281
|
:item,
|
10035
10282
|
:next_token)
|
10283
|
+
SENSITIVE = []
|
10036
10284
|
include Aws::Structure
|
10037
10285
|
end
|
10038
10286
|
|
@@ -10049,6 +10297,7 @@ module Aws::Pinpoint
|
|
10049
10297
|
class InternalServerErrorException < Struct.new(
|
10050
10298
|
:message,
|
10051
10299
|
:request_id)
|
10300
|
+
SENSITIVE = []
|
10052
10301
|
include Aws::Structure
|
10053
10302
|
end
|
10054
10303
|
|
@@ -10070,6 +10319,7 @@ module Aws::Pinpoint
|
|
10070
10319
|
class ItemResponse < Struct.new(
|
10071
10320
|
:endpoint_item_response,
|
10072
10321
|
:events_item_response)
|
10322
|
+
SENSITIVE = []
|
10073
10323
|
include Aws::Structure
|
10074
10324
|
end
|
10075
10325
|
|
@@ -10092,6 +10342,7 @@ module Aws::Pinpoint
|
|
10092
10342
|
#
|
10093
10343
|
class JourneyCustomMessage < Struct.new(
|
10094
10344
|
:data)
|
10345
|
+
SENSITIVE = []
|
10095
10346
|
include Aws::Structure
|
10096
10347
|
end
|
10097
10348
|
|
@@ -10156,6 +10407,7 @@ module Aws::Pinpoint
|
|
10156
10407
|
:kpi_result,
|
10157
10408
|
:next_token,
|
10158
10409
|
:start_time)
|
10410
|
+
SENSITIVE = []
|
10159
10411
|
include Aws::Structure
|
10160
10412
|
end
|
10161
10413
|
|
@@ -10179,6 +10431,7 @@ module Aws::Pinpoint
|
|
10179
10431
|
#
|
10180
10432
|
class JourneyEmailMessage < Struct.new(
|
10181
10433
|
:from_address)
|
10434
|
+
SENSITIVE = []
|
10182
10435
|
include Aws::Structure
|
10183
10436
|
end
|
10184
10437
|
|
@@ -10252,6 +10505,7 @@ module Aws::Pinpoint
|
|
10252
10505
|
:journey_id,
|
10253
10506
|
:last_evaluated_time,
|
10254
10507
|
:metrics)
|
10508
|
+
SENSITIVE = []
|
10255
10509
|
include Aws::Structure
|
10256
10510
|
end
|
10257
10511
|
|
@@ -10290,6 +10544,7 @@ module Aws::Pinpoint
|
|
10290
10544
|
:journey_id,
|
10291
10545
|
:last_evaluated_time,
|
10292
10546
|
:metrics)
|
10547
|
+
SENSITIVE = []
|
10293
10548
|
include Aws::Structure
|
10294
10549
|
end
|
10295
10550
|
|
@@ -10327,6 +10582,7 @@ module Aws::Pinpoint
|
|
10327
10582
|
:daily_cap,
|
10328
10583
|
:endpoint_reentry_cap,
|
10329
10584
|
:messages_per_second)
|
10585
|
+
SENSITIVE = []
|
10330
10586
|
include Aws::Structure
|
10331
10587
|
end
|
10332
10588
|
|
@@ -10356,6 +10612,7 @@ module Aws::Pinpoint
|
|
10356
10612
|
#
|
10357
10613
|
class JourneyPushMessage < Struct.new(
|
10358
10614
|
:time_to_live)
|
10615
|
+
SENSITIVE = []
|
10359
10616
|
include Aws::Structure
|
10360
10617
|
end
|
10361
10618
|
|
@@ -10491,6 +10748,7 @@ module Aws::Pinpoint
|
|
10491
10748
|
:start_condition,
|
10492
10749
|
:state,
|
10493
10750
|
:tags)
|
10751
|
+
SENSITIVE = []
|
10494
10752
|
include Aws::Structure
|
10495
10753
|
end
|
10496
10754
|
|
@@ -10528,6 +10786,7 @@ module Aws::Pinpoint
|
|
10528
10786
|
class JourneySMSMessage < Struct.new(
|
10529
10787
|
:message_type,
|
10530
10788
|
:sender_id)
|
10789
|
+
SENSITIVE = []
|
10531
10790
|
include Aws::Structure
|
10532
10791
|
end
|
10533
10792
|
|
@@ -10569,6 +10828,7 @@ module Aws::Pinpoint
|
|
10569
10828
|
:end_time,
|
10570
10829
|
:start_time,
|
10571
10830
|
:timezone)
|
10831
|
+
SENSITIVE = []
|
10572
10832
|
include Aws::Structure
|
10573
10833
|
end
|
10574
10834
|
|
@@ -10602,6 +10862,7 @@ module Aws::Pinpoint
|
|
10602
10862
|
#
|
10603
10863
|
class JourneyStateRequest < Struct.new(
|
10604
10864
|
:state)
|
10865
|
+
SENSITIVE = []
|
10605
10866
|
include Aws::Structure
|
10606
10867
|
end
|
10607
10868
|
|
@@ -10624,6 +10885,7 @@ module Aws::Pinpoint
|
|
10624
10885
|
class JourneysResponse < Struct.new(
|
10625
10886
|
:item,
|
10626
10887
|
:next_token)
|
10888
|
+
SENSITIVE = []
|
10627
10889
|
include Aws::Structure
|
10628
10890
|
end
|
10629
10891
|
|
@@ -10651,6 +10913,7 @@ module Aws::Pinpoint
|
|
10651
10913
|
:application_id,
|
10652
10914
|
:page_size,
|
10653
10915
|
:token)
|
10916
|
+
SENSITIVE = []
|
10654
10917
|
include Aws::Structure
|
10655
10918
|
end
|
10656
10919
|
|
@@ -10664,6 +10927,7 @@ module Aws::Pinpoint
|
|
10664
10927
|
#
|
10665
10928
|
class ListJourneysResponse < Struct.new(
|
10666
10929
|
:journeys_response)
|
10930
|
+
SENSITIVE = []
|
10667
10931
|
include Aws::Structure
|
10668
10932
|
end
|
10669
10933
|
|
@@ -10686,6 +10950,7 @@ module Aws::Pinpoint
|
|
10686
10950
|
class ListRecommenderConfigurationsResponse < Struct.new(
|
10687
10951
|
:item,
|
10688
10952
|
:next_token)
|
10953
|
+
SENSITIVE = []
|
10689
10954
|
include Aws::Structure
|
10690
10955
|
end
|
10691
10956
|
|
@@ -10703,6 +10968,7 @@ module Aws::Pinpoint
|
|
10703
10968
|
#
|
10704
10969
|
class ListTagsForResourceRequest < Struct.new(
|
10705
10970
|
:resource_arn)
|
10971
|
+
SENSITIVE = []
|
10706
10972
|
include Aws::Structure
|
10707
10973
|
end
|
10708
10974
|
|
@@ -10715,6 +10981,7 @@ module Aws::Pinpoint
|
|
10715
10981
|
#
|
10716
10982
|
class ListTagsForResourceResponse < Struct.new(
|
10717
10983
|
:tags_model)
|
10984
|
+
SENSITIVE = []
|
10718
10985
|
include Aws::Structure
|
10719
10986
|
end
|
10720
10987
|
|
@@ -10747,6 +11014,7 @@ module Aws::Pinpoint
|
|
10747
11014
|
:page_size,
|
10748
11015
|
:template_name,
|
10749
11016
|
:template_type)
|
11017
|
+
SENSITIVE = []
|
10750
11018
|
include Aws::Structure
|
10751
11019
|
end
|
10752
11020
|
|
@@ -10759,6 +11027,7 @@ module Aws::Pinpoint
|
|
10759
11027
|
#
|
10760
11028
|
class ListTemplateVersionsResponse < Struct.new(
|
10761
11029
|
:template_versions_response)
|
11030
|
+
SENSITIVE = []
|
10762
11031
|
include Aws::Structure
|
10763
11032
|
end
|
10764
11033
|
|
@@ -10791,6 +11060,7 @@ module Aws::Pinpoint
|
|
10791
11060
|
:page_size,
|
10792
11061
|
:prefix,
|
10793
11062
|
:template_type)
|
11063
|
+
SENSITIVE = []
|
10794
11064
|
include Aws::Structure
|
10795
11065
|
end
|
10796
11066
|
|
@@ -10803,6 +11073,7 @@ module Aws::Pinpoint
|
|
10803
11073
|
#
|
10804
11074
|
class ListTemplatesResponse < Struct.new(
|
10805
11075
|
:templates_response)
|
11076
|
+
SENSITIVE = []
|
10806
11077
|
include Aws::Structure
|
10807
11078
|
end
|
10808
11079
|
|
@@ -10921,6 +11192,7 @@ module Aws::Pinpoint
|
|
10921
11192
|
:time_to_live,
|
10922
11193
|
:title,
|
10923
11194
|
:url)
|
11195
|
+
SENSITIVE = []
|
10924
11196
|
include Aws::Structure
|
10925
11197
|
end
|
10926
11198
|
|
@@ -10939,6 +11211,7 @@ module Aws::Pinpoint
|
|
10939
11211
|
class MessageBody < Struct.new(
|
10940
11212
|
:message,
|
10941
11213
|
:request_id)
|
11214
|
+
SENSITIVE = []
|
10942
11215
|
include Aws::Structure
|
10943
11216
|
end
|
10944
11217
|
|
@@ -11093,6 +11366,7 @@ module Aws::Pinpoint
|
|
11093
11366
|
:email_message,
|
11094
11367
|
:gcm_message,
|
11095
11368
|
:sms_message)
|
11369
|
+
SENSITIVE = []
|
11096
11370
|
include Aws::Structure
|
11097
11371
|
end
|
11098
11372
|
|
@@ -11356,6 +11630,7 @@ module Aws::Pinpoint
|
|
11356
11630
|
:message_configuration,
|
11357
11631
|
:template_configuration,
|
11358
11632
|
:trace_id)
|
11633
|
+
SENSITIVE = []
|
11359
11634
|
include Aws::Structure
|
11360
11635
|
end
|
11361
11636
|
|
@@ -11392,6 +11667,7 @@ module Aws::Pinpoint
|
|
11392
11667
|
:endpoint_result,
|
11393
11668
|
:request_id,
|
11394
11669
|
:result)
|
11670
|
+
SENSITIVE = []
|
11395
11671
|
include Aws::Structure
|
11396
11672
|
end
|
11397
11673
|
|
@@ -11453,6 +11729,7 @@ module Aws::Pinpoint
|
|
11453
11729
|
:status_code,
|
11454
11730
|
:status_message,
|
11455
11731
|
:updated_token)
|
11732
|
+
SENSITIVE = []
|
11456
11733
|
include Aws::Structure
|
11457
11734
|
end
|
11458
11735
|
|
@@ -11469,6 +11746,7 @@ module Aws::Pinpoint
|
|
11469
11746
|
class MethodNotAllowedException < Struct.new(
|
11470
11747
|
:message,
|
11471
11748
|
:request_id)
|
11749
|
+
SENSITIVE = []
|
11472
11750
|
include Aws::Structure
|
11473
11751
|
end
|
11474
11752
|
|
@@ -11499,6 +11777,7 @@ module Aws::Pinpoint
|
|
11499
11777
|
class MetricDimension < Struct.new(
|
11500
11778
|
:comparison_operator,
|
11501
11779
|
:value)
|
11780
|
+
SENSITIVE = []
|
11502
11781
|
include Aws::Structure
|
11503
11782
|
end
|
11504
11783
|
|
@@ -11616,6 +11895,7 @@ module Aws::Pinpoint
|
|
11616
11895
|
class MultiConditionalBranch < Struct.new(
|
11617
11896
|
:condition,
|
11618
11897
|
:next_activity)
|
11898
|
+
SENSITIVE = []
|
11619
11899
|
include Aws::Structure
|
11620
11900
|
end
|
11621
11901
|
|
@@ -11753,6 +12033,7 @@ module Aws::Pinpoint
|
|
11753
12033
|
:branches,
|
11754
12034
|
:default_activity,
|
11755
12035
|
:evaluation_wait_time)
|
12036
|
+
SENSITIVE = []
|
11756
12037
|
include Aws::Structure
|
11757
12038
|
end
|
11758
12039
|
|
@@ -11769,6 +12050,7 @@ module Aws::Pinpoint
|
|
11769
12050
|
class NotFoundException < Struct.new(
|
11770
12051
|
:message,
|
11771
12052
|
:request_id)
|
12053
|
+
SENSITIVE = []
|
11772
12054
|
include Aws::Structure
|
11773
12055
|
end
|
11774
12056
|
|
@@ -11798,6 +12080,7 @@ module Aws::Pinpoint
|
|
11798
12080
|
class NumberValidateRequest < Struct.new(
|
11799
12081
|
:iso_country_code,
|
11800
12082
|
:phone_number)
|
12083
|
+
SENSITIVE = []
|
11801
12084
|
include Aws::Structure
|
11802
12085
|
end
|
11803
12086
|
|
@@ -11892,6 +12175,7 @@ module Aws::Pinpoint
|
|
11892
12175
|
:phone_type_code,
|
11893
12176
|
:timezone,
|
11894
12177
|
:zip_code)
|
12178
|
+
SENSITIVE = []
|
11895
12179
|
include Aws::Structure
|
11896
12180
|
end
|
11897
12181
|
|
@@ -11908,6 +12192,7 @@ module Aws::Pinpoint
|
|
11908
12192
|
class PayloadTooLargeException < Struct.new(
|
11909
12193
|
:message,
|
11910
12194
|
:request_id)
|
12195
|
+
SENSITIVE = []
|
11911
12196
|
include Aws::Structure
|
11912
12197
|
end
|
11913
12198
|
|
@@ -11929,6 +12214,7 @@ module Aws::Pinpoint
|
|
11929
12214
|
#
|
11930
12215
|
class PhoneNumberValidateRequest < Struct.new(
|
11931
12216
|
:number_validate_request)
|
12217
|
+
SENSITIVE = []
|
11932
12218
|
include Aws::Structure
|
11933
12219
|
end
|
11934
12220
|
|
@@ -11940,6 +12226,7 @@ module Aws::Pinpoint
|
|
11940
12226
|
#
|
11941
12227
|
class PhoneNumberValidateResponse < Struct.new(
|
11942
12228
|
:number_validate_response)
|
12229
|
+
SENSITIVE = []
|
11943
12230
|
include Aws::Structure
|
11944
12231
|
end
|
11945
12232
|
|
@@ -12068,6 +12355,7 @@ module Aws::Pinpoint
|
|
12068
12355
|
:opt_out,
|
12069
12356
|
:request_id,
|
12070
12357
|
:user)
|
12358
|
+
SENSITIVE = []
|
12071
12359
|
include Aws::Structure
|
12072
12360
|
end
|
12073
12361
|
|
@@ -12125,6 +12413,7 @@ module Aws::Pinpoint
|
|
12125
12413
|
:next_activity,
|
12126
12414
|
:template_name,
|
12127
12415
|
:template_version)
|
12416
|
+
SENSITIVE = []
|
12128
12417
|
include Aws::Structure
|
12129
12418
|
end
|
12130
12419
|
|
@@ -12263,6 +12552,7 @@ module Aws::Pinpoint
|
|
12263
12552
|
:recommender_id,
|
12264
12553
|
:tags,
|
12265
12554
|
:template_description)
|
12555
|
+
SENSITIVE = []
|
12266
12556
|
include Aws::Structure
|
12267
12557
|
end
|
12268
12558
|
|
@@ -12372,6 +12662,7 @@ module Aws::Pinpoint
|
|
12372
12662
|
:template_name,
|
12373
12663
|
:template_type,
|
12374
12664
|
:version)
|
12665
|
+
SENSITIVE = []
|
12375
12666
|
include Aws::Structure
|
12376
12667
|
end
|
12377
12668
|
|
@@ -12400,6 +12691,7 @@ module Aws::Pinpoint
|
|
12400
12691
|
class PutEventStreamRequest < Struct.new(
|
12401
12692
|
:application_id,
|
12402
12693
|
:write_event_stream)
|
12694
|
+
SENSITIVE = []
|
12403
12695
|
include Aws::Structure
|
12404
12696
|
end
|
12405
12697
|
|
@@ -12412,6 +12704,7 @@ module Aws::Pinpoint
|
|
12412
12704
|
#
|
12413
12705
|
class PutEventStreamResponse < Struct.new(
|
12414
12706
|
:event_stream)
|
12707
|
+
SENSITIVE = []
|
12415
12708
|
include Aws::Structure
|
12416
12709
|
end
|
12417
12710
|
|
@@ -12501,6 +12794,7 @@ module Aws::Pinpoint
|
|
12501
12794
|
class PutEventsRequest < Struct.new(
|
12502
12795
|
:application_id,
|
12503
12796
|
:events_request)
|
12797
|
+
SENSITIVE = []
|
12504
12798
|
include Aws::Structure
|
12505
12799
|
end
|
12506
12800
|
|
@@ -12513,6 +12807,7 @@ module Aws::Pinpoint
|
|
12513
12807
|
#
|
12514
12808
|
class PutEventsResponse < Struct.new(
|
12515
12809
|
:events_response)
|
12810
|
+
SENSITIVE = []
|
12516
12811
|
include Aws::Structure
|
12517
12812
|
end
|
12518
12813
|
|
@@ -12546,6 +12841,7 @@ module Aws::Pinpoint
|
|
12546
12841
|
class QuietTime < Struct.new(
|
12547
12842
|
:end,
|
12548
12843
|
:start)
|
12844
|
+
SENSITIVE = []
|
12549
12845
|
include Aws::Structure
|
12550
12846
|
end
|
12551
12847
|
|
@@ -12575,6 +12871,7 @@ module Aws::Pinpoint
|
|
12575
12871
|
#
|
12576
12872
|
class RandomSplitActivity < Struct.new(
|
12577
12873
|
:branches)
|
12874
|
+
SENSITIVE = []
|
12578
12875
|
include Aws::Structure
|
12579
12876
|
end
|
12580
12877
|
|
@@ -12609,6 +12906,7 @@ module Aws::Pinpoint
|
|
12609
12906
|
class RandomSplitEntry < Struct.new(
|
12610
12907
|
:next_activity,
|
12611
12908
|
:percentage)
|
12909
|
+
SENSITIVE = []
|
12612
12910
|
include Aws::Structure
|
12613
12911
|
end
|
12614
12912
|
|
@@ -12631,6 +12929,7 @@ module Aws::Pinpoint
|
|
12631
12929
|
#
|
12632
12930
|
class RawEmail < Struct.new(
|
12633
12931
|
:data)
|
12932
|
+
SENSITIVE = []
|
12634
12933
|
include Aws::Structure
|
12635
12934
|
end
|
12636
12935
|
|
@@ -12663,6 +12962,7 @@ module Aws::Pinpoint
|
|
12663
12962
|
class RecencyDimension < Struct.new(
|
12664
12963
|
:duration,
|
12665
12964
|
:recency_type)
|
12965
|
+
SENSITIVE = []
|
12666
12966
|
include Aws::Structure
|
12667
12967
|
end
|
12668
12968
|
|
@@ -12777,6 +13077,7 @@ module Aws::Pinpoint
|
|
12777
13077
|
:recommendation_transformer_uri,
|
12778
13078
|
:recommendations_display_name,
|
12779
13079
|
:recommendations_per_message)
|
13080
|
+
SENSITIVE = []
|
12780
13081
|
include Aws::Structure
|
12781
13082
|
end
|
12782
13083
|
|
@@ -12808,6 +13109,7 @@ module Aws::Pinpoint
|
|
12808
13109
|
:application_id,
|
12809
13110
|
:attribute_type,
|
12810
13111
|
:update_attributes_request)
|
13112
|
+
SENSITIVE = []
|
12811
13113
|
include Aws::Structure
|
12812
13114
|
end
|
12813
13115
|
|
@@ -12821,6 +13123,7 @@ module Aws::Pinpoint
|
|
12821
13123
|
#
|
12822
13124
|
class RemoveAttributesResponse < Struct.new(
|
12823
13125
|
:attributes_resource)
|
13126
|
+
SENSITIVE = []
|
12824
13127
|
include Aws::Structure
|
12825
13128
|
end
|
12826
13129
|
|
@@ -12845,6 +13148,7 @@ module Aws::Pinpoint
|
|
12845
13148
|
class ResultRow < Struct.new(
|
12846
13149
|
:grouped_bys,
|
12847
13150
|
:values)
|
13151
|
+
SENSITIVE = []
|
12848
13152
|
include Aws::Structure
|
12849
13153
|
end
|
12850
13154
|
|
@@ -12874,6 +13178,7 @@ module Aws::Pinpoint
|
|
12874
13178
|
:key,
|
12875
13179
|
:type,
|
12876
13180
|
:value)
|
13181
|
+
SENSITIVE = []
|
12877
13182
|
include Aws::Structure
|
12878
13183
|
end
|
12879
13184
|
|
@@ -12909,6 +13214,7 @@ module Aws::Pinpoint
|
|
12909
13214
|
:enabled,
|
12910
13215
|
:sender_id,
|
12911
13216
|
:short_code)
|
13217
|
+
SENSITIVE = []
|
12912
13218
|
include Aws::Structure
|
12913
13219
|
end
|
12914
13220
|
|
@@ -12998,6 +13304,7 @@ module Aws::Pinpoint
|
|
12998
13304
|
:short_code,
|
12999
13305
|
:transactional_messages_per_second,
|
13000
13306
|
:version)
|
13307
|
+
SENSITIVE = []
|
13001
13308
|
include Aws::Structure
|
13002
13309
|
end
|
13003
13310
|
|
@@ -13029,7 +13336,8 @@ module Aws::Pinpoint
|
|
13029
13336
|
# @return [String]
|
13030
13337
|
#
|
13031
13338
|
# @!attribute [rw] media_url
|
13032
|
-
# The URL of an image or video to display in the SMS message.
|
13339
|
+
# The URL of an image or video to display in the SMS message. This
|
13340
|
+
# field is reserved for future use.
|
13033
13341
|
# @return [String]
|
13034
13342
|
#
|
13035
13343
|
# @!attribute [rw] message_type
|
@@ -13068,6 +13376,7 @@ module Aws::Pinpoint
|
|
13068
13376
|
:origination_number,
|
13069
13377
|
:sender_id,
|
13070
13378
|
:substitutions)
|
13379
|
+
SENSITIVE = []
|
13071
13380
|
include Aws::Structure
|
13072
13381
|
end
|
13073
13382
|
|
@@ -13126,6 +13435,7 @@ module Aws::Pinpoint
|
|
13126
13435
|
:next_activity,
|
13127
13436
|
:template_name,
|
13128
13437
|
:template_version)
|
13438
|
+
SENSITIVE = []
|
13129
13439
|
include Aws::Structure
|
13130
13440
|
end
|
13131
13441
|
|
@@ -13186,6 +13496,7 @@ module Aws::Pinpoint
|
|
13186
13496
|
:recommender_id,
|
13187
13497
|
:tags,
|
13188
13498
|
:template_description)
|
13499
|
+
SENSITIVE = []
|
13189
13500
|
include Aws::Structure
|
13190
13501
|
end
|
13191
13502
|
|
@@ -13263,6 +13574,7 @@ module Aws::Pinpoint
|
|
13263
13574
|
:template_name,
|
13264
13575
|
:template_type,
|
13265
13576
|
:version)
|
13577
|
+
SENSITIVE = []
|
13266
13578
|
include Aws::Structure
|
13267
13579
|
end
|
13268
13580
|
|
@@ -13370,6 +13682,7 @@ module Aws::Pinpoint
|
|
13370
13682
|
:quiet_time,
|
13371
13683
|
:start_time,
|
13372
13684
|
:timezone)
|
13685
|
+
SENSITIVE = []
|
13373
13686
|
include Aws::Structure
|
13374
13687
|
end
|
13375
13688
|
|
@@ -13395,6 +13708,7 @@ module Aws::Pinpoint
|
|
13395
13708
|
#
|
13396
13709
|
class SegmentBehaviors < Struct.new(
|
13397
13710
|
:recency)
|
13711
|
+
SENSITIVE = []
|
13398
13712
|
include Aws::Structure
|
13399
13713
|
end
|
13400
13714
|
|
@@ -13416,6 +13730,7 @@ module Aws::Pinpoint
|
|
13416
13730
|
#
|
13417
13731
|
class SegmentCondition < Struct.new(
|
13418
13732
|
:segment_id)
|
13733
|
+
SENSITIVE = []
|
13419
13734
|
include Aws::Structure
|
13420
13735
|
end
|
13421
13736
|
|
@@ -13487,6 +13802,7 @@ module Aws::Pinpoint
|
|
13487
13802
|
:make,
|
13488
13803
|
:model,
|
13489
13804
|
:platform)
|
13805
|
+
SENSITIVE = []
|
13490
13806
|
include Aws::Structure
|
13491
13807
|
end
|
13492
13808
|
|
@@ -13598,6 +13914,7 @@ module Aws::Pinpoint
|
|
13598
13914
|
:location,
|
13599
13915
|
:metrics,
|
13600
13916
|
:user_attributes)
|
13917
|
+
SENSITIVE = []
|
13601
13918
|
include Aws::Structure
|
13602
13919
|
end
|
13603
13920
|
|
@@ -13723,6 +14040,7 @@ module Aws::Pinpoint
|
|
13723
14040
|
:source_segments,
|
13724
14041
|
:source_type,
|
13725
14042
|
:type)
|
14043
|
+
SENSITIVE = []
|
13726
14044
|
include Aws::Structure
|
13727
14045
|
end
|
13728
14046
|
|
@@ -13832,6 +14150,7 @@ module Aws::Pinpoint
|
|
13832
14150
|
class SegmentGroupList < Struct.new(
|
13833
14151
|
:groups,
|
13834
14152
|
:include)
|
14153
|
+
SENSITIVE = []
|
13835
14154
|
include Aws::Structure
|
13836
14155
|
end
|
13837
14156
|
|
@@ -13883,6 +14202,7 @@ module Aws::Pinpoint
|
|
13883
14202
|
:role_arn,
|
13884
14203
|
:s3_url,
|
13885
14204
|
:size)
|
14205
|
+
SENSITIVE = []
|
13886
14206
|
include Aws::Structure
|
13887
14207
|
end
|
13888
14208
|
|
@@ -13919,6 +14239,7 @@ module Aws::Pinpoint
|
|
13919
14239
|
class SegmentLocation < Struct.new(
|
13920
14240
|
:country,
|
13921
14241
|
:gps_point)
|
14242
|
+
SENSITIVE = []
|
13922
14243
|
include Aws::Structure
|
13923
14244
|
end
|
13924
14245
|
|
@@ -13945,6 +14266,7 @@ module Aws::Pinpoint
|
|
13945
14266
|
class SegmentReference < Struct.new(
|
13946
14267
|
:id,
|
13947
14268
|
:version)
|
14269
|
+
SENSITIVE = []
|
13948
14270
|
include Aws::Structure
|
13949
14271
|
end
|
13950
14272
|
|
@@ -14029,6 +14351,7 @@ module Aws::Pinpoint
|
|
14029
14351
|
:segment_type,
|
14030
14352
|
:tags,
|
14031
14353
|
:version)
|
14354
|
+
SENSITIVE = []
|
14032
14355
|
include Aws::Structure
|
14033
14356
|
end
|
14034
14357
|
|
@@ -14052,6 +14375,7 @@ module Aws::Pinpoint
|
|
14052
14375
|
class SegmentsResponse < Struct.new(
|
14053
14376
|
:item,
|
14054
14377
|
:next_token)
|
14378
|
+
SENSITIVE = []
|
14055
14379
|
include Aws::Structure
|
14056
14380
|
end
|
14057
14381
|
|
@@ -14281,6 +14605,7 @@ module Aws::Pinpoint
|
|
14281
14605
|
class SendMessagesRequest < Struct.new(
|
14282
14606
|
:application_id,
|
14283
14607
|
:message_request)
|
14608
|
+
SENSITIVE = []
|
14284
14609
|
include Aws::Structure
|
14285
14610
|
end
|
14286
14611
|
|
@@ -14293,6 +14618,7 @@ module Aws::Pinpoint
|
|
14293
14618
|
#
|
14294
14619
|
class SendMessagesResponse < Struct.new(
|
14295
14620
|
:message_response)
|
14621
|
+
SENSITIVE = []
|
14296
14622
|
include Aws::Structure
|
14297
14623
|
end
|
14298
14624
|
|
@@ -14533,6 +14859,7 @@ module Aws::Pinpoint
|
|
14533
14859
|
:template_configuration,
|
14534
14860
|
:trace_id,
|
14535
14861
|
:users)
|
14862
|
+
SENSITIVE = []
|
14536
14863
|
include Aws::Structure
|
14537
14864
|
end
|
14538
14865
|
|
@@ -14561,6 +14888,7 @@ module Aws::Pinpoint
|
|
14561
14888
|
:application_id,
|
14562
14889
|
:request_id,
|
14563
14890
|
:result)
|
14891
|
+
SENSITIVE = []
|
14564
14892
|
include Aws::Structure
|
14565
14893
|
end
|
14566
14894
|
|
@@ -14777,6 +15105,7 @@ module Aws::Pinpoint
|
|
14777
15105
|
class SendUsersMessagesRequest < Struct.new(
|
14778
15106
|
:application_id,
|
14779
15107
|
:send_users_message_request)
|
15108
|
+
SENSITIVE = []
|
14780
15109
|
include Aws::Structure
|
14781
15110
|
end
|
14782
15111
|
|
@@ -14789,6 +15118,7 @@ module Aws::Pinpoint
|
|
14789
15118
|
#
|
14790
15119
|
class SendUsersMessagesResponse < Struct.new(
|
14791
15120
|
:send_users_message_response)
|
15121
|
+
SENSITIVE = []
|
14792
15122
|
include Aws::Structure
|
14793
15123
|
end
|
14794
15124
|
|
@@ -14827,6 +15157,7 @@ module Aws::Pinpoint
|
|
14827
15157
|
:id,
|
14828
15158
|
:start_timestamp,
|
14829
15159
|
:stop_timestamp)
|
15160
|
+
SENSITIVE = []
|
14830
15161
|
include Aws::Structure
|
14831
15162
|
end
|
14832
15163
|
|
@@ -14858,6 +15189,7 @@ module Aws::Pinpoint
|
|
14858
15189
|
class SetDimension < Struct.new(
|
14859
15190
|
:dimension_type,
|
14860
15191
|
:values)
|
15192
|
+
SENSITIVE = []
|
14861
15193
|
include Aws::Structure
|
14862
15194
|
end
|
14863
15195
|
|
@@ -14978,6 +15310,7 @@ module Aws::Pinpoint
|
|
14978
15310
|
:event_condition,
|
14979
15311
|
:segment_condition,
|
14980
15312
|
:segment_dimensions)
|
15313
|
+
SENSITIVE = []
|
14981
15314
|
include Aws::Structure
|
14982
15315
|
end
|
14983
15316
|
|
@@ -15025,6 +15358,7 @@ module Aws::Pinpoint
|
|
15025
15358
|
:html_part,
|
15026
15359
|
:subject,
|
15027
15360
|
:text_part)
|
15361
|
+
SENSITIVE = []
|
15028
15362
|
include Aws::Structure
|
15029
15363
|
end
|
15030
15364
|
|
@@ -15052,6 +15386,7 @@ module Aws::Pinpoint
|
|
15052
15386
|
class SimpleEmailPart < Struct.new(
|
15053
15387
|
:charset,
|
15054
15388
|
:data)
|
15389
|
+
SENSITIVE = []
|
15055
15390
|
include Aws::Structure
|
15056
15391
|
end
|
15057
15392
|
|
@@ -15084,6 +15419,7 @@ module Aws::Pinpoint
|
|
15084
15419
|
class StartCondition < Struct.new(
|
15085
15420
|
:description,
|
15086
15421
|
:segment_start_condition)
|
15422
|
+
SENSITIVE = []
|
15087
15423
|
include Aws::Structure
|
15088
15424
|
end
|
15089
15425
|
|
@@ -15112,6 +15448,7 @@ module Aws::Pinpoint
|
|
15112
15448
|
class TagResourceRequest < Struct.new(
|
15113
15449
|
:resource_arn,
|
15114
15450
|
:tags_model)
|
15451
|
+
SENSITIVE = []
|
15115
15452
|
include Aws::Structure
|
15116
15453
|
end
|
15117
15454
|
|
@@ -15141,6 +15478,7 @@ module Aws::Pinpoint
|
|
15141
15478
|
#
|
15142
15479
|
class TagsModel < Struct.new(
|
15143
15480
|
:tags)
|
15481
|
+
SENSITIVE = []
|
15144
15482
|
include Aws::Structure
|
15145
15483
|
end
|
15146
15484
|
|
@@ -15182,6 +15520,7 @@ module Aws::Pinpoint
|
|
15182
15520
|
class Template < Struct.new(
|
15183
15521
|
:name,
|
15184
15522
|
:version)
|
15523
|
+
SENSITIVE = []
|
15185
15524
|
include Aws::Structure
|
15186
15525
|
end
|
15187
15526
|
|
@@ -15211,6 +15550,7 @@ module Aws::Pinpoint
|
|
15211
15550
|
#
|
15212
15551
|
class TemplateActiveVersionRequest < Struct.new(
|
15213
15552
|
:version)
|
15553
|
+
SENSITIVE = []
|
15214
15554
|
include Aws::Structure
|
15215
15555
|
end
|
15216
15556
|
|
@@ -15263,6 +15603,7 @@ module Aws::Pinpoint
|
|
15263
15603
|
:push_template,
|
15264
15604
|
:sms_template,
|
15265
15605
|
:voice_template)
|
15606
|
+
SENSITIVE = []
|
15266
15607
|
include Aws::Structure
|
15267
15608
|
end
|
15268
15609
|
|
@@ -15338,6 +15679,7 @@ module Aws::Pinpoint
|
|
15338
15679
|
:template_name,
|
15339
15680
|
:template_type,
|
15340
15681
|
:version)
|
15682
|
+
SENSITIVE = []
|
15341
15683
|
include Aws::Structure
|
15342
15684
|
end
|
15343
15685
|
|
@@ -15390,6 +15732,7 @@ module Aws::Pinpoint
|
|
15390
15732
|
:template_name,
|
15391
15733
|
:template_type,
|
15392
15734
|
:version)
|
15735
|
+
SENSITIVE = []
|
15393
15736
|
include Aws::Structure
|
15394
15737
|
end
|
15395
15738
|
|
@@ -15423,6 +15766,7 @@ module Aws::Pinpoint
|
|
15423
15766
|
:message,
|
15424
15767
|
:next_token,
|
15425
15768
|
:request_id)
|
15769
|
+
SENSITIVE = []
|
15426
15770
|
include Aws::Structure
|
15427
15771
|
end
|
15428
15772
|
|
@@ -15446,6 +15790,7 @@ module Aws::Pinpoint
|
|
15446
15790
|
class TemplatesResponse < Struct.new(
|
15447
15791
|
:item,
|
15448
15792
|
:next_token)
|
15793
|
+
SENSITIVE = []
|
15449
15794
|
include Aws::Structure
|
15450
15795
|
end
|
15451
15796
|
|
@@ -15462,6 +15807,7 @@ module Aws::Pinpoint
|
|
15462
15807
|
class TooManyRequestsException < Struct.new(
|
15463
15808
|
:message,
|
15464
15809
|
:request_id)
|
15810
|
+
SENSITIVE = []
|
15465
15811
|
include Aws::Structure
|
15466
15812
|
end
|
15467
15813
|
|
@@ -15520,6 +15866,7 @@ module Aws::Pinpoint
|
|
15520
15866
|
:template_configuration,
|
15521
15867
|
:treatment_description,
|
15522
15868
|
:treatment_name)
|
15869
|
+
SENSITIVE = []
|
15523
15870
|
include Aws::Structure
|
15524
15871
|
end
|
15525
15872
|
|
@@ -15542,6 +15889,7 @@ module Aws::Pinpoint
|
|
15542
15889
|
class UntagResourceRequest < Struct.new(
|
15543
15890
|
:resource_arn,
|
15544
15891
|
:tag_keys)
|
15892
|
+
SENSITIVE = []
|
15545
15893
|
include Aws::Structure
|
15546
15894
|
end
|
15547
15895
|
|
@@ -15570,6 +15918,7 @@ module Aws::Pinpoint
|
|
15570
15918
|
class UpdateAdmChannelRequest < Struct.new(
|
15571
15919
|
:adm_channel_request,
|
15572
15920
|
:application_id)
|
15921
|
+
SENSITIVE = []
|
15573
15922
|
include Aws::Structure
|
15574
15923
|
end
|
15575
15924
|
|
@@ -15582,6 +15931,7 @@ module Aws::Pinpoint
|
|
15582
15931
|
#
|
15583
15932
|
class UpdateAdmChannelResponse < Struct.new(
|
15584
15933
|
:adm_channel_response)
|
15934
|
+
SENSITIVE = []
|
15585
15935
|
include Aws::Structure
|
15586
15936
|
end
|
15587
15937
|
|
@@ -15615,6 +15965,7 @@ module Aws::Pinpoint
|
|
15615
15965
|
class UpdateApnsChannelRequest < Struct.new(
|
15616
15966
|
:apns_channel_request,
|
15617
15967
|
:application_id)
|
15968
|
+
SENSITIVE = []
|
15618
15969
|
include Aws::Structure
|
15619
15970
|
end
|
15620
15971
|
|
@@ -15627,6 +15978,7 @@ module Aws::Pinpoint
|
|
15627
15978
|
#
|
15628
15979
|
class UpdateApnsChannelResponse < Struct.new(
|
15629
15980
|
:apns_channel_response)
|
15981
|
+
SENSITIVE = []
|
15630
15982
|
include Aws::Structure
|
15631
15983
|
end
|
15632
15984
|
|
@@ -15660,6 +16012,7 @@ module Aws::Pinpoint
|
|
15660
16012
|
class UpdateApnsSandboxChannelRequest < Struct.new(
|
15661
16013
|
:apns_sandbox_channel_request,
|
15662
16014
|
:application_id)
|
16015
|
+
SENSITIVE = []
|
15663
16016
|
include Aws::Structure
|
15664
16017
|
end
|
15665
16018
|
|
@@ -15673,6 +16026,7 @@ module Aws::Pinpoint
|
|
15673
16026
|
#
|
15674
16027
|
class UpdateApnsSandboxChannelResponse < Struct.new(
|
15675
16028
|
:apns_sandbox_channel_response)
|
16029
|
+
SENSITIVE = []
|
15676
16030
|
include Aws::Structure
|
15677
16031
|
end
|
15678
16032
|
|
@@ -15706,6 +16060,7 @@ module Aws::Pinpoint
|
|
15706
16060
|
class UpdateApnsVoipChannelRequest < Struct.new(
|
15707
16061
|
:apns_voip_channel_request,
|
15708
16062
|
:application_id)
|
16063
|
+
SENSITIVE = []
|
15709
16064
|
include Aws::Structure
|
15710
16065
|
end
|
15711
16066
|
|
@@ -15718,6 +16073,7 @@ module Aws::Pinpoint
|
|
15718
16073
|
#
|
15719
16074
|
class UpdateApnsVoipChannelResponse < Struct.new(
|
15720
16075
|
:apns_voip_channel_response)
|
16076
|
+
SENSITIVE = []
|
15721
16077
|
include Aws::Structure
|
15722
16078
|
end
|
15723
16079
|
|
@@ -15751,6 +16107,7 @@ module Aws::Pinpoint
|
|
15751
16107
|
class UpdateApnsVoipSandboxChannelRequest < Struct.new(
|
15752
16108
|
:apns_voip_sandbox_channel_request,
|
15753
16109
|
:application_id)
|
16110
|
+
SENSITIVE = []
|
15754
16111
|
include Aws::Structure
|
15755
16112
|
end
|
15756
16113
|
|
@@ -15764,6 +16121,7 @@ module Aws::Pinpoint
|
|
15764
16121
|
#
|
15765
16122
|
class UpdateApnsVoipSandboxChannelResponse < Struct.new(
|
15766
16123
|
:apns_voip_sandbox_channel_response)
|
16124
|
+
SENSITIVE = []
|
15767
16125
|
include Aws::Structure
|
15768
16126
|
end
|
15769
16127
|
|
@@ -15804,6 +16162,7 @@ module Aws::Pinpoint
|
|
15804
16162
|
class UpdateApplicationSettingsRequest < Struct.new(
|
15805
16163
|
:application_id,
|
15806
16164
|
:write_application_settings_request)
|
16165
|
+
SENSITIVE = []
|
15807
16166
|
include Aws::Structure
|
15808
16167
|
end
|
15809
16168
|
|
@@ -15816,6 +16175,7 @@ module Aws::Pinpoint
|
|
15816
16175
|
#
|
15817
16176
|
class UpdateApplicationSettingsResponse < Struct.new(
|
15818
16177
|
:application_settings_resource)
|
16178
|
+
SENSITIVE = []
|
15819
16179
|
include Aws::Structure
|
15820
16180
|
end
|
15821
16181
|
|
@@ -15841,6 +16201,7 @@ module Aws::Pinpoint
|
|
15841
16201
|
#
|
15842
16202
|
class UpdateAttributesRequest < Struct.new(
|
15843
16203
|
:blacklist)
|
16204
|
+
SENSITIVE = []
|
15844
16205
|
include Aws::Structure
|
15845
16206
|
end
|
15846
16207
|
|
@@ -15869,6 +16230,7 @@ module Aws::Pinpoint
|
|
15869
16230
|
class UpdateBaiduChannelRequest < Struct.new(
|
15870
16231
|
:application_id,
|
15871
16232
|
:baidu_channel_request)
|
16233
|
+
SENSITIVE = []
|
15872
16234
|
include Aws::Structure
|
15873
16235
|
end
|
15874
16236
|
|
@@ -15881,6 +16243,7 @@ module Aws::Pinpoint
|
|
15881
16243
|
#
|
15882
16244
|
class UpdateBaiduChannelResponse < Struct.new(
|
15883
16245
|
:baidu_channel_response)
|
16246
|
+
SENSITIVE = []
|
15884
16247
|
include Aws::Structure
|
15885
16248
|
end
|
15886
16249
|
|
@@ -16219,6 +16582,7 @@ module Aws::Pinpoint
|
|
16219
16582
|
:application_id,
|
16220
16583
|
:campaign_id,
|
16221
16584
|
:write_campaign_request)
|
16585
|
+
SENSITIVE = []
|
16222
16586
|
include Aws::Structure
|
16223
16587
|
end
|
16224
16588
|
|
@@ -16231,6 +16595,7 @@ module Aws::Pinpoint
|
|
16231
16595
|
#
|
16232
16596
|
class UpdateCampaignResponse < Struct.new(
|
16233
16597
|
:campaign_response)
|
16598
|
+
SENSITIVE = []
|
16234
16599
|
include Aws::Structure
|
16235
16600
|
end
|
16236
16601
|
|
@@ -16261,6 +16626,7 @@ module Aws::Pinpoint
|
|
16261
16626
|
class UpdateEmailChannelRequest < Struct.new(
|
16262
16627
|
:application_id,
|
16263
16628
|
:email_channel_request)
|
16629
|
+
SENSITIVE = []
|
16264
16630
|
include Aws::Structure
|
16265
16631
|
end
|
16266
16632
|
|
@@ -16273,6 +16639,7 @@ module Aws::Pinpoint
|
|
16273
16639
|
#
|
16274
16640
|
class UpdateEmailChannelResponse < Struct.new(
|
16275
16641
|
:email_channel_response)
|
16642
|
+
SENSITIVE = []
|
16276
16643
|
include Aws::Structure
|
16277
16644
|
end
|
16278
16645
|
|
@@ -16317,6 +16684,7 @@ module Aws::Pinpoint
|
|
16317
16684
|
:email_template_request,
|
16318
16685
|
:template_name,
|
16319
16686
|
:version)
|
16687
|
+
SENSITIVE = []
|
16320
16688
|
include Aws::Structure
|
16321
16689
|
end
|
16322
16690
|
|
@@ -16328,6 +16696,7 @@ module Aws::Pinpoint
|
|
16328
16696
|
#
|
16329
16697
|
class UpdateEmailTemplateResponse < Struct.new(
|
16330
16698
|
:message_body)
|
16699
|
+
SENSITIVE = []
|
16331
16700
|
include Aws::Structure
|
16332
16701
|
end
|
16333
16702
|
|
@@ -16393,6 +16762,7 @@ module Aws::Pinpoint
|
|
16393
16762
|
:application_id,
|
16394
16763
|
:endpoint_id,
|
16395
16764
|
:endpoint_request)
|
16765
|
+
SENSITIVE = []
|
16396
16766
|
include Aws::Structure
|
16397
16767
|
end
|
16398
16768
|
|
@@ -16404,6 +16774,7 @@ module Aws::Pinpoint
|
|
16404
16774
|
#
|
16405
16775
|
class UpdateEndpointResponse < Struct.new(
|
16406
16776
|
:message_body)
|
16777
|
+
SENSITIVE = []
|
16407
16778
|
include Aws::Structure
|
16408
16779
|
end
|
16409
16780
|
|
@@ -16470,6 +16841,7 @@ module Aws::Pinpoint
|
|
16470
16841
|
class UpdateEndpointsBatchRequest < Struct.new(
|
16471
16842
|
:application_id,
|
16472
16843
|
:endpoint_batch_request)
|
16844
|
+
SENSITIVE = []
|
16473
16845
|
include Aws::Structure
|
16474
16846
|
end
|
16475
16847
|
|
@@ -16481,6 +16853,7 @@ module Aws::Pinpoint
|
|
16481
16853
|
#
|
16482
16854
|
class UpdateEndpointsBatchResponse < Struct.new(
|
16483
16855
|
:message_body)
|
16856
|
+
SENSITIVE = []
|
16484
16857
|
include Aws::Structure
|
16485
16858
|
end
|
16486
16859
|
|
@@ -16510,6 +16883,7 @@ module Aws::Pinpoint
|
|
16510
16883
|
class UpdateGcmChannelRequest < Struct.new(
|
16511
16884
|
:application_id,
|
16512
16885
|
:gcm_channel_request)
|
16886
|
+
SENSITIVE = []
|
16513
16887
|
include Aws::Structure
|
16514
16888
|
end
|
16515
16889
|
|
@@ -16524,6 +16898,7 @@ module Aws::Pinpoint
|
|
16524
16898
|
#
|
16525
16899
|
class UpdateGcmChannelResponse < Struct.new(
|
16526
16900
|
:gcm_channel_response)
|
16901
|
+
SENSITIVE = []
|
16527
16902
|
include Aws::Structure
|
16528
16903
|
end
|
16529
16904
|
|
@@ -16846,6 +17221,7 @@ module Aws::Pinpoint
|
|
16846
17221
|
:application_id,
|
16847
17222
|
:journey_id,
|
16848
17223
|
:write_journey_request)
|
17224
|
+
SENSITIVE = []
|
16849
17225
|
include Aws::Structure
|
16850
17226
|
end
|
16851
17227
|
|
@@ -16858,6 +17234,7 @@ module Aws::Pinpoint
|
|
16858
17234
|
#
|
16859
17235
|
class UpdateJourneyResponse < Struct.new(
|
16860
17236
|
:journey_response)
|
17237
|
+
SENSITIVE = []
|
16861
17238
|
include Aws::Structure
|
16862
17239
|
end
|
16863
17240
|
|
@@ -16888,6 +17265,7 @@ module Aws::Pinpoint
|
|
16888
17265
|
:application_id,
|
16889
17266
|
:journey_id,
|
16890
17267
|
:journey_state_request)
|
17268
|
+
SENSITIVE = []
|
16891
17269
|
include Aws::Structure
|
16892
17270
|
end
|
16893
17271
|
|
@@ -16900,6 +17278,7 @@ module Aws::Pinpoint
|
|
16900
17278
|
#
|
16901
17279
|
class UpdateJourneyStateResponse < Struct.new(
|
16902
17280
|
:journey_response)
|
17281
|
+
SENSITIVE = []
|
16903
17282
|
include Aws::Structure
|
16904
17283
|
end
|
16905
17284
|
|
@@ -16991,6 +17370,7 @@ module Aws::Pinpoint
|
|
16991
17370
|
:push_notification_template_request,
|
16992
17371
|
:template_name,
|
16993
17372
|
:version)
|
17373
|
+
SENSITIVE = []
|
16994
17374
|
include Aws::Structure
|
16995
17375
|
end
|
16996
17376
|
|
@@ -17002,6 +17382,7 @@ module Aws::Pinpoint
|
|
17002
17382
|
#
|
17003
17383
|
class UpdatePushTemplateResponse < Struct.new(
|
17004
17384
|
:message_body)
|
17385
|
+
SENSITIVE = []
|
17005
17386
|
include Aws::Structure
|
17006
17387
|
end
|
17007
17388
|
|
@@ -17146,6 +17527,7 @@ module Aws::Pinpoint
|
|
17146
17527
|
:recommendation_transformer_uri,
|
17147
17528
|
:recommendations_display_name,
|
17148
17529
|
:recommendations_per_message)
|
17530
|
+
SENSITIVE = []
|
17149
17531
|
include Aws::Structure
|
17150
17532
|
end
|
17151
17533
|
|
@@ -17182,6 +17564,7 @@ module Aws::Pinpoint
|
|
17182
17564
|
class UpdateRecommenderConfigurationRequest < Struct.new(
|
17183
17565
|
:recommender_id,
|
17184
17566
|
:update_recommender_configuration)
|
17567
|
+
SENSITIVE = []
|
17185
17568
|
include Aws::Structure
|
17186
17569
|
end
|
17187
17570
|
|
@@ -17194,6 +17577,7 @@ module Aws::Pinpoint
|
|
17194
17577
|
#
|
17195
17578
|
class UpdateRecommenderConfigurationResponse < Struct.new(
|
17196
17579
|
:recommender_configuration_response)
|
17580
|
+
SENSITIVE = []
|
17197
17581
|
include Aws::Structure
|
17198
17582
|
end
|
17199
17583
|
|
@@ -17376,6 +17760,7 @@ module Aws::Pinpoint
|
|
17376
17760
|
:application_id,
|
17377
17761
|
:segment_id,
|
17378
17762
|
:write_segment_request)
|
17763
|
+
SENSITIVE = []
|
17379
17764
|
include Aws::Structure
|
17380
17765
|
end
|
17381
17766
|
|
@@ -17388,6 +17773,7 @@ module Aws::Pinpoint
|
|
17388
17773
|
#
|
17389
17774
|
class UpdateSegmentResponse < Struct.new(
|
17390
17775
|
:segment_response)
|
17776
|
+
SENSITIVE = []
|
17391
17777
|
include Aws::Structure
|
17392
17778
|
end
|
17393
17779
|
|
@@ -17416,6 +17802,7 @@ module Aws::Pinpoint
|
|
17416
17802
|
class UpdateSmsChannelRequest < Struct.new(
|
17417
17803
|
:application_id,
|
17418
17804
|
:sms_channel_request)
|
17805
|
+
SENSITIVE = []
|
17419
17806
|
include Aws::Structure
|
17420
17807
|
end
|
17421
17808
|
|
@@ -17428,6 +17815,7 @@ module Aws::Pinpoint
|
|
17428
17815
|
#
|
17429
17816
|
class UpdateSmsChannelResponse < Struct.new(
|
17430
17817
|
:sms_channel_response)
|
17818
|
+
SENSITIVE = []
|
17431
17819
|
include Aws::Structure
|
17432
17820
|
end
|
17433
17821
|
|
@@ -17470,6 +17858,7 @@ module Aws::Pinpoint
|
|
17470
17858
|
:sms_template_request,
|
17471
17859
|
:template_name,
|
17472
17860
|
:version)
|
17861
|
+
SENSITIVE = []
|
17473
17862
|
include Aws::Structure
|
17474
17863
|
end
|
17475
17864
|
|
@@ -17481,6 +17870,7 @@ module Aws::Pinpoint
|
|
17481
17870
|
#
|
17482
17871
|
class UpdateSmsTemplateResponse < Struct.new(
|
17483
17872
|
:message_body)
|
17873
|
+
SENSITIVE = []
|
17484
17874
|
include Aws::Structure
|
17485
17875
|
end
|
17486
17876
|
|
@@ -17512,6 +17902,7 @@ module Aws::Pinpoint
|
|
17512
17902
|
:template_active_version_request,
|
17513
17903
|
:template_name,
|
17514
17904
|
:template_type)
|
17905
|
+
SENSITIVE = []
|
17515
17906
|
include Aws::Structure
|
17516
17907
|
end
|
17517
17908
|
|
@@ -17523,6 +17914,7 @@ module Aws::Pinpoint
|
|
17523
17914
|
#
|
17524
17915
|
class UpdateTemplateActiveVersionResponse < Struct.new(
|
17525
17916
|
:message_body)
|
17917
|
+
SENSITIVE = []
|
17526
17918
|
include Aws::Structure
|
17527
17919
|
end
|
17528
17920
|
|
@@ -17549,6 +17941,7 @@ module Aws::Pinpoint
|
|
17549
17941
|
class UpdateVoiceChannelRequest < Struct.new(
|
17550
17942
|
:application_id,
|
17551
17943
|
:voice_channel_request)
|
17944
|
+
SENSITIVE = []
|
17552
17945
|
include Aws::Structure
|
17553
17946
|
end
|
17554
17947
|
|
@@ -17561,6 +17954,7 @@ module Aws::Pinpoint
|
|
17561
17954
|
#
|
17562
17955
|
class UpdateVoiceChannelResponse < Struct.new(
|
17563
17956
|
:voice_channel_response)
|
17957
|
+
SENSITIVE = []
|
17564
17958
|
include Aws::Structure
|
17565
17959
|
end
|
17566
17960
|
|
@@ -17604,6 +17998,7 @@ module Aws::Pinpoint
|
|
17604
17998
|
:template_name,
|
17605
17999
|
:version,
|
17606
18000
|
:voice_template_request)
|
18001
|
+
SENSITIVE = []
|
17607
18002
|
include Aws::Structure
|
17608
18003
|
end
|
17609
18004
|
|
@@ -17615,6 +18010,7 @@ module Aws::Pinpoint
|
|
17615
18010
|
#
|
17616
18011
|
class UpdateVoiceTemplateResponse < Struct.new(
|
17617
18012
|
:message_body)
|
18013
|
+
SENSITIVE = []
|
17618
18014
|
include Aws::Structure
|
17619
18015
|
end
|
17620
18016
|
|
@@ -17636,6 +18032,7 @@ module Aws::Pinpoint
|
|
17636
18032
|
#
|
17637
18033
|
class VoiceChannelRequest < Struct.new(
|
17638
18034
|
:enabled)
|
18035
|
+
SENSITIVE = []
|
17639
18036
|
include Aws::Structure
|
17640
18037
|
end
|
17641
18038
|
|
@@ -17701,6 +18098,7 @@ module Aws::Pinpoint
|
|
17701
18098
|
:last_modified_date,
|
17702
18099
|
:platform,
|
17703
18100
|
:version)
|
18101
|
+
SENSITIVE = []
|
17704
18102
|
include Aws::Structure
|
17705
18103
|
end
|
17706
18104
|
|
@@ -17764,6 +18162,7 @@ module Aws::Pinpoint
|
|
17764
18162
|
:origination_number,
|
17765
18163
|
:substitutions,
|
17766
18164
|
:voice_id)
|
18165
|
+
SENSITIVE = []
|
17767
18166
|
include Aws::Structure
|
17768
18167
|
end
|
17769
18168
|
|
@@ -17839,6 +18238,7 @@ module Aws::Pinpoint
|
|
17839
18238
|
:tags,
|
17840
18239
|
:template_description,
|
17841
18240
|
:voice_id)
|
18241
|
+
SENSITIVE = []
|
17842
18242
|
include Aws::Structure
|
17843
18243
|
end
|
17844
18244
|
|
@@ -17933,6 +18333,7 @@ module Aws::Pinpoint
|
|
17933
18333
|
:template_type,
|
17934
18334
|
:version,
|
17935
18335
|
:voice_id)
|
18336
|
+
SENSITIVE = []
|
17936
18337
|
include Aws::Structure
|
17937
18338
|
end
|
17938
18339
|
|
@@ -17966,6 +18367,7 @@ module Aws::Pinpoint
|
|
17966
18367
|
class WaitActivity < Struct.new(
|
17967
18368
|
:next_activity,
|
17968
18369
|
:wait_time)
|
18370
|
+
SENSITIVE = []
|
17969
18371
|
include Aws::Structure
|
17970
18372
|
end
|
17971
18373
|
|
@@ -17998,6 +18400,7 @@ module Aws::Pinpoint
|
|
17998
18400
|
class WaitTime < Struct.new(
|
17999
18401
|
:wait_for,
|
18000
18402
|
:wait_until)
|
18403
|
+
SENSITIVE = []
|
18001
18404
|
include Aws::Structure
|
18002
18405
|
end
|
18003
18406
|
|
@@ -18094,6 +18497,7 @@ module Aws::Pinpoint
|
|
18094
18497
|
:cloud_watch_metrics_enabled,
|
18095
18498
|
:limits,
|
18096
18499
|
:quiet_time)
|
18500
|
+
SENSITIVE = []
|
18097
18501
|
include Aws::Structure
|
18098
18502
|
end
|
18099
18503
|
|
@@ -18510,6 +18914,7 @@ module Aws::Pinpoint
|
|
18510
18914
|
:template_configuration,
|
18511
18915
|
:treatment_description,
|
18512
18916
|
:treatment_name)
|
18917
|
+
SENSITIVE = []
|
18513
18918
|
include Aws::Structure
|
18514
18919
|
end
|
18515
18920
|
|
@@ -18548,6 +18953,7 @@ module Aws::Pinpoint
|
|
18548
18953
|
class WriteEventStream < Struct.new(
|
18549
18954
|
:destination_stream_arn,
|
18550
18955
|
:role_arn)
|
18956
|
+
SENSITIVE = []
|
18551
18957
|
include Aws::Structure
|
18552
18958
|
end
|
18553
18959
|
|
@@ -18958,6 +19364,7 @@ module Aws::Pinpoint
|
|
18958
19364
|
:start_activity,
|
18959
19365
|
:start_condition,
|
18960
19366
|
:state)
|
19367
|
+
SENSITIVE = []
|
18961
19368
|
include Aws::Structure
|
18962
19369
|
end
|
18963
19370
|
|
@@ -19150,6 +19557,7 @@ module Aws::Pinpoint
|
|
19150
19557
|
:name,
|
19151
19558
|
:segment_groups,
|
19152
19559
|
:tags)
|
19560
|
+
SENSITIVE = []
|
19153
19561
|
include Aws::Structure
|
19154
19562
|
end
|
19155
19563
|
|
@@ -19347,6 +19755,7 @@ module Aws::Pinpoint
|
|
19347
19755
|
:template_configuration,
|
19348
19756
|
:treatment_description,
|
19349
19757
|
:treatment_name)
|
19758
|
+
SENSITIVE = []
|
19350
19759
|
include Aws::Structure
|
19351
19760
|
end
|
19352
19761
|
|