@aws-sdk/client-pinpoint-sms-voice 3.130.0 → 3.141.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 +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateConfigurationSetCommand.js +2 -2
- package/dist-cjs/commands/CreateConfigurationSetEventDestinationCommand.js +2 -2
- package/dist-cjs/commands/DeleteConfigurationSetCommand.js +2 -2
- package/dist-cjs/commands/DeleteConfigurationSetEventDestinationCommand.js +2 -2
- package/dist-cjs/commands/GetConfigurationSetEventDestinationsCommand.js +2 -2
- package/dist-cjs/commands/ListConfigurationSetsCommand.js +2 -2
- package/dist-cjs/commands/SendVoiceMessageCommand.js +2 -2
- package/dist-cjs/commands/UpdateConfigurationSetEventDestinationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +101 -151
- package/dist-es/commands/CreateConfigurationSetCommand.js +3 -3
- package/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +3 -3
- package/dist-es/commands/DeleteConfigurationSetCommand.js +3 -3
- package/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +3 -3
- package/dist-es/commands/GetConfigurationSetEventDestinationsCommand.js +3 -3
- package/dist-es/commands/ListConfigurationSetsCommand.js +3 -3
- package/dist-es/commands/SendVoiceMessageCommand.js +3 -3
- package/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +3 -3
- package/dist-es/models/models_0.js +25 -100
- package/dist-types/models/models_0.d.ts +100 -150
- package/dist-types/ts3.4/models/models_0.d.ts +50 -100
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update client endpoints as of 2022-08-01 ([aaf49f2](https://github.com/aws/aws-sdk-js-v3/commit/aaf49f21b371412e6ea7e00890b71a7b31991b66))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @aws-sdk/client-pinpoint-sms-voice
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
|
|
7
37
|
|
|
8
38
|
|
package/README.md
CHANGED
|
@@ -165,7 +165,7 @@ try {
|
|
|
165
165
|
const data = await client.send(command);
|
|
166
166
|
// process data.
|
|
167
167
|
} catch (error) {
|
|
168
|
-
const { requestId, cfId, extendedRequestId } = error
|
|
168
|
+
const { requestId, cfId, extendedRequestId } = error.$$metadata;
|
|
169
169
|
console.log({ requestId, cfId, extendedRequestId });
|
|
170
170
|
/**
|
|
171
171
|
* The keys within exceptions are also parsed.
|
|
@@ -20,8 +20,8 @@ class CreateConfigurationSetCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateConfigurationSetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateConfigurationSetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class CreateConfigurationSetEventDestinationCommand extends smithy_client_1.Comm
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateConfigurationSetEventDestinationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateConfigurationSetEventDestinationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DeleteConfigurationSetCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DeleteConfigurationSetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DeleteConfigurationSetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DeleteConfigurationSetEventDestinationCommand extends smithy_client_1.Comm
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DeleteConfigurationSetEventDestinationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DeleteConfigurationSetEventDestinationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class GetConfigurationSetEventDestinationsCommand extends smithy_client_1.Comman
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetConfigurationSetEventDestinationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetConfigurationSetEventDestinationsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListConfigurationSetsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListConfigurationSetsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListConfigurationSetsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class SendVoiceMessageCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.SendVoiceMessageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.SendVoiceMessageResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class UpdateConfigurationSetEventDestinationCommand extends smithy_client_1.Comm
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateConfigurationSetEventDestinationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateConfigurationSetEventDestinationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UpdateConfigurationSetEventDestinationResponseFilterSensitiveLog = exports.UpdateConfigurationSetEventDestinationRequestFilterSensitiveLog = exports.SendVoiceMessageResponseFilterSensitiveLog = exports.SendVoiceMessageRequestFilterSensitiveLog = exports.VoiceMessageContentFilterSensitiveLog = exports.SSMLMessageTypeFilterSensitiveLog = exports.PlainTextMessageTypeFilterSensitiveLog = exports.ListConfigurationSetsResponseFilterSensitiveLog = exports.ListConfigurationSetsRequestFilterSensitiveLog = exports.GetConfigurationSetEventDestinationsResponseFilterSensitiveLog = exports.GetConfigurationSetEventDestinationsRequestFilterSensitiveLog = exports.EventDestinationFilterSensitiveLog = exports.DeleteConfigurationSetEventDestinationResponseFilterSensitiveLog = exports.DeleteConfigurationSetEventDestinationRequestFilterSensitiveLog = exports.DeleteConfigurationSetResponseFilterSensitiveLog = exports.DeleteConfigurationSetRequestFilterSensitiveLog = exports.CreateConfigurationSetEventDestinationResponseFilterSensitiveLog = exports.CreateConfigurationSetEventDestinationRequestFilterSensitiveLog = exports.EventDestinationDefinitionFilterSensitiveLog = exports.SnsDestinationFilterSensitiveLog = exports.KinesisFirehoseDestinationFilterSensitiveLog = exports.CreateConfigurationSetResponseFilterSensitiveLog = exports.CreateConfigurationSetRequestFilterSensitiveLog = exports.CloudWatchLogsDestinationFilterSensitiveLog = exports.CallInstructionsMessageTypeFilterSensitiveLog = exports.NotFoundException = exports.EventType = exports.TooManyRequestsException = exports.LimitExceededException = exports.InternalServiceErrorException = exports.BadRequestException = exports.AlreadyExistsException = void 0;
|
|
4
4
|
const PinpointSMSVoiceServiceException_1 = require("./PinpointSMSVoiceServiceException");
|
|
5
5
|
class AlreadyExistsException extends PinpointSMSVoiceServiceException_1.PinpointSMSVoiceServiceException {
|
|
6
6
|
constructor(opts) {
|
|
@@ -30,30 +30,6 @@ class BadRequestException extends PinpointSMSVoiceServiceException_1.PinpointSMS
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
exports.BadRequestException = BadRequestException;
|
|
33
|
-
var CallInstructionsMessageType;
|
|
34
|
-
(function (CallInstructionsMessageType) {
|
|
35
|
-
CallInstructionsMessageType.filterSensitiveLog = (obj) => ({
|
|
36
|
-
...obj,
|
|
37
|
-
});
|
|
38
|
-
})(CallInstructionsMessageType = exports.CallInstructionsMessageType || (exports.CallInstructionsMessageType = {}));
|
|
39
|
-
var CloudWatchLogsDestination;
|
|
40
|
-
(function (CloudWatchLogsDestination) {
|
|
41
|
-
CloudWatchLogsDestination.filterSensitiveLog = (obj) => ({
|
|
42
|
-
...obj,
|
|
43
|
-
});
|
|
44
|
-
})(CloudWatchLogsDestination = exports.CloudWatchLogsDestination || (exports.CloudWatchLogsDestination = {}));
|
|
45
|
-
var CreateConfigurationSetRequest;
|
|
46
|
-
(function (CreateConfigurationSetRequest) {
|
|
47
|
-
CreateConfigurationSetRequest.filterSensitiveLog = (obj) => ({
|
|
48
|
-
...obj,
|
|
49
|
-
});
|
|
50
|
-
})(CreateConfigurationSetRequest = exports.CreateConfigurationSetRequest || (exports.CreateConfigurationSetRequest = {}));
|
|
51
|
-
var CreateConfigurationSetResponse;
|
|
52
|
-
(function (CreateConfigurationSetResponse) {
|
|
53
|
-
CreateConfigurationSetResponse.filterSensitiveLog = (obj) => ({
|
|
54
|
-
...obj,
|
|
55
|
-
});
|
|
56
|
-
})(CreateConfigurationSetResponse = exports.CreateConfigurationSetResponse || (exports.CreateConfigurationSetResponse = {}));
|
|
57
33
|
class InternalServiceErrorException extends PinpointSMSVoiceServiceException_1.PinpointSMSVoiceServiceException {
|
|
58
34
|
constructor(opts) {
|
|
59
35
|
super({
|
|
@@ -96,12 +72,6 @@ class TooManyRequestsException extends PinpointSMSVoiceServiceException_1.Pinpoi
|
|
|
96
72
|
}
|
|
97
73
|
}
|
|
98
74
|
exports.TooManyRequestsException = TooManyRequestsException;
|
|
99
|
-
var KinesisFirehoseDestination;
|
|
100
|
-
(function (KinesisFirehoseDestination) {
|
|
101
|
-
KinesisFirehoseDestination.filterSensitiveLog = (obj) => ({
|
|
102
|
-
...obj,
|
|
103
|
-
});
|
|
104
|
-
})(KinesisFirehoseDestination = exports.KinesisFirehoseDestination || (exports.KinesisFirehoseDestination = {}));
|
|
105
75
|
var EventType;
|
|
106
76
|
(function (EventType) {
|
|
107
77
|
EventType["ANSWERED"] = "ANSWERED";
|
|
@@ -112,30 +82,6 @@ var EventType;
|
|
|
112
82
|
EventType["NO_ANSWER"] = "NO_ANSWER";
|
|
113
83
|
EventType["RINGING"] = "RINGING";
|
|
114
84
|
})(EventType = exports.EventType || (exports.EventType = {}));
|
|
115
|
-
var SnsDestination;
|
|
116
|
-
(function (SnsDestination) {
|
|
117
|
-
SnsDestination.filterSensitiveLog = (obj) => ({
|
|
118
|
-
...obj,
|
|
119
|
-
});
|
|
120
|
-
})(SnsDestination = exports.SnsDestination || (exports.SnsDestination = {}));
|
|
121
|
-
var EventDestinationDefinition;
|
|
122
|
-
(function (EventDestinationDefinition) {
|
|
123
|
-
EventDestinationDefinition.filterSensitiveLog = (obj) => ({
|
|
124
|
-
...obj,
|
|
125
|
-
});
|
|
126
|
-
})(EventDestinationDefinition = exports.EventDestinationDefinition || (exports.EventDestinationDefinition = {}));
|
|
127
|
-
var CreateConfigurationSetEventDestinationRequest;
|
|
128
|
-
(function (CreateConfigurationSetEventDestinationRequest) {
|
|
129
|
-
CreateConfigurationSetEventDestinationRequest.filterSensitiveLog = (obj) => ({
|
|
130
|
-
...obj,
|
|
131
|
-
});
|
|
132
|
-
})(CreateConfigurationSetEventDestinationRequest = exports.CreateConfigurationSetEventDestinationRequest || (exports.CreateConfigurationSetEventDestinationRequest = {}));
|
|
133
|
-
var CreateConfigurationSetEventDestinationResponse;
|
|
134
|
-
(function (CreateConfigurationSetEventDestinationResponse) {
|
|
135
|
-
CreateConfigurationSetEventDestinationResponse.filterSensitiveLog = (obj) => ({
|
|
136
|
-
...obj,
|
|
137
|
-
});
|
|
138
|
-
})(CreateConfigurationSetEventDestinationResponse = exports.CreateConfigurationSetEventDestinationResponse || (exports.CreateConfigurationSetEventDestinationResponse = {}));
|
|
139
85
|
class NotFoundException extends PinpointSMSVoiceServiceException_1.PinpointSMSVoiceServiceException {
|
|
140
86
|
constructor(opts) {
|
|
141
87
|
super({
|
|
@@ -150,99 +96,103 @@ class NotFoundException extends PinpointSMSVoiceServiceException_1.PinpointSMSVo
|
|
|
150
96
|
}
|
|
151
97
|
}
|
|
152
98
|
exports.NotFoundException = NotFoundException;
|
|
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
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
99
|
+
const CallInstructionsMessageTypeFilterSensitiveLog = (obj) => ({
|
|
100
|
+
...obj,
|
|
101
|
+
});
|
|
102
|
+
exports.CallInstructionsMessageTypeFilterSensitiveLog = CallInstructionsMessageTypeFilterSensitiveLog;
|
|
103
|
+
const CloudWatchLogsDestinationFilterSensitiveLog = (obj) => ({
|
|
104
|
+
...obj,
|
|
105
|
+
});
|
|
106
|
+
exports.CloudWatchLogsDestinationFilterSensitiveLog = CloudWatchLogsDestinationFilterSensitiveLog;
|
|
107
|
+
const CreateConfigurationSetRequestFilterSensitiveLog = (obj) => ({
|
|
108
|
+
...obj,
|
|
109
|
+
});
|
|
110
|
+
exports.CreateConfigurationSetRequestFilterSensitiveLog = CreateConfigurationSetRequestFilterSensitiveLog;
|
|
111
|
+
const CreateConfigurationSetResponseFilterSensitiveLog = (obj) => ({
|
|
112
|
+
...obj,
|
|
113
|
+
});
|
|
114
|
+
exports.CreateConfigurationSetResponseFilterSensitiveLog = CreateConfigurationSetResponseFilterSensitiveLog;
|
|
115
|
+
const KinesisFirehoseDestinationFilterSensitiveLog = (obj) => ({
|
|
116
|
+
...obj,
|
|
117
|
+
});
|
|
118
|
+
exports.KinesisFirehoseDestinationFilterSensitiveLog = KinesisFirehoseDestinationFilterSensitiveLog;
|
|
119
|
+
const SnsDestinationFilterSensitiveLog = (obj) => ({
|
|
120
|
+
...obj,
|
|
121
|
+
});
|
|
122
|
+
exports.SnsDestinationFilterSensitiveLog = SnsDestinationFilterSensitiveLog;
|
|
123
|
+
const EventDestinationDefinitionFilterSensitiveLog = (obj) => ({
|
|
124
|
+
...obj,
|
|
125
|
+
});
|
|
126
|
+
exports.EventDestinationDefinitionFilterSensitiveLog = EventDestinationDefinitionFilterSensitiveLog;
|
|
127
|
+
const CreateConfigurationSetEventDestinationRequestFilterSensitiveLog = (obj) => ({
|
|
128
|
+
...obj,
|
|
129
|
+
});
|
|
130
|
+
exports.CreateConfigurationSetEventDestinationRequestFilterSensitiveLog = CreateConfigurationSetEventDestinationRequestFilterSensitiveLog;
|
|
131
|
+
const CreateConfigurationSetEventDestinationResponseFilterSensitiveLog = (obj) => ({
|
|
132
|
+
...obj,
|
|
133
|
+
});
|
|
134
|
+
exports.CreateConfigurationSetEventDestinationResponseFilterSensitiveLog = CreateConfigurationSetEventDestinationResponseFilterSensitiveLog;
|
|
135
|
+
const DeleteConfigurationSetRequestFilterSensitiveLog = (obj) => ({
|
|
136
|
+
...obj,
|
|
137
|
+
});
|
|
138
|
+
exports.DeleteConfigurationSetRequestFilterSensitiveLog = DeleteConfigurationSetRequestFilterSensitiveLog;
|
|
139
|
+
const DeleteConfigurationSetResponseFilterSensitiveLog = (obj) => ({
|
|
140
|
+
...obj,
|
|
141
|
+
});
|
|
142
|
+
exports.DeleteConfigurationSetResponseFilterSensitiveLog = DeleteConfigurationSetResponseFilterSensitiveLog;
|
|
143
|
+
const DeleteConfigurationSetEventDestinationRequestFilterSensitiveLog = (obj) => ({
|
|
144
|
+
...obj,
|
|
145
|
+
});
|
|
146
|
+
exports.DeleteConfigurationSetEventDestinationRequestFilterSensitiveLog = DeleteConfigurationSetEventDestinationRequestFilterSensitiveLog;
|
|
147
|
+
const DeleteConfigurationSetEventDestinationResponseFilterSensitiveLog = (obj) => ({
|
|
148
|
+
...obj,
|
|
149
|
+
});
|
|
150
|
+
exports.DeleteConfigurationSetEventDestinationResponseFilterSensitiveLog = DeleteConfigurationSetEventDestinationResponseFilterSensitiveLog;
|
|
151
|
+
const EventDestinationFilterSensitiveLog = (obj) => ({
|
|
152
|
+
...obj,
|
|
153
|
+
});
|
|
154
|
+
exports.EventDestinationFilterSensitiveLog = EventDestinationFilterSensitiveLog;
|
|
155
|
+
const GetConfigurationSetEventDestinationsRequestFilterSensitiveLog = (obj) => ({
|
|
156
|
+
...obj,
|
|
157
|
+
});
|
|
158
|
+
exports.GetConfigurationSetEventDestinationsRequestFilterSensitiveLog = GetConfigurationSetEventDestinationsRequestFilterSensitiveLog;
|
|
159
|
+
const GetConfigurationSetEventDestinationsResponseFilterSensitiveLog = (obj) => ({
|
|
160
|
+
...obj,
|
|
161
|
+
});
|
|
162
|
+
exports.GetConfigurationSetEventDestinationsResponseFilterSensitiveLog = GetConfigurationSetEventDestinationsResponseFilterSensitiveLog;
|
|
163
|
+
const ListConfigurationSetsRequestFilterSensitiveLog = (obj) => ({
|
|
164
|
+
...obj,
|
|
165
|
+
});
|
|
166
|
+
exports.ListConfigurationSetsRequestFilterSensitiveLog = ListConfigurationSetsRequestFilterSensitiveLog;
|
|
167
|
+
const ListConfigurationSetsResponseFilterSensitiveLog = (obj) => ({
|
|
168
|
+
...obj,
|
|
169
|
+
});
|
|
170
|
+
exports.ListConfigurationSetsResponseFilterSensitiveLog = ListConfigurationSetsResponseFilterSensitiveLog;
|
|
171
|
+
const PlainTextMessageTypeFilterSensitiveLog = (obj) => ({
|
|
172
|
+
...obj,
|
|
173
|
+
});
|
|
174
|
+
exports.PlainTextMessageTypeFilterSensitiveLog = PlainTextMessageTypeFilterSensitiveLog;
|
|
175
|
+
const SSMLMessageTypeFilterSensitiveLog = (obj) => ({
|
|
176
|
+
...obj,
|
|
177
|
+
});
|
|
178
|
+
exports.SSMLMessageTypeFilterSensitiveLog = SSMLMessageTypeFilterSensitiveLog;
|
|
179
|
+
const VoiceMessageContentFilterSensitiveLog = (obj) => ({
|
|
180
|
+
...obj,
|
|
181
|
+
});
|
|
182
|
+
exports.VoiceMessageContentFilterSensitiveLog = VoiceMessageContentFilterSensitiveLog;
|
|
183
|
+
const SendVoiceMessageRequestFilterSensitiveLog = (obj) => ({
|
|
184
|
+
...obj,
|
|
185
|
+
});
|
|
186
|
+
exports.SendVoiceMessageRequestFilterSensitiveLog = SendVoiceMessageRequestFilterSensitiveLog;
|
|
187
|
+
const SendVoiceMessageResponseFilterSensitiveLog = (obj) => ({
|
|
188
|
+
...obj,
|
|
189
|
+
});
|
|
190
|
+
exports.SendVoiceMessageResponseFilterSensitiveLog = SendVoiceMessageResponseFilterSensitiveLog;
|
|
191
|
+
const UpdateConfigurationSetEventDestinationRequestFilterSensitiveLog = (obj) => ({
|
|
192
|
+
...obj,
|
|
193
|
+
});
|
|
194
|
+
exports.UpdateConfigurationSetEventDestinationRequestFilterSensitiveLog = UpdateConfigurationSetEventDestinationRequestFilterSensitiveLog;
|
|
195
|
+
const UpdateConfigurationSetEventDestinationResponseFilterSensitiveLog = (obj) => ({
|
|
196
|
+
...obj,
|
|
197
|
+
});
|
|
198
|
+
exports.UpdateConfigurationSetEventDestinationResponseFilterSensitiveLog = UpdateConfigurationSetEventDestinationResponseFilterSensitiveLog;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateConfigurationSetRequestFilterSensitiveLog, CreateConfigurationSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateConfigurationSetCommand, serializeAws_restJson1CreateConfigurationSetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateConfigurationSetCommand = (function (_super) {
|
|
7
7
|
__extends(CreateConfigurationSetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateConfigurationSetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateConfigurationSetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateConfigurationSetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateConfigurationSetEventDestinationRequestFilterSensitiveLog, CreateConfigurationSetEventDestinationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateConfigurationSetEventDestinationCommand, serializeAws_restJson1CreateConfigurationSetEventDestinationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateConfigurationSetEventDestinationCommand = (function (_super) {
|
|
7
7
|
__extends(CreateConfigurationSetEventDestinationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateConfigurationSetEventDestinationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateConfigurationSetEventDestinationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateConfigurationSetEventDestinationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteConfigurationSetRequestFilterSensitiveLog, DeleteConfigurationSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteConfigurationSetCommand, serializeAws_restJson1DeleteConfigurationSetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteConfigurationSetCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteConfigurationSetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteConfigurationSetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteConfigurationSetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteConfigurationSetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteConfigurationSetEventDestinationRequestFilterSensitiveLog, DeleteConfigurationSetEventDestinationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteConfigurationSetEventDestinationCommand, serializeAws_restJson1DeleteConfigurationSetEventDestinationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteConfigurationSetEventDestinationCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteConfigurationSetEventDestinationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteConfigurationSetEventDestinationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteConfigurationSetEventDestinationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteConfigurationSetEventDestinationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetConfigurationSetEventDestinationsRequestFilterSensitiveLog, GetConfigurationSetEventDestinationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetConfigurationSetEventDestinationsCommand, serializeAws_restJson1GetConfigurationSetEventDestinationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetConfigurationSetEventDestinationsCommand = (function (_super) {
|
|
7
7
|
__extends(GetConfigurationSetEventDestinationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetConfigurationSetEventDestinationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetConfigurationSetEventDestinationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetConfigurationSetEventDestinationsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListConfigurationSetsRequestFilterSensitiveLog, ListConfigurationSetsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListConfigurationSetsCommand, serializeAws_restJson1ListConfigurationSetsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListConfigurationSetsCommand = (function (_super) {
|
|
7
7
|
__extends(ListConfigurationSetsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListConfigurationSetsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListConfigurationSetsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListConfigurationSetsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { SendVoiceMessageRequestFilterSensitiveLog, SendVoiceMessageResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1SendVoiceMessageCommand, serializeAws_restJson1SendVoiceMessageCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var SendVoiceMessageCommand = (function (_super) {
|
|
7
7
|
__extends(SendVoiceMessageCommand, _super);
|
|
@@ -20,8 +20,8 @@ var SendVoiceMessageCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: SendVoiceMessageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: SendVoiceMessageResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateConfigurationSetEventDestinationRequestFilterSensitiveLog, UpdateConfigurationSetEventDestinationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateConfigurationSetEventDestinationCommand, serializeAws_restJson1UpdateConfigurationSetEventDestinationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateConfigurationSetEventDestinationCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateConfigurationSetEventDestinationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateConfigurationSetEventDestinationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateConfigurationSetEventDestinationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateConfigurationSetEventDestinationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|