@aws-sdk/client-sns 3.180.0 → 3.183.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.
- package/CHANGELOG.md +26 -0
- package/dist-cjs/protocols/Aws_query.js +270 -262
- package/dist-es/SNS.js +170 -177
- package/dist-es/SNSClient.js +22 -28
- package/dist-es/commands/AddPermissionCommand.js +22 -29
- package/dist-es/commands/CheckIfPhoneNumberIsOptedOutCommand.js +21 -28
- package/dist-es/commands/ConfirmSubscriptionCommand.js +21 -28
- package/dist-es/commands/CreatePlatformApplicationCommand.js +21 -28
- package/dist-es/commands/CreatePlatformEndpointCommand.js +21 -28
- package/dist-es/commands/CreateSMSSandboxPhoneNumberCommand.js +21 -28
- package/dist-es/commands/CreateTopicCommand.js +21 -28
- package/dist-es/commands/DeleteEndpointCommand.js +22 -29
- package/dist-es/commands/DeletePlatformApplicationCommand.js +22 -29
- package/dist-es/commands/DeleteSMSSandboxPhoneNumberCommand.js +21 -28
- package/dist-es/commands/DeleteTopicCommand.js +22 -29
- package/dist-es/commands/GetDataProtectionPolicyCommand.js +21 -28
- package/dist-es/commands/GetEndpointAttributesCommand.js +21 -28
- package/dist-es/commands/GetPlatformApplicationAttributesCommand.js +21 -28
- package/dist-es/commands/GetSMSAttributesCommand.js +21 -28
- package/dist-es/commands/GetSMSSandboxAccountStatusCommand.js +21 -28
- package/dist-es/commands/GetSubscriptionAttributesCommand.js +21 -28
- package/dist-es/commands/GetTopicAttributesCommand.js +21 -28
- package/dist-es/commands/ListEndpointsByPlatformApplicationCommand.js +21 -28
- package/dist-es/commands/ListOriginationNumbersCommand.js +21 -28
- package/dist-es/commands/ListPhoneNumbersOptedOutCommand.js +21 -28
- package/dist-es/commands/ListPlatformApplicationsCommand.js +21 -28
- package/dist-es/commands/ListSMSSandboxPhoneNumbersCommand.js +21 -28
- package/dist-es/commands/ListSubscriptionsByTopicCommand.js +21 -28
- package/dist-es/commands/ListSubscriptionsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListTopicsCommand.js +21 -28
- package/dist-es/commands/OptInPhoneNumberCommand.js +21 -28
- package/dist-es/commands/PublishBatchCommand.js +21 -28
- package/dist-es/commands/PublishCommand.js +21 -28
- package/dist-es/commands/PutDataProtectionPolicyCommand.js +22 -29
- package/dist-es/commands/RemovePermissionCommand.js +22 -29
- package/dist-es/commands/SetEndpointAttributesCommand.js +22 -29
- package/dist-es/commands/SetPlatformApplicationAttributesCommand.js +22 -29
- package/dist-es/commands/SetSMSAttributesCommand.js +21 -28
- package/dist-es/commands/SetSubscriptionAttributesCommand.js +22 -29
- package/dist-es/commands/SetTopicAttributesCommand.js +22 -29
- package/dist-es/commands/SubscribeCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UnsubscribeCommand.js +22 -29
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/VerifySMSSandboxPhoneNumberCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/SNSServiceException.js +5 -10
- package/dist-es/models/models_0.js +639 -472
- package/dist-es/pagination/ListEndpointsByPlatformApplicationPaginator.js +24 -67
- package/dist-es/pagination/ListOriginationNumbersPaginator.js +25 -68
- package/dist-es/pagination/ListPhoneNumbersOptedOutPaginator.js +24 -67
- package/dist-es/pagination/ListPlatformApplicationsPaginator.js +24 -67
- package/dist-es/pagination/ListSMSSandboxPhoneNumbersPaginator.js +25 -68
- package/dist-es/pagination/ListSubscriptionsByTopicPaginator.js +24 -67
- package/dist-es/pagination/ListSubscriptionsPaginator.js +24 -67
- package/dist-es/pagination/ListTopicsPaginator.js +24 -67
- package/dist-es/protocols/Aws_query.js +3114 -4092
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,89 +1,88 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SNSServiceException as __BaseException } from "./SNSServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
}
|
|
86
|
-
|
|
2
|
+
export class AuthorizationErrorException extends __BaseException {
|
|
3
|
+
constructor(opts) {
|
|
4
|
+
super({
|
|
5
|
+
name: "AuthorizationErrorException",
|
|
6
|
+
$fault: "client",
|
|
7
|
+
...opts,
|
|
8
|
+
});
|
|
9
|
+
this.name = "AuthorizationErrorException";
|
|
10
|
+
this.$fault = "client";
|
|
11
|
+
Object.setPrototypeOf(this, AuthorizationErrorException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class InternalErrorException extends __BaseException {
|
|
15
|
+
constructor(opts) {
|
|
16
|
+
super({
|
|
17
|
+
name: "InternalErrorException",
|
|
18
|
+
$fault: "server",
|
|
19
|
+
...opts,
|
|
20
|
+
});
|
|
21
|
+
this.name = "InternalErrorException";
|
|
22
|
+
this.$fault = "server";
|
|
23
|
+
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class InvalidParameterException extends __BaseException {
|
|
27
|
+
constructor(opts) {
|
|
28
|
+
super({
|
|
29
|
+
name: "InvalidParameterException",
|
|
30
|
+
$fault: "client",
|
|
31
|
+
...opts,
|
|
32
|
+
});
|
|
33
|
+
this.name = "InvalidParameterException";
|
|
34
|
+
this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class NotFoundException extends __BaseException {
|
|
39
|
+
constructor(opts) {
|
|
40
|
+
super({
|
|
41
|
+
name: "NotFoundException",
|
|
42
|
+
$fault: "client",
|
|
43
|
+
...opts,
|
|
44
|
+
});
|
|
45
|
+
this.name = "NotFoundException";
|
|
46
|
+
this.$fault = "client";
|
|
47
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class ThrottledException extends __BaseException {
|
|
51
|
+
constructor(opts) {
|
|
52
|
+
super({
|
|
53
|
+
name: "ThrottledException",
|
|
54
|
+
$fault: "client",
|
|
55
|
+
...opts,
|
|
56
|
+
});
|
|
57
|
+
this.name = "ThrottledException";
|
|
58
|
+
this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class FilterPolicyLimitExceededException extends __BaseException {
|
|
63
|
+
constructor(opts) {
|
|
64
|
+
super({
|
|
65
|
+
name: "FilterPolicyLimitExceededException",
|
|
66
|
+
$fault: "client",
|
|
67
|
+
...opts,
|
|
68
|
+
});
|
|
69
|
+
this.name = "FilterPolicyLimitExceededException";
|
|
70
|
+
this.$fault = "client";
|
|
71
|
+
Object.setPrototypeOf(this, FilterPolicyLimitExceededException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class SubscriptionLimitExceededException extends __BaseException {
|
|
75
|
+
constructor(opts) {
|
|
76
|
+
super({
|
|
77
|
+
name: "SubscriptionLimitExceededException",
|
|
78
|
+
$fault: "client",
|
|
79
|
+
...opts,
|
|
80
|
+
});
|
|
81
|
+
this.name = "SubscriptionLimitExceededException";
|
|
82
|
+
this.$fault = "client";
|
|
83
|
+
Object.setPrototypeOf(this, SubscriptionLimitExceededException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
87
86
|
export var LanguageCodeString;
|
|
88
87
|
(function (LanguageCodeString) {
|
|
89
88
|
LanguageCodeString["de_DE"] = "de-DE";
|
|
@@ -100,114 +99,114 @@ export var LanguageCodeString;
|
|
|
100
99
|
LanguageCodeString["zh_CN"] = "zh-CN";
|
|
101
100
|
LanguageCodeString["zh_TW"] = "zh-TW";
|
|
102
101
|
})(LanguageCodeString || (LanguageCodeString = {}));
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
}
|
|
210
|
-
|
|
102
|
+
export class OptedOutException extends __BaseException {
|
|
103
|
+
constructor(opts) {
|
|
104
|
+
super({
|
|
105
|
+
name: "OptedOutException",
|
|
106
|
+
$fault: "client",
|
|
107
|
+
...opts,
|
|
108
|
+
});
|
|
109
|
+
this.name = "OptedOutException";
|
|
110
|
+
this.$fault = "client";
|
|
111
|
+
Object.setPrototypeOf(this, OptedOutException.prototype);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
export class UserErrorException extends __BaseException {
|
|
115
|
+
constructor(opts) {
|
|
116
|
+
super({
|
|
117
|
+
name: "UserErrorException",
|
|
118
|
+
$fault: "client",
|
|
119
|
+
...opts,
|
|
120
|
+
});
|
|
121
|
+
this.name = "UserErrorException";
|
|
122
|
+
this.$fault = "client";
|
|
123
|
+
Object.setPrototypeOf(this, UserErrorException.prototype);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
export class ConcurrentAccessException extends __BaseException {
|
|
127
|
+
constructor(opts) {
|
|
128
|
+
super({
|
|
129
|
+
name: "ConcurrentAccessException",
|
|
130
|
+
$fault: "client",
|
|
131
|
+
...opts,
|
|
132
|
+
});
|
|
133
|
+
this.name = "ConcurrentAccessException";
|
|
134
|
+
this.$fault = "client";
|
|
135
|
+
Object.setPrototypeOf(this, ConcurrentAccessException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
export class InvalidSecurityException extends __BaseException {
|
|
139
|
+
constructor(opts) {
|
|
140
|
+
super({
|
|
141
|
+
name: "InvalidSecurityException",
|
|
142
|
+
$fault: "client",
|
|
143
|
+
...opts,
|
|
144
|
+
});
|
|
145
|
+
this.name = "InvalidSecurityException";
|
|
146
|
+
this.$fault = "client";
|
|
147
|
+
Object.setPrototypeOf(this, InvalidSecurityException.prototype);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
export class StaleTagException extends __BaseException {
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "StaleTagException",
|
|
154
|
+
$fault: "client",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
this.name = "StaleTagException";
|
|
158
|
+
this.$fault = "client";
|
|
159
|
+
Object.setPrototypeOf(this, StaleTagException.prototype);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
export class TagLimitExceededException extends __BaseException {
|
|
163
|
+
constructor(opts) {
|
|
164
|
+
super({
|
|
165
|
+
name: "TagLimitExceededException",
|
|
166
|
+
$fault: "client",
|
|
167
|
+
...opts,
|
|
168
|
+
});
|
|
169
|
+
this.name = "TagLimitExceededException";
|
|
170
|
+
this.$fault = "client";
|
|
171
|
+
Object.setPrototypeOf(this, TagLimitExceededException.prototype);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
export class TagPolicyException extends __BaseException {
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "TagPolicyException",
|
|
178
|
+
$fault: "client",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
this.name = "TagPolicyException";
|
|
182
|
+
this.$fault = "client";
|
|
183
|
+
Object.setPrototypeOf(this, TagPolicyException.prototype);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
export class TopicLimitExceededException extends __BaseException {
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "TopicLimitExceededException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
this.name = "TopicLimitExceededException";
|
|
194
|
+
this.$fault = "client";
|
|
195
|
+
Object.setPrototypeOf(this, TopicLimitExceededException.prototype);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ResourceNotFoundException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
this.name = "ResourceNotFoundException";
|
|
206
|
+
this.$fault = "client";
|
|
207
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
211
210
|
export var NumberCapability;
|
|
212
211
|
(function (NumberCapability) {
|
|
213
212
|
NumberCapability["MMS"] = "MMS";
|
|
@@ -220,287 +219,455 @@ export var RouteType;
|
|
|
220
219
|
RouteType["Promotional"] = "Promotional";
|
|
221
220
|
RouteType["Transactional"] = "Transactional";
|
|
222
221
|
})(RouteType || (RouteType = {}));
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
}
|
|
235
|
-
|
|
222
|
+
export class ValidationException extends __BaseException {
|
|
223
|
+
constructor(opts) {
|
|
224
|
+
super({
|
|
225
|
+
name: "ValidationException",
|
|
226
|
+
$fault: "client",
|
|
227
|
+
...opts,
|
|
228
|
+
});
|
|
229
|
+
this.name = "ValidationException";
|
|
230
|
+
this.$fault = "client";
|
|
231
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
232
|
+
this.Message = opts.Message;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
236
235
|
export var SMSSandboxPhoneNumberVerificationStatus;
|
|
237
236
|
(function (SMSSandboxPhoneNumberVerificationStatus) {
|
|
238
237
|
SMSSandboxPhoneNumberVerificationStatus["Pending"] = "Pending";
|
|
239
238
|
SMSSandboxPhoneNumberVerificationStatus["Verified"] = "Verified";
|
|
240
239
|
})(SMSSandboxPhoneNumberVerificationStatus || (SMSSandboxPhoneNumberVerificationStatus = {}));
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
export
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
export
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
export
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
export
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
export
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
export
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
export
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
export
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
export
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
export
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
export
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
export
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
export
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
export
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
export
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
export
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
export
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
export
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
export
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
export
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
export
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
export
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
export
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
export
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
export
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
export
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
export
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
export
|
|
505
|
-
|
|
506
|
-
|
|
240
|
+
export class EndpointDisabledException extends __BaseException {
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "EndpointDisabledException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
this.name = "EndpointDisabledException";
|
|
248
|
+
this.$fault = "client";
|
|
249
|
+
Object.setPrototypeOf(this, EndpointDisabledException.prototype);
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
export class InvalidParameterValueException extends __BaseException {
|
|
253
|
+
constructor(opts) {
|
|
254
|
+
super({
|
|
255
|
+
name: "InvalidParameterValueException",
|
|
256
|
+
$fault: "client",
|
|
257
|
+
...opts,
|
|
258
|
+
});
|
|
259
|
+
this.name = "InvalidParameterValueException";
|
|
260
|
+
this.$fault = "client";
|
|
261
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
export class KMSAccessDeniedException extends __BaseException {
|
|
265
|
+
constructor(opts) {
|
|
266
|
+
super({
|
|
267
|
+
name: "KMSAccessDeniedException",
|
|
268
|
+
$fault: "client",
|
|
269
|
+
...opts,
|
|
270
|
+
});
|
|
271
|
+
this.name = "KMSAccessDeniedException";
|
|
272
|
+
this.$fault = "client";
|
|
273
|
+
Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
export class KMSDisabledException extends __BaseException {
|
|
277
|
+
constructor(opts) {
|
|
278
|
+
super({
|
|
279
|
+
name: "KMSDisabledException",
|
|
280
|
+
$fault: "client",
|
|
281
|
+
...opts,
|
|
282
|
+
});
|
|
283
|
+
this.name = "KMSDisabledException";
|
|
284
|
+
this.$fault = "client";
|
|
285
|
+
Object.setPrototypeOf(this, KMSDisabledException.prototype);
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
export class KMSInvalidStateException extends __BaseException {
|
|
289
|
+
constructor(opts) {
|
|
290
|
+
super({
|
|
291
|
+
name: "KMSInvalidStateException",
|
|
292
|
+
$fault: "client",
|
|
293
|
+
...opts,
|
|
294
|
+
});
|
|
295
|
+
this.name = "KMSInvalidStateException";
|
|
296
|
+
this.$fault = "client";
|
|
297
|
+
Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
export class KMSNotFoundException extends __BaseException {
|
|
301
|
+
constructor(opts) {
|
|
302
|
+
super({
|
|
303
|
+
name: "KMSNotFoundException",
|
|
304
|
+
$fault: "client",
|
|
305
|
+
...opts,
|
|
306
|
+
});
|
|
307
|
+
this.name = "KMSNotFoundException";
|
|
308
|
+
this.$fault = "client";
|
|
309
|
+
Object.setPrototypeOf(this, KMSNotFoundException.prototype);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
export class KMSOptInRequired extends __BaseException {
|
|
313
|
+
constructor(opts) {
|
|
314
|
+
super({
|
|
315
|
+
name: "KMSOptInRequired",
|
|
316
|
+
$fault: "client",
|
|
317
|
+
...opts,
|
|
318
|
+
});
|
|
319
|
+
this.name = "KMSOptInRequired";
|
|
320
|
+
this.$fault = "client";
|
|
321
|
+
Object.setPrototypeOf(this, KMSOptInRequired.prototype);
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
export class KMSThrottlingException extends __BaseException {
|
|
325
|
+
constructor(opts) {
|
|
326
|
+
super({
|
|
327
|
+
name: "KMSThrottlingException",
|
|
328
|
+
$fault: "client",
|
|
329
|
+
...opts,
|
|
330
|
+
});
|
|
331
|
+
this.name = "KMSThrottlingException";
|
|
332
|
+
this.$fault = "client";
|
|
333
|
+
Object.setPrototypeOf(this, KMSThrottlingException.prototype);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
export class PlatformApplicationDisabledException extends __BaseException {
|
|
337
|
+
constructor(opts) {
|
|
338
|
+
super({
|
|
339
|
+
name: "PlatformApplicationDisabledException",
|
|
340
|
+
$fault: "client",
|
|
341
|
+
...opts,
|
|
342
|
+
});
|
|
343
|
+
this.name = "PlatformApplicationDisabledException";
|
|
344
|
+
this.$fault = "client";
|
|
345
|
+
Object.setPrototypeOf(this, PlatformApplicationDisabledException.prototype);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
export class BatchEntryIdsNotDistinctException extends __BaseException {
|
|
349
|
+
constructor(opts) {
|
|
350
|
+
super({
|
|
351
|
+
name: "BatchEntryIdsNotDistinctException",
|
|
352
|
+
$fault: "client",
|
|
353
|
+
...opts,
|
|
354
|
+
});
|
|
355
|
+
this.name = "BatchEntryIdsNotDistinctException";
|
|
356
|
+
this.$fault = "client";
|
|
357
|
+
Object.setPrototypeOf(this, BatchEntryIdsNotDistinctException.prototype);
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
export class BatchRequestTooLongException extends __BaseException {
|
|
361
|
+
constructor(opts) {
|
|
362
|
+
super({
|
|
363
|
+
name: "BatchRequestTooLongException",
|
|
364
|
+
$fault: "client",
|
|
365
|
+
...opts,
|
|
366
|
+
});
|
|
367
|
+
this.name = "BatchRequestTooLongException";
|
|
368
|
+
this.$fault = "client";
|
|
369
|
+
Object.setPrototypeOf(this, BatchRequestTooLongException.prototype);
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
export class EmptyBatchRequestException extends __BaseException {
|
|
373
|
+
constructor(opts) {
|
|
374
|
+
super({
|
|
375
|
+
name: "EmptyBatchRequestException",
|
|
376
|
+
$fault: "client",
|
|
377
|
+
...opts,
|
|
378
|
+
});
|
|
379
|
+
this.name = "EmptyBatchRequestException";
|
|
380
|
+
this.$fault = "client";
|
|
381
|
+
Object.setPrototypeOf(this, EmptyBatchRequestException.prototype);
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
export class InvalidBatchEntryIdException extends __BaseException {
|
|
385
|
+
constructor(opts) {
|
|
386
|
+
super({
|
|
387
|
+
name: "InvalidBatchEntryIdException",
|
|
388
|
+
$fault: "client",
|
|
389
|
+
...opts,
|
|
390
|
+
});
|
|
391
|
+
this.name = "InvalidBatchEntryIdException";
|
|
392
|
+
this.$fault = "client";
|
|
393
|
+
Object.setPrototypeOf(this, InvalidBatchEntryIdException.prototype);
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
export class TooManyEntriesInBatchRequestException extends __BaseException {
|
|
397
|
+
constructor(opts) {
|
|
398
|
+
super({
|
|
399
|
+
name: "TooManyEntriesInBatchRequestException",
|
|
400
|
+
$fault: "client",
|
|
401
|
+
...opts,
|
|
402
|
+
});
|
|
403
|
+
this.name = "TooManyEntriesInBatchRequestException";
|
|
404
|
+
this.$fault = "client";
|
|
405
|
+
Object.setPrototypeOf(this, TooManyEntriesInBatchRequestException.prototype);
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
export class VerificationException extends __BaseException {
|
|
409
|
+
constructor(opts) {
|
|
410
|
+
super({
|
|
411
|
+
name: "VerificationException",
|
|
412
|
+
$fault: "client",
|
|
413
|
+
...opts,
|
|
414
|
+
});
|
|
415
|
+
this.name = "VerificationException";
|
|
416
|
+
this.$fault = "client";
|
|
417
|
+
Object.setPrototypeOf(this, VerificationException.prototype);
|
|
418
|
+
this.Message = opts.Message;
|
|
419
|
+
this.Status = opts.Status;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
export const AddPermissionInputFilterSensitiveLog = (obj) => ({
|
|
423
|
+
...obj,
|
|
424
|
+
});
|
|
425
|
+
export const CheckIfPhoneNumberIsOptedOutInputFilterSensitiveLog = (obj) => ({
|
|
426
|
+
...obj,
|
|
427
|
+
});
|
|
428
|
+
export const CheckIfPhoneNumberIsOptedOutResponseFilterSensitiveLog = (obj) => ({
|
|
429
|
+
...obj,
|
|
430
|
+
});
|
|
431
|
+
export const ConfirmSubscriptionInputFilterSensitiveLog = (obj) => ({
|
|
432
|
+
...obj,
|
|
433
|
+
});
|
|
434
|
+
export const ConfirmSubscriptionResponseFilterSensitiveLog = (obj) => ({
|
|
435
|
+
...obj,
|
|
436
|
+
});
|
|
437
|
+
export const CreatePlatformApplicationInputFilterSensitiveLog = (obj) => ({
|
|
438
|
+
...obj,
|
|
439
|
+
});
|
|
440
|
+
export const CreatePlatformApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
441
|
+
...obj,
|
|
442
|
+
});
|
|
443
|
+
export const CreateEndpointResponseFilterSensitiveLog = (obj) => ({
|
|
444
|
+
...obj,
|
|
445
|
+
});
|
|
446
|
+
export const CreatePlatformEndpointInputFilterSensitiveLog = (obj) => ({
|
|
447
|
+
...obj,
|
|
448
|
+
});
|
|
449
|
+
export const CreateSMSSandboxPhoneNumberInputFilterSensitiveLog = (obj) => ({
|
|
450
|
+
...obj,
|
|
451
|
+
});
|
|
452
|
+
export const CreateSMSSandboxPhoneNumberResultFilterSensitiveLog = (obj) => ({
|
|
453
|
+
...obj,
|
|
454
|
+
});
|
|
455
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
456
|
+
...obj,
|
|
457
|
+
});
|
|
458
|
+
export const CreateTopicInputFilterSensitiveLog = (obj) => ({
|
|
459
|
+
...obj,
|
|
460
|
+
});
|
|
461
|
+
export const CreateTopicResponseFilterSensitiveLog = (obj) => ({
|
|
462
|
+
...obj,
|
|
463
|
+
});
|
|
464
|
+
export const DeleteEndpointInputFilterSensitiveLog = (obj) => ({
|
|
465
|
+
...obj,
|
|
466
|
+
});
|
|
467
|
+
export const DeletePlatformApplicationInputFilterSensitiveLog = (obj) => ({
|
|
468
|
+
...obj,
|
|
469
|
+
});
|
|
470
|
+
export const DeleteSMSSandboxPhoneNumberInputFilterSensitiveLog = (obj) => ({
|
|
471
|
+
...obj,
|
|
472
|
+
});
|
|
473
|
+
export const DeleteSMSSandboxPhoneNumberResultFilterSensitiveLog = (obj) => ({
|
|
474
|
+
...obj,
|
|
475
|
+
});
|
|
476
|
+
export const DeleteTopicInputFilterSensitiveLog = (obj) => ({
|
|
477
|
+
...obj,
|
|
478
|
+
});
|
|
479
|
+
export const GetDataProtectionPolicyInputFilterSensitiveLog = (obj) => ({
|
|
480
|
+
...obj,
|
|
481
|
+
});
|
|
482
|
+
export const GetDataProtectionPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
483
|
+
...obj,
|
|
484
|
+
});
|
|
485
|
+
export const GetEndpointAttributesInputFilterSensitiveLog = (obj) => ({
|
|
486
|
+
...obj,
|
|
487
|
+
});
|
|
488
|
+
export const GetEndpointAttributesResponseFilterSensitiveLog = (obj) => ({
|
|
489
|
+
...obj,
|
|
490
|
+
});
|
|
491
|
+
export const GetPlatformApplicationAttributesInputFilterSensitiveLog = (obj) => ({
|
|
492
|
+
...obj,
|
|
493
|
+
});
|
|
494
|
+
export const GetPlatformApplicationAttributesResponseFilterSensitiveLog = (obj) => ({
|
|
495
|
+
...obj,
|
|
496
|
+
});
|
|
497
|
+
export const GetSMSAttributesInputFilterSensitiveLog = (obj) => ({
|
|
498
|
+
...obj,
|
|
499
|
+
});
|
|
500
|
+
export const GetSMSAttributesResponseFilterSensitiveLog = (obj) => ({
|
|
501
|
+
...obj,
|
|
502
|
+
});
|
|
503
|
+
export const GetSMSSandboxAccountStatusInputFilterSensitiveLog = (obj) => ({
|
|
504
|
+
...obj,
|
|
505
|
+
});
|
|
506
|
+
export const GetSMSSandboxAccountStatusResultFilterSensitiveLog = (obj) => ({
|
|
507
|
+
...obj,
|
|
508
|
+
});
|
|
509
|
+
export const GetSubscriptionAttributesInputFilterSensitiveLog = (obj) => ({
|
|
510
|
+
...obj,
|
|
511
|
+
});
|
|
512
|
+
export const GetSubscriptionAttributesResponseFilterSensitiveLog = (obj) => ({
|
|
513
|
+
...obj,
|
|
514
|
+
});
|
|
515
|
+
export const GetTopicAttributesInputFilterSensitiveLog = (obj) => ({
|
|
516
|
+
...obj,
|
|
517
|
+
});
|
|
518
|
+
export const GetTopicAttributesResponseFilterSensitiveLog = (obj) => ({
|
|
519
|
+
...obj,
|
|
520
|
+
});
|
|
521
|
+
export const ListEndpointsByPlatformApplicationInputFilterSensitiveLog = (obj) => ({
|
|
522
|
+
...obj,
|
|
523
|
+
});
|
|
524
|
+
export const EndpointFilterSensitiveLog = (obj) => ({
|
|
525
|
+
...obj,
|
|
526
|
+
});
|
|
527
|
+
export const ListEndpointsByPlatformApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
528
|
+
...obj,
|
|
529
|
+
});
|
|
530
|
+
export const ListOriginationNumbersRequestFilterSensitiveLog = (obj) => ({
|
|
531
|
+
...obj,
|
|
532
|
+
});
|
|
533
|
+
export const PhoneNumberInformationFilterSensitiveLog = (obj) => ({
|
|
534
|
+
...obj,
|
|
535
|
+
});
|
|
536
|
+
export const ListOriginationNumbersResultFilterSensitiveLog = (obj) => ({
|
|
537
|
+
...obj,
|
|
538
|
+
});
|
|
539
|
+
export const ListPhoneNumbersOptedOutInputFilterSensitiveLog = (obj) => ({
|
|
540
|
+
...obj,
|
|
541
|
+
});
|
|
542
|
+
export const ListPhoneNumbersOptedOutResponseFilterSensitiveLog = (obj) => ({
|
|
543
|
+
...obj,
|
|
544
|
+
});
|
|
545
|
+
export const ListPlatformApplicationsInputFilterSensitiveLog = (obj) => ({
|
|
546
|
+
...obj,
|
|
547
|
+
});
|
|
548
|
+
export const PlatformApplicationFilterSensitiveLog = (obj) => ({
|
|
549
|
+
...obj,
|
|
550
|
+
});
|
|
551
|
+
export const ListPlatformApplicationsResponseFilterSensitiveLog = (obj) => ({
|
|
552
|
+
...obj,
|
|
553
|
+
});
|
|
554
|
+
export const ListSMSSandboxPhoneNumbersInputFilterSensitiveLog = (obj) => ({
|
|
555
|
+
...obj,
|
|
556
|
+
});
|
|
557
|
+
export const SMSSandboxPhoneNumberFilterSensitiveLog = (obj) => ({
|
|
558
|
+
...obj,
|
|
559
|
+
});
|
|
560
|
+
export const ListSMSSandboxPhoneNumbersResultFilterSensitiveLog = (obj) => ({
|
|
561
|
+
...obj,
|
|
562
|
+
});
|
|
563
|
+
export const ListSubscriptionsInputFilterSensitiveLog = (obj) => ({
|
|
564
|
+
...obj,
|
|
565
|
+
});
|
|
566
|
+
export const SubscriptionFilterSensitiveLog = (obj) => ({
|
|
567
|
+
...obj,
|
|
568
|
+
});
|
|
569
|
+
export const ListSubscriptionsResponseFilterSensitiveLog = (obj) => ({
|
|
570
|
+
...obj,
|
|
571
|
+
});
|
|
572
|
+
export const ListSubscriptionsByTopicInputFilterSensitiveLog = (obj) => ({
|
|
573
|
+
...obj,
|
|
574
|
+
});
|
|
575
|
+
export const ListSubscriptionsByTopicResponseFilterSensitiveLog = (obj) => ({
|
|
576
|
+
...obj,
|
|
577
|
+
});
|
|
578
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
579
|
+
...obj,
|
|
580
|
+
});
|
|
581
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
582
|
+
...obj,
|
|
583
|
+
});
|
|
584
|
+
export const ListTopicsInputFilterSensitiveLog = (obj) => ({
|
|
585
|
+
...obj,
|
|
586
|
+
});
|
|
587
|
+
export const TopicFilterSensitiveLog = (obj) => ({
|
|
588
|
+
...obj,
|
|
589
|
+
});
|
|
590
|
+
export const ListTopicsResponseFilterSensitiveLog = (obj) => ({
|
|
591
|
+
...obj,
|
|
592
|
+
});
|
|
593
|
+
export const OptInPhoneNumberInputFilterSensitiveLog = (obj) => ({
|
|
594
|
+
...obj,
|
|
595
|
+
});
|
|
596
|
+
export const OptInPhoneNumberResponseFilterSensitiveLog = (obj) => ({
|
|
597
|
+
...obj,
|
|
598
|
+
});
|
|
599
|
+
export const MessageAttributeValueFilterSensitiveLog = (obj) => ({
|
|
600
|
+
...obj,
|
|
601
|
+
});
|
|
602
|
+
export const PublishInputFilterSensitiveLog = (obj) => ({
|
|
603
|
+
...obj,
|
|
604
|
+
});
|
|
605
|
+
export const PublishResponseFilterSensitiveLog = (obj) => ({
|
|
606
|
+
...obj,
|
|
607
|
+
});
|
|
608
|
+
export const PublishBatchRequestEntryFilterSensitiveLog = (obj) => ({
|
|
609
|
+
...obj,
|
|
610
|
+
});
|
|
611
|
+
export const PublishBatchInputFilterSensitiveLog = (obj) => ({
|
|
612
|
+
...obj,
|
|
613
|
+
});
|
|
614
|
+
export const BatchResultErrorEntryFilterSensitiveLog = (obj) => ({
|
|
615
|
+
...obj,
|
|
616
|
+
});
|
|
617
|
+
export const PublishBatchResultEntryFilterSensitiveLog = (obj) => ({
|
|
618
|
+
...obj,
|
|
619
|
+
});
|
|
620
|
+
export const PublishBatchResponseFilterSensitiveLog = (obj) => ({
|
|
621
|
+
...obj,
|
|
622
|
+
});
|
|
623
|
+
export const PutDataProtectionPolicyInputFilterSensitiveLog = (obj) => ({
|
|
624
|
+
...obj,
|
|
625
|
+
});
|
|
626
|
+
export const RemovePermissionInputFilterSensitiveLog = (obj) => ({
|
|
627
|
+
...obj,
|
|
628
|
+
});
|
|
629
|
+
export const SetEndpointAttributesInputFilterSensitiveLog = (obj) => ({
|
|
630
|
+
...obj,
|
|
631
|
+
});
|
|
632
|
+
export const SetPlatformApplicationAttributesInputFilterSensitiveLog = (obj) => ({
|
|
633
|
+
...obj,
|
|
634
|
+
});
|
|
635
|
+
export const SetSMSAttributesInputFilterSensitiveLog = (obj) => ({
|
|
636
|
+
...obj,
|
|
637
|
+
});
|
|
638
|
+
export const SetSMSAttributesResponseFilterSensitiveLog = (obj) => ({
|
|
639
|
+
...obj,
|
|
640
|
+
});
|
|
641
|
+
export const SetSubscriptionAttributesInputFilterSensitiveLog = (obj) => ({
|
|
642
|
+
...obj,
|
|
643
|
+
});
|
|
644
|
+
export const SetTopicAttributesInputFilterSensitiveLog = (obj) => ({
|
|
645
|
+
...obj,
|
|
646
|
+
});
|
|
647
|
+
export const SubscribeInputFilterSensitiveLog = (obj) => ({
|
|
648
|
+
...obj,
|
|
649
|
+
});
|
|
650
|
+
export const SubscribeResponseFilterSensitiveLog = (obj) => ({
|
|
651
|
+
...obj,
|
|
652
|
+
});
|
|
653
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
654
|
+
...obj,
|
|
655
|
+
});
|
|
656
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
657
|
+
...obj,
|
|
658
|
+
});
|
|
659
|
+
export const UnsubscribeInputFilterSensitiveLog = (obj) => ({
|
|
660
|
+
...obj,
|
|
661
|
+
});
|
|
662
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
663
|
+
...obj,
|
|
664
|
+
});
|
|
665
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
666
|
+
...obj,
|
|
667
|
+
});
|
|
668
|
+
export const VerifySMSSandboxPhoneNumberInputFilterSensitiveLog = (obj) => ({
|
|
669
|
+
...obj,
|
|
670
|
+
});
|
|
671
|
+
export const VerifySMSSandboxPhoneNumberResultFilterSensitiveLog = (obj) => ({
|
|
672
|
+
...obj,
|
|
673
|
+
});
|