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