@aws-sdk/client-pinpoint-sms-voice-v2 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_json1_0.js +2 -2
- package/dist-es/PinpointSMSVoiceV2.js +181 -174
- package/dist-es/PinpointSMSVoiceV2Client.js +28 -22
- package/dist-es/commands/AssociateOriginationIdentityCommand.js +28 -21
- package/dist-es/commands/CreateConfigurationSetCommand.js +28 -21
- package/dist-es/commands/CreateEventDestinationCommand.js +28 -21
- package/dist-es/commands/CreateOptOutListCommand.js +28 -21
- package/dist-es/commands/CreatePoolCommand.js +28 -21
- package/dist-es/commands/DeleteConfigurationSetCommand.js +28 -21
- package/dist-es/commands/DeleteDefaultMessageTypeCommand.js +28 -21
- package/dist-es/commands/DeleteDefaultSenderIdCommand.js +28 -21
- package/dist-es/commands/DeleteEventDestinationCommand.js +28 -21
- package/dist-es/commands/DeleteKeywordCommand.js +28 -21
- package/dist-es/commands/DeleteOptOutListCommand.js +28 -21
- package/dist-es/commands/DeleteOptedOutNumberCommand.js +28 -21
- package/dist-es/commands/DeletePoolCommand.js +28 -21
- package/dist-es/commands/DeleteTextMessageSpendLimitOverrideCommand.js +28 -21
- package/dist-es/commands/DeleteVoiceMessageSpendLimitOverrideCommand.js +28 -21
- package/dist-es/commands/DescribeAccountAttributesCommand.js +28 -21
- package/dist-es/commands/DescribeAccountLimitsCommand.js +28 -21
- package/dist-es/commands/DescribeConfigurationSetsCommand.js +28 -21
- package/dist-es/commands/DescribeKeywordsCommand.js +28 -21
- package/dist-es/commands/DescribeOptOutListsCommand.js +28 -21
- package/dist-es/commands/DescribeOptedOutNumbersCommand.js +28 -21
- package/dist-es/commands/DescribePhoneNumbersCommand.js +28 -21
- package/dist-es/commands/DescribePoolsCommand.js +28 -21
- package/dist-es/commands/DescribeSenderIdsCommand.js +28 -21
- package/dist-es/commands/DescribeSpendLimitsCommand.js +28 -21
- package/dist-es/commands/DisassociateOriginationIdentityCommand.js +28 -21
- package/dist-es/commands/ListPoolOriginationIdentitiesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PutKeywordCommand.js +28 -21
- package/dist-es/commands/PutOptedOutNumberCommand.js +28 -21
- package/dist-es/commands/ReleasePhoneNumberCommand.js +28 -21
- package/dist-es/commands/RequestPhoneNumberCommand.js +28 -21
- package/dist-es/commands/SendTextMessageCommand.js +28 -21
- package/dist-es/commands/SendVoiceMessageCommand.js +28 -21
- package/dist-es/commands/SetDefaultMessageTypeCommand.js +28 -21
- package/dist-es/commands/SetDefaultSenderIdCommand.js +28 -21
- package/dist-es/commands/SetTextMessageSpendLimitOverrideCommand.js +28 -21
- package/dist-es/commands/SetVoiceMessageSpendLimitOverrideCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateEventDestinationCommand.js +28 -21
- package/dist-es/commands/UpdatePhoneNumberCommand.js +28 -21
- package/dist-es/commands/UpdatePoolCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/PinpointSMSVoiceV2ServiceException.js +10 -5
- package/dist-es/models/models_0.js +208 -429
- package/dist-es/pagination/DescribeAccountAttributesPaginator.js +68 -25
- package/dist-es/pagination/DescribeAccountLimitsPaginator.js +68 -25
- package/dist-es/pagination/DescribeConfigurationSetsPaginator.js +68 -25
- package/dist-es/pagination/DescribeKeywordsPaginator.js +68 -25
- package/dist-es/pagination/DescribeOptOutListsPaginator.js +68 -25
- package/dist-es/pagination/DescribeOptedOutNumbersPaginator.js +68 -25
- package/dist-es/pagination/DescribePhoneNumbersPaginator.js +68 -25
- package/dist-es/pagination/DescribePoolsPaginator.js +68 -25
- package/dist-es/pagination/DescribeSenderIdsPaginator.js +68 -25
- package/dist-es/pagination/DescribeSpendLimitsPaginator.js +68 -25
- package/dist-es/pagination/ListPoolOriginationIdentitiesPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_0.js +3901 -3043
- 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,23 +1,24 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { PinpointSMSVoiceV2ServiceException as __BaseException } from "./PinpointSMSVoiceV2ServiceException";
|
|
2
3
|
export var AccessDeniedExceptionReason;
|
|
3
4
|
(function (AccessDeniedExceptionReason) {
|
|
4
5
|
AccessDeniedExceptionReason["ACCOUNT_DISABLED"] = "ACCOUNT_DISABLED";
|
|
5
6
|
AccessDeniedExceptionReason["INSUFFICIENT_ACCOUNT_REPUTATION"] = "INSUFFICIENT_ACCOUNT_REPUTATION";
|
|
6
7
|
})(AccessDeniedExceptionReason || (AccessDeniedExceptionReason = {}));
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
this.Message = opts.Message;
|
|
18
|
-
this.Reason = opts.Reason;
|
|
8
|
+
var AccessDeniedException = (function (_super) {
|
|
9
|
+
__extends(AccessDeniedException, _super);
|
|
10
|
+
function AccessDeniedException(opts) {
|
|
11
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
12
|
+
_this.name = "AccessDeniedException";
|
|
13
|
+
_this.$fault = "client";
|
|
14
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
15
|
+
_this.Message = opts.Message;
|
|
16
|
+
_this.Reason = opts.Reason;
|
|
17
|
+
return _this;
|
|
19
18
|
}
|
|
20
|
-
|
|
19
|
+
return AccessDeniedException;
|
|
20
|
+
}(__BaseException));
|
|
21
|
+
export { AccessDeniedException };
|
|
21
22
|
export var AccountAttributeName;
|
|
22
23
|
(function (AccountAttributeName) {
|
|
23
24
|
AccountAttributeName["ACCOUNT_TIER"] = "ACCOUNT_TIER";
|
|
@@ -64,52 +65,52 @@ export var ResourceType;
|
|
|
64
65
|
ResourceType["REGISTRATION"] = "registration";
|
|
65
66
|
ResourceType["SENDER_ID"] = "sender-id";
|
|
66
67
|
})(ResourceType || (ResourceType = {}));
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
this.ResourceType = opts.ResourceType;
|
|
80
|
-
this.ResourceId = opts.ResourceId;
|
|
68
|
+
var ConflictException = (function (_super) {
|
|
69
|
+
__extends(ConflictException, _super);
|
|
70
|
+
function ConflictException(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "ConflictException";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
75
|
+
_this.Message = opts.Message;
|
|
76
|
+
_this.Reason = opts.Reason;
|
|
77
|
+
_this.ResourceType = opts.ResourceType;
|
|
78
|
+
_this.ResourceId = opts.ResourceId;
|
|
79
|
+
return _this;
|
|
81
80
|
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
81
|
+
return ConflictException;
|
|
82
|
+
}(__BaseException));
|
|
83
|
+
export { ConflictException };
|
|
84
|
+
var InternalServerException = (function (_super) {
|
|
85
|
+
__extends(InternalServerException, _super);
|
|
86
|
+
function InternalServerException(opts) {
|
|
87
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
88
|
+
_this.name = "InternalServerException";
|
|
89
|
+
_this.$fault = "server";
|
|
90
|
+
_this.$retryable = {};
|
|
91
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
92
|
+
_this.Message = opts.Message;
|
|
93
|
+
_this.RequestId = opts.RequestId;
|
|
94
|
+
return _this;
|
|
96
95
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
96
|
+
return InternalServerException;
|
|
97
|
+
}(__BaseException));
|
|
98
|
+
export { InternalServerException };
|
|
99
|
+
var ResourceNotFoundException = (function (_super) {
|
|
100
|
+
__extends(ResourceNotFoundException, _super);
|
|
101
|
+
function ResourceNotFoundException(opts) {
|
|
102
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
103
|
+
_this.name = "ResourceNotFoundException";
|
|
104
|
+
_this.$fault = "client";
|
|
105
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
106
|
+
_this.Message = opts.Message;
|
|
107
|
+
_this.ResourceType = opts.ResourceType;
|
|
108
|
+
_this.ResourceId = opts.ResourceId;
|
|
109
|
+
return _this;
|
|
111
110
|
}
|
|
112
|
-
|
|
111
|
+
return ResourceNotFoundException;
|
|
112
|
+
}(__BaseException));
|
|
113
|
+
export { ResourceNotFoundException };
|
|
113
114
|
export var ServiceQuotaExceededExceptionReason;
|
|
114
115
|
(function (ServiceQuotaExceededExceptionReason) {
|
|
115
116
|
ServiceQuotaExceededExceptionReason["CONFIGURATION_SETS_PER_ACCOUNT"] = "CONFIGURATION_SETS_PER_ACCOUNT";
|
|
@@ -126,36 +127,36 @@ export var ServiceQuotaExceededExceptionReason;
|
|
|
126
127
|
ServiceQuotaExceededExceptionReason["POOLS_PER_ACCOUNT"] = "POOLS_PER_ACCOUNT";
|
|
127
128
|
ServiceQuotaExceededExceptionReason["TAGS_PER_RESOURCE"] = "TAGS_PER_RESOURCE";
|
|
128
129
|
})(ServiceQuotaExceededExceptionReason || (ServiceQuotaExceededExceptionReason = {}));
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
this.Message = opts.Message;
|
|
140
|
-
this.Reason = opts.Reason;
|
|
130
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
131
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
132
|
+
function ServiceQuotaExceededException(opts) {
|
|
133
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
134
|
+
_this.name = "ServiceQuotaExceededException";
|
|
135
|
+
_this.$fault = "client";
|
|
136
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
137
|
+
_this.Message = opts.Message;
|
|
138
|
+
_this.Reason = opts.Reason;
|
|
139
|
+
return _this;
|
|
141
140
|
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
this.$retryable = {
|
|
141
|
+
return ServiceQuotaExceededException;
|
|
142
|
+
}(__BaseException));
|
|
143
|
+
export { ServiceQuotaExceededException };
|
|
144
|
+
var ThrottlingException = (function (_super) {
|
|
145
|
+
__extends(ThrottlingException, _super);
|
|
146
|
+
function ThrottlingException(opts) {
|
|
147
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
148
|
+
_this.name = "ThrottlingException";
|
|
149
|
+
_this.$fault = "client";
|
|
150
|
+
_this.$retryable = {
|
|
153
151
|
throttling: true,
|
|
154
152
|
};
|
|
155
|
-
Object.setPrototypeOf(
|
|
156
|
-
|
|
153
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
154
|
+
_this.Message = opts.Message;
|
|
155
|
+
return _this;
|
|
157
156
|
}
|
|
158
|
-
|
|
157
|
+
return ThrottlingException;
|
|
158
|
+
}(__BaseException));
|
|
159
|
+
export { ThrottlingException };
|
|
159
160
|
export var ValidationExceptionReason;
|
|
160
161
|
(function (ValidationExceptionReason) {
|
|
161
162
|
ValidationExceptionReason["CANNOT_ADD_OPTED_OUT_NUMBER"] = "CANNOT_ADD_OPTED_OUT_NUMBER";
|
|
@@ -183,21 +184,21 @@ export var ValidationExceptionReason;
|
|
|
183
184
|
ValidationExceptionReason["TWO_WAY_TOPIC_NOT_PRESENT"] = "TWO_WAY_TOPIC_NOT_PRESENT";
|
|
184
185
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "UNKNOWN_OPERATION";
|
|
185
186
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
this.Reason = opts.Reason;
|
|
198
|
-
this.Fields = opts.Fields;
|
|
187
|
+
var ValidationException = (function (_super) {
|
|
188
|
+
__extends(ValidationException, _super);
|
|
189
|
+
function ValidationException(opts) {
|
|
190
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
191
|
+
_this.name = "ValidationException";
|
|
192
|
+
_this.$fault = "client";
|
|
193
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
194
|
+
_this.Message = opts.Message;
|
|
195
|
+
_this.Reason = opts.Reason;
|
|
196
|
+
_this.Fields = opts.Fields;
|
|
197
|
+
return _this;
|
|
199
198
|
}
|
|
200
|
-
|
|
199
|
+
return ValidationException;
|
|
200
|
+
}(__BaseException));
|
|
201
|
+
export { ValidationException };
|
|
201
202
|
export var ConfigurationSetFilterName;
|
|
202
203
|
(function (ConfigurationSetFilterName) {
|
|
203
204
|
ConfigurationSetFilterName["DEFAULT_MESSAGE_TYPE"] = "default-message-type";
|
|
@@ -394,336 +395,114 @@ export var VoiceId;
|
|
|
394
395
|
VoiceId["ZEINA"] = "ZEINA";
|
|
395
396
|
VoiceId["ZHIYU"] = "ZHIYU";
|
|
396
397
|
})(VoiceId || (VoiceId = {}));
|
|
397
|
-
export
|
|
398
|
-
|
|
399
|
-
});
|
|
400
|
-
export
|
|
401
|
-
|
|
402
|
-
});
|
|
403
|
-
export
|
|
404
|
-
|
|
405
|
-
});
|
|
406
|
-
export
|
|
407
|
-
|
|
408
|
-
});
|
|
409
|
-
export
|
|
410
|
-
|
|
411
|
-
});
|
|
412
|
-
export
|
|
413
|
-
|
|
414
|
-
});
|
|
415
|
-
export
|
|
416
|
-
|
|
417
|
-
});
|
|
418
|
-
export
|
|
419
|
-
|
|
420
|
-
});
|
|
421
|
-
export
|
|
422
|
-
|
|
423
|
-
});
|
|
424
|
-
export
|
|
425
|
-
|
|
426
|
-
});
|
|
427
|
-
export
|
|
428
|
-
|
|
429
|
-
});
|
|
430
|
-
export
|
|
431
|
-
|
|
432
|
-
});
|
|
433
|
-
export
|
|
434
|
-
|
|
435
|
-
});
|
|
436
|
-
export
|
|
437
|
-
|
|
438
|
-
});
|
|
439
|
-
export
|
|
440
|
-
|
|
441
|
-
});
|
|
442
|
-
export
|
|
443
|
-
|
|
444
|
-
});
|
|
445
|
-
export
|
|
446
|
-
|
|
447
|
-
});
|
|
448
|
-
export
|
|
449
|
-
|
|
450
|
-
});
|
|
451
|
-
export
|
|
452
|
-
|
|
453
|
-
});
|
|
454
|
-
export
|
|
455
|
-
|
|
456
|
-
});
|
|
457
|
-
export
|
|
458
|
-
|
|
459
|
-
});
|
|
460
|
-
export
|
|
461
|
-
|
|
462
|
-
});
|
|
463
|
-
export
|
|
464
|
-
|
|
465
|
-
});
|
|
466
|
-
export
|
|
467
|
-
|
|
468
|
-
});
|
|
469
|
-
export
|
|
470
|
-
|
|
471
|
-
});
|
|
472
|
-
export
|
|
473
|
-
|
|
474
|
-
});
|
|
475
|
-
export
|
|
476
|
-
|
|
477
|
-
});
|
|
478
|
-
export
|
|
479
|
-
|
|
480
|
-
});
|
|
481
|
-
export
|
|
482
|
-
|
|
483
|
-
});
|
|
484
|
-
export
|
|
485
|
-
|
|
486
|
-
});
|
|
487
|
-
export
|
|
488
|
-
|
|
489
|
-
});
|
|
490
|
-
export
|
|
491
|
-
|
|
492
|
-
});
|
|
493
|
-
export
|
|
494
|
-
|
|
495
|
-
});
|
|
496
|
-
export
|
|
497
|
-
|
|
498
|
-
});
|
|
499
|
-
export
|
|
500
|
-
|
|
501
|
-
});
|
|
502
|
-
export
|
|
503
|
-
|
|
504
|
-
});
|
|
505
|
-
export
|
|
506
|
-
|
|
507
|
-
});
|
|
508
|
-
export const DeleteTextMessageSpendLimitOverrideResultFilterSensitiveLog = (obj) => ({
|
|
509
|
-
...obj,
|
|
510
|
-
});
|
|
511
|
-
export const DeleteVoiceMessageSpendLimitOverrideRequestFilterSensitiveLog = (obj) => ({
|
|
512
|
-
...obj,
|
|
513
|
-
});
|
|
514
|
-
export const DeleteVoiceMessageSpendLimitOverrideResultFilterSensitiveLog = (obj) => ({
|
|
515
|
-
...obj,
|
|
516
|
-
});
|
|
517
|
-
export const DescribeAccountAttributesRequestFilterSensitiveLog = (obj) => ({
|
|
518
|
-
...obj,
|
|
519
|
-
});
|
|
520
|
-
export const DescribeAccountAttributesResultFilterSensitiveLog = (obj) => ({
|
|
521
|
-
...obj,
|
|
522
|
-
});
|
|
523
|
-
export const DescribeAccountLimitsRequestFilterSensitiveLog = (obj) => ({
|
|
524
|
-
...obj,
|
|
525
|
-
});
|
|
526
|
-
export const DescribeAccountLimitsResultFilterSensitiveLog = (obj) => ({
|
|
527
|
-
...obj,
|
|
528
|
-
});
|
|
529
|
-
export const DescribeConfigurationSetsRequestFilterSensitiveLog = (obj) => ({
|
|
530
|
-
...obj,
|
|
531
|
-
});
|
|
532
|
-
export const DescribeConfigurationSetsResultFilterSensitiveLog = (obj) => ({
|
|
533
|
-
...obj,
|
|
534
|
-
});
|
|
535
|
-
export const KeywordFilterFilterSensitiveLog = (obj) => ({
|
|
536
|
-
...obj,
|
|
537
|
-
});
|
|
538
|
-
export const DescribeKeywordsRequestFilterSensitiveLog = (obj) => ({
|
|
539
|
-
...obj,
|
|
540
|
-
});
|
|
541
|
-
export const KeywordInformationFilterSensitiveLog = (obj) => ({
|
|
542
|
-
...obj,
|
|
543
|
-
});
|
|
544
|
-
export const DescribeKeywordsResultFilterSensitiveLog = (obj) => ({
|
|
545
|
-
...obj,
|
|
546
|
-
});
|
|
547
|
-
export const OptedOutFilterFilterSensitiveLog = (obj) => ({
|
|
548
|
-
...obj,
|
|
549
|
-
});
|
|
550
|
-
export const DescribeOptedOutNumbersRequestFilterSensitiveLog = (obj) => ({
|
|
551
|
-
...obj,
|
|
552
|
-
});
|
|
553
|
-
export const OptedOutNumberInformationFilterSensitiveLog = (obj) => ({
|
|
554
|
-
...obj,
|
|
555
|
-
});
|
|
556
|
-
export const DescribeOptedOutNumbersResultFilterSensitiveLog = (obj) => ({
|
|
557
|
-
...obj,
|
|
558
|
-
});
|
|
559
|
-
export const DescribeOptOutListsRequestFilterSensitiveLog = (obj) => ({
|
|
560
|
-
...obj,
|
|
561
|
-
});
|
|
562
|
-
export const OptOutListInformationFilterSensitiveLog = (obj) => ({
|
|
563
|
-
...obj,
|
|
564
|
-
});
|
|
565
|
-
export const DescribeOptOutListsResultFilterSensitiveLog = (obj) => ({
|
|
566
|
-
...obj,
|
|
567
|
-
});
|
|
568
|
-
export const PhoneNumberFilterFilterSensitiveLog = (obj) => ({
|
|
569
|
-
...obj,
|
|
570
|
-
});
|
|
571
|
-
export const DescribePhoneNumbersRequestFilterSensitiveLog = (obj) => ({
|
|
572
|
-
...obj,
|
|
573
|
-
});
|
|
574
|
-
export const PhoneNumberInformationFilterSensitiveLog = (obj) => ({
|
|
575
|
-
...obj,
|
|
576
|
-
});
|
|
577
|
-
export const DescribePhoneNumbersResultFilterSensitiveLog = (obj) => ({
|
|
578
|
-
...obj,
|
|
579
|
-
});
|
|
580
|
-
export const PoolFilterFilterSensitiveLog = (obj) => ({
|
|
581
|
-
...obj,
|
|
582
|
-
});
|
|
583
|
-
export const DescribePoolsRequestFilterSensitiveLog = (obj) => ({
|
|
584
|
-
...obj,
|
|
585
|
-
});
|
|
586
|
-
export const PoolInformationFilterSensitiveLog = (obj) => ({
|
|
587
|
-
...obj,
|
|
588
|
-
});
|
|
589
|
-
export const DescribePoolsResultFilterSensitiveLog = (obj) => ({
|
|
590
|
-
...obj,
|
|
591
|
-
});
|
|
592
|
-
export const SenderIdFilterFilterSensitiveLog = (obj) => ({
|
|
593
|
-
...obj,
|
|
594
|
-
});
|
|
595
|
-
export const SenderIdAndCountryFilterSensitiveLog = (obj) => ({
|
|
596
|
-
...obj,
|
|
597
|
-
});
|
|
598
|
-
export const DescribeSenderIdsRequestFilterSensitiveLog = (obj) => ({
|
|
599
|
-
...obj,
|
|
600
|
-
});
|
|
601
|
-
export const SenderIdInformationFilterSensitiveLog = (obj) => ({
|
|
602
|
-
...obj,
|
|
603
|
-
});
|
|
604
|
-
export const DescribeSenderIdsResultFilterSensitiveLog = (obj) => ({
|
|
605
|
-
...obj,
|
|
606
|
-
});
|
|
607
|
-
export const DescribeSpendLimitsRequestFilterSensitiveLog = (obj) => ({
|
|
608
|
-
...obj,
|
|
609
|
-
});
|
|
610
|
-
export const SpendLimitFilterSensitiveLog = (obj) => ({
|
|
611
|
-
...obj,
|
|
612
|
-
});
|
|
613
|
-
export const DescribeSpendLimitsResultFilterSensitiveLog = (obj) => ({
|
|
614
|
-
...obj,
|
|
615
|
-
});
|
|
616
|
-
export const DisassociateOriginationIdentityRequestFilterSensitiveLog = (obj) => ({
|
|
617
|
-
...obj,
|
|
618
|
-
});
|
|
619
|
-
export const DisassociateOriginationIdentityResultFilterSensitiveLog = (obj) => ({
|
|
620
|
-
...obj,
|
|
621
|
-
});
|
|
622
|
-
export const PoolOriginationIdentitiesFilterFilterSensitiveLog = (obj) => ({
|
|
623
|
-
...obj,
|
|
624
|
-
});
|
|
625
|
-
export const ListPoolOriginationIdentitiesRequestFilterSensitiveLog = (obj) => ({
|
|
626
|
-
...obj,
|
|
627
|
-
});
|
|
628
|
-
export const OriginationIdentityMetadataFilterSensitiveLog = (obj) => ({
|
|
629
|
-
...obj,
|
|
630
|
-
});
|
|
631
|
-
export const ListPoolOriginationIdentitiesResultFilterSensitiveLog = (obj) => ({
|
|
632
|
-
...obj,
|
|
633
|
-
});
|
|
634
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
635
|
-
...obj,
|
|
636
|
-
});
|
|
637
|
-
export const ListTagsForResourceResultFilterSensitiveLog = (obj) => ({
|
|
638
|
-
...obj,
|
|
639
|
-
});
|
|
640
|
-
export const PutKeywordRequestFilterSensitiveLog = (obj) => ({
|
|
641
|
-
...obj,
|
|
642
|
-
});
|
|
643
|
-
export const PutKeywordResultFilterSensitiveLog = (obj) => ({
|
|
644
|
-
...obj,
|
|
645
|
-
});
|
|
646
|
-
export const PutOptedOutNumberRequestFilterSensitiveLog = (obj) => ({
|
|
647
|
-
...obj,
|
|
648
|
-
});
|
|
649
|
-
export const PutOptedOutNumberResultFilterSensitiveLog = (obj) => ({
|
|
650
|
-
...obj,
|
|
651
|
-
});
|
|
652
|
-
export const ReleasePhoneNumberRequestFilterSensitiveLog = (obj) => ({
|
|
653
|
-
...obj,
|
|
654
|
-
});
|
|
655
|
-
export const ReleasePhoneNumberResultFilterSensitiveLog = (obj) => ({
|
|
656
|
-
...obj,
|
|
657
|
-
});
|
|
658
|
-
export const RequestPhoneNumberRequestFilterSensitiveLog = (obj) => ({
|
|
659
|
-
...obj,
|
|
660
|
-
});
|
|
661
|
-
export const RequestPhoneNumberResultFilterSensitiveLog = (obj) => ({
|
|
662
|
-
...obj,
|
|
663
|
-
});
|
|
664
|
-
export const SendTextMessageRequestFilterSensitiveLog = (obj) => ({
|
|
665
|
-
...obj,
|
|
666
|
-
});
|
|
667
|
-
export const SendTextMessageResultFilterSensitiveLog = (obj) => ({
|
|
668
|
-
...obj,
|
|
669
|
-
});
|
|
670
|
-
export const SendVoiceMessageRequestFilterSensitiveLog = (obj) => ({
|
|
671
|
-
...obj,
|
|
672
|
-
});
|
|
673
|
-
export const SendVoiceMessageResultFilterSensitiveLog = (obj) => ({
|
|
674
|
-
...obj,
|
|
675
|
-
});
|
|
676
|
-
export const SetDefaultMessageTypeRequestFilterSensitiveLog = (obj) => ({
|
|
677
|
-
...obj,
|
|
678
|
-
});
|
|
679
|
-
export const SetDefaultMessageTypeResultFilterSensitiveLog = (obj) => ({
|
|
680
|
-
...obj,
|
|
681
|
-
});
|
|
682
|
-
export const SetDefaultSenderIdRequestFilterSensitiveLog = (obj) => ({
|
|
683
|
-
...obj,
|
|
684
|
-
});
|
|
685
|
-
export const SetDefaultSenderIdResultFilterSensitiveLog = (obj) => ({
|
|
686
|
-
...obj,
|
|
687
|
-
});
|
|
688
|
-
export const SetTextMessageSpendLimitOverrideRequestFilterSensitiveLog = (obj) => ({
|
|
689
|
-
...obj,
|
|
690
|
-
});
|
|
691
|
-
export const SetTextMessageSpendLimitOverrideResultFilterSensitiveLog = (obj) => ({
|
|
692
|
-
...obj,
|
|
693
|
-
});
|
|
694
|
-
export const SetVoiceMessageSpendLimitOverrideRequestFilterSensitiveLog = (obj) => ({
|
|
695
|
-
...obj,
|
|
696
|
-
});
|
|
697
|
-
export const SetVoiceMessageSpendLimitOverrideResultFilterSensitiveLog = (obj) => ({
|
|
698
|
-
...obj,
|
|
699
|
-
});
|
|
700
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
701
|
-
...obj,
|
|
702
|
-
});
|
|
703
|
-
export const TagResourceResultFilterSensitiveLog = (obj) => ({
|
|
704
|
-
...obj,
|
|
705
|
-
});
|
|
706
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
707
|
-
...obj,
|
|
708
|
-
});
|
|
709
|
-
export const UntagResourceResultFilterSensitiveLog = (obj) => ({
|
|
710
|
-
...obj,
|
|
711
|
-
});
|
|
712
|
-
export const UpdateEventDestinationRequestFilterSensitiveLog = (obj) => ({
|
|
713
|
-
...obj,
|
|
714
|
-
});
|
|
715
|
-
export const UpdateEventDestinationResultFilterSensitiveLog = (obj) => ({
|
|
716
|
-
...obj,
|
|
717
|
-
});
|
|
718
|
-
export const UpdatePhoneNumberRequestFilterSensitiveLog = (obj) => ({
|
|
719
|
-
...obj,
|
|
720
|
-
});
|
|
721
|
-
export const UpdatePhoneNumberResultFilterSensitiveLog = (obj) => ({
|
|
722
|
-
...obj,
|
|
723
|
-
});
|
|
724
|
-
export const UpdatePoolRequestFilterSensitiveLog = (obj) => ({
|
|
725
|
-
...obj,
|
|
726
|
-
});
|
|
727
|
-
export const UpdatePoolResultFilterSensitiveLog = (obj) => ({
|
|
728
|
-
...obj,
|
|
729
|
-
});
|
|
398
|
+
export var AccountAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
399
|
+
export var AccountLimitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
400
|
+
export var AssociateOriginationIdentityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
401
|
+
export var AssociateOriginationIdentityResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
402
|
+
export var ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
403
|
+
export var CloudWatchLogsDestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
404
|
+
export var ConfigurationSetFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
405
|
+
export var KinesisFirehoseDestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
406
|
+
export var SnsDestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
407
|
+
export var EventDestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
408
|
+
export var ConfigurationSetInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
409
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
410
|
+
export var CreateConfigurationSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
411
|
+
export var CreateConfigurationSetResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
412
|
+
export var CreateEventDestinationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
413
|
+
export var CreateEventDestinationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
414
|
+
export var CreateOptOutListRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
415
|
+
export var CreateOptOutListResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
416
|
+
export var CreatePoolRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
417
|
+
export var CreatePoolResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
418
|
+
export var DeleteConfigurationSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
419
|
+
export var DeleteConfigurationSetResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
420
|
+
export var DeleteDefaultMessageTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
421
|
+
export var DeleteDefaultMessageTypeResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
422
|
+
export var DeleteDefaultSenderIdRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
423
|
+
export var DeleteDefaultSenderIdResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
424
|
+
export var DeleteEventDestinationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
425
|
+
export var DeleteEventDestinationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
426
|
+
export var DeleteKeywordRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
427
|
+
export var DeleteKeywordResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
428
|
+
export var DeleteOptedOutNumberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
429
|
+
export var DeleteOptedOutNumberResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
430
|
+
export var DeleteOptOutListRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
431
|
+
export var DeleteOptOutListResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
432
|
+
export var DeletePoolRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
433
|
+
export var DeletePoolResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
434
|
+
export var DeleteTextMessageSpendLimitOverrideRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
435
|
+
export var DeleteTextMessageSpendLimitOverrideResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
436
|
+
export var DeleteVoiceMessageSpendLimitOverrideRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
437
|
+
export var DeleteVoiceMessageSpendLimitOverrideResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
438
|
+
export var DescribeAccountAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
439
|
+
export var DescribeAccountAttributesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
440
|
+
export var DescribeAccountLimitsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
441
|
+
export var DescribeAccountLimitsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
442
|
+
export var DescribeConfigurationSetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
443
|
+
export var DescribeConfigurationSetsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
444
|
+
export var KeywordFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
445
|
+
export var DescribeKeywordsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
446
|
+
export var KeywordInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
447
|
+
export var DescribeKeywordsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
448
|
+
export var OptedOutFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
449
|
+
export var DescribeOptedOutNumbersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
450
|
+
export var OptedOutNumberInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
451
|
+
export var DescribeOptedOutNumbersResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
452
|
+
export var DescribeOptOutListsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
453
|
+
export var OptOutListInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
454
|
+
export var DescribeOptOutListsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
455
|
+
export var PhoneNumberFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
456
|
+
export var DescribePhoneNumbersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
457
|
+
export var PhoneNumberInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
458
|
+
export var DescribePhoneNumbersResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
459
|
+
export var PoolFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
460
|
+
export var DescribePoolsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
461
|
+
export var PoolInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
462
|
+
export var DescribePoolsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
463
|
+
export var SenderIdFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
464
|
+
export var SenderIdAndCountryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
465
|
+
export var DescribeSenderIdsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
466
|
+
export var SenderIdInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
467
|
+
export var DescribeSenderIdsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
468
|
+
export var DescribeSpendLimitsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
469
|
+
export var SpendLimitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
470
|
+
export var DescribeSpendLimitsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
471
|
+
export var DisassociateOriginationIdentityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
472
|
+
export var DisassociateOriginationIdentityResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
473
|
+
export var PoolOriginationIdentitiesFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
474
|
+
export var ListPoolOriginationIdentitiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
475
|
+
export var OriginationIdentityMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
476
|
+
export var ListPoolOriginationIdentitiesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
477
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
478
|
+
export var ListTagsForResourceResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
479
|
+
export var PutKeywordRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
480
|
+
export var PutKeywordResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
481
|
+
export var PutOptedOutNumberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
482
|
+
export var PutOptedOutNumberResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
483
|
+
export var ReleasePhoneNumberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
484
|
+
export var ReleasePhoneNumberResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
485
|
+
export var RequestPhoneNumberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
486
|
+
export var RequestPhoneNumberResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
487
|
+
export var SendTextMessageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
488
|
+
export var SendTextMessageResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
489
|
+
export var SendVoiceMessageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
490
|
+
export var SendVoiceMessageResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
491
|
+
export var SetDefaultMessageTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
492
|
+
export var SetDefaultMessageTypeResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
493
|
+
export var SetDefaultSenderIdRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
494
|
+
export var SetDefaultSenderIdResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
495
|
+
export var SetTextMessageSpendLimitOverrideRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
496
|
+
export var SetTextMessageSpendLimitOverrideResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
497
|
+
export var SetVoiceMessageSpendLimitOverrideRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
498
|
+
export var SetVoiceMessageSpendLimitOverrideResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
499
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
500
|
+
export var TagResourceResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
501
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
502
|
+
export var UntagResourceResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
503
|
+
export var UpdateEventDestinationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
504
|
+
export var UpdateEventDestinationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
505
|
+
export var UpdatePhoneNumberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
506
|
+
export var UpdatePhoneNumberResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
507
|
+
export var UpdatePoolRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
508
|
+
export var UpdatePoolResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|