@aws-sdk/client-connectcampaigns 3.1087.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ConnectCampaigns.d.ts +69 -74
- package/dist-types/ts3.4/ConnectCampaignsClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateCampaignCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteConnectInstanceConfigCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteInstanceOnboardingJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeCampaignCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetCampaignStateBatchCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCampaignStateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetConnectInstanceConfigCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetInstanceOnboardingJobStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListCampaignsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PauseCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/PutDialRequestBatchCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ResumeCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/StartCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/StartInstanceOnboardingJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopCampaignCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateCampaignDialerConfigCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateCampaignNameCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -71,10 +71,7 @@ import {
|
|
|
71
71
|
StopCampaignCommandInput,
|
|
72
72
|
StopCampaignCommandOutput,
|
|
73
73
|
} from "./commands/StopCampaignCommand";
|
|
74
|
-
import {
|
|
75
|
-
TagResourceCommandInput,
|
|
76
|
-
TagResourceCommandOutput,
|
|
77
|
-
} from "./commands/TagResourceCommand";
|
|
74
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
78
75
|
import {
|
|
79
76
|
UntagResourceCommandInput,
|
|
80
77
|
UntagResourceCommandOutput,
|
|
@@ -95,299 +92,297 @@ import { ConnectCampaignsClient } from "./ConnectCampaignsClient";
|
|
|
95
92
|
export interface ConnectCampaigns {
|
|
96
93
|
createCampaign(
|
|
97
94
|
args: CreateCampaignCommandInput,
|
|
98
|
-
options?: __HttpHandlerOptions
|
|
95
|
+
options?: __HttpHandlerOptions,
|
|
99
96
|
): Promise<CreateCampaignCommandOutput>;
|
|
100
97
|
createCampaign(
|
|
101
98
|
args: CreateCampaignCommandInput,
|
|
102
|
-
cb: (err: any, data?: CreateCampaignCommandOutput) => void
|
|
99
|
+
cb: (err: any, data?: CreateCampaignCommandOutput) => void,
|
|
103
100
|
): void;
|
|
104
101
|
createCampaign(
|
|
105
102
|
args: CreateCampaignCommandInput,
|
|
106
103
|
options: __HttpHandlerOptions,
|
|
107
|
-
cb: (err: any, data?: CreateCampaignCommandOutput) => void
|
|
104
|
+
cb: (err: any, data?: CreateCampaignCommandOutput) => void,
|
|
108
105
|
): void;
|
|
109
106
|
deleteCampaign(
|
|
110
107
|
args: DeleteCampaignCommandInput,
|
|
111
|
-
options?: __HttpHandlerOptions
|
|
108
|
+
options?: __HttpHandlerOptions,
|
|
112
109
|
): Promise<DeleteCampaignCommandOutput>;
|
|
113
110
|
deleteCampaign(
|
|
114
111
|
args: DeleteCampaignCommandInput,
|
|
115
|
-
cb: (err: any, data?: DeleteCampaignCommandOutput) => void
|
|
112
|
+
cb: (err: any, data?: DeleteCampaignCommandOutput) => void,
|
|
116
113
|
): void;
|
|
117
114
|
deleteCampaign(
|
|
118
115
|
args: DeleteCampaignCommandInput,
|
|
119
116
|
options: __HttpHandlerOptions,
|
|
120
|
-
cb: (err: any, data?: DeleteCampaignCommandOutput) => void
|
|
117
|
+
cb: (err: any, data?: DeleteCampaignCommandOutput) => void,
|
|
121
118
|
): void;
|
|
122
119
|
deleteConnectInstanceConfig(
|
|
123
120
|
args: DeleteConnectInstanceConfigCommandInput,
|
|
124
|
-
options?: __HttpHandlerOptions
|
|
121
|
+
options?: __HttpHandlerOptions,
|
|
125
122
|
): Promise<DeleteConnectInstanceConfigCommandOutput>;
|
|
126
123
|
deleteConnectInstanceConfig(
|
|
127
124
|
args: DeleteConnectInstanceConfigCommandInput,
|
|
128
|
-
cb: (err: any, data?: DeleteConnectInstanceConfigCommandOutput) => void
|
|
125
|
+
cb: (err: any, data?: DeleteConnectInstanceConfigCommandOutput) => void,
|
|
129
126
|
): void;
|
|
130
127
|
deleteConnectInstanceConfig(
|
|
131
128
|
args: DeleteConnectInstanceConfigCommandInput,
|
|
132
129
|
options: __HttpHandlerOptions,
|
|
133
|
-
cb: (err: any, data?: DeleteConnectInstanceConfigCommandOutput) => void
|
|
130
|
+
cb: (err: any, data?: DeleteConnectInstanceConfigCommandOutput) => void,
|
|
134
131
|
): void;
|
|
135
132
|
deleteInstanceOnboardingJob(
|
|
136
133
|
args: DeleteInstanceOnboardingJobCommandInput,
|
|
137
|
-
options?: __HttpHandlerOptions
|
|
134
|
+
options?: __HttpHandlerOptions,
|
|
138
135
|
): Promise<DeleteInstanceOnboardingJobCommandOutput>;
|
|
139
136
|
deleteInstanceOnboardingJob(
|
|
140
137
|
args: DeleteInstanceOnboardingJobCommandInput,
|
|
141
|
-
cb: (err: any, data?: DeleteInstanceOnboardingJobCommandOutput) => void
|
|
138
|
+
cb: (err: any, data?: DeleteInstanceOnboardingJobCommandOutput) => void,
|
|
142
139
|
): void;
|
|
143
140
|
deleteInstanceOnboardingJob(
|
|
144
141
|
args: DeleteInstanceOnboardingJobCommandInput,
|
|
145
142
|
options: __HttpHandlerOptions,
|
|
146
|
-
cb: (err: any, data?: DeleteInstanceOnboardingJobCommandOutput) => void
|
|
143
|
+
cb: (err: any, data?: DeleteInstanceOnboardingJobCommandOutput) => void,
|
|
147
144
|
): void;
|
|
148
145
|
describeCampaign(
|
|
149
146
|
args: DescribeCampaignCommandInput,
|
|
150
|
-
options?: __HttpHandlerOptions
|
|
147
|
+
options?: __HttpHandlerOptions,
|
|
151
148
|
): Promise<DescribeCampaignCommandOutput>;
|
|
152
149
|
describeCampaign(
|
|
153
150
|
args: DescribeCampaignCommandInput,
|
|
154
|
-
cb: (err: any, data?: DescribeCampaignCommandOutput) => void
|
|
151
|
+
cb: (err: any, data?: DescribeCampaignCommandOutput) => void,
|
|
155
152
|
): void;
|
|
156
153
|
describeCampaign(
|
|
157
154
|
args: DescribeCampaignCommandInput,
|
|
158
155
|
options: __HttpHandlerOptions,
|
|
159
|
-
cb: (err: any, data?: DescribeCampaignCommandOutput) => void
|
|
156
|
+
cb: (err: any, data?: DescribeCampaignCommandOutput) => void,
|
|
160
157
|
): void;
|
|
161
158
|
getCampaignState(
|
|
162
159
|
args: GetCampaignStateCommandInput,
|
|
163
|
-
options?: __HttpHandlerOptions
|
|
160
|
+
options?: __HttpHandlerOptions,
|
|
164
161
|
): Promise<GetCampaignStateCommandOutput>;
|
|
165
162
|
getCampaignState(
|
|
166
163
|
args: GetCampaignStateCommandInput,
|
|
167
|
-
cb: (err: any, data?: GetCampaignStateCommandOutput) => void
|
|
164
|
+
cb: (err: any, data?: GetCampaignStateCommandOutput) => void,
|
|
168
165
|
): void;
|
|
169
166
|
getCampaignState(
|
|
170
167
|
args: GetCampaignStateCommandInput,
|
|
171
168
|
options: __HttpHandlerOptions,
|
|
172
|
-
cb: (err: any, data?: GetCampaignStateCommandOutput) => void
|
|
169
|
+
cb: (err: any, data?: GetCampaignStateCommandOutput) => void,
|
|
173
170
|
): void;
|
|
174
171
|
getCampaignStateBatch(
|
|
175
172
|
args: GetCampaignStateBatchCommandInput,
|
|
176
|
-
options?: __HttpHandlerOptions
|
|
173
|
+
options?: __HttpHandlerOptions,
|
|
177
174
|
): Promise<GetCampaignStateBatchCommandOutput>;
|
|
178
175
|
getCampaignStateBatch(
|
|
179
176
|
args: GetCampaignStateBatchCommandInput,
|
|
180
|
-
cb: (err: any, data?: GetCampaignStateBatchCommandOutput) => void
|
|
177
|
+
cb: (err: any, data?: GetCampaignStateBatchCommandOutput) => void,
|
|
181
178
|
): void;
|
|
182
179
|
getCampaignStateBatch(
|
|
183
180
|
args: GetCampaignStateBatchCommandInput,
|
|
184
181
|
options: __HttpHandlerOptions,
|
|
185
|
-
cb: (err: any, data?: GetCampaignStateBatchCommandOutput) => void
|
|
182
|
+
cb: (err: any, data?: GetCampaignStateBatchCommandOutput) => void,
|
|
186
183
|
): void;
|
|
187
184
|
getConnectInstanceConfig(
|
|
188
185
|
args: GetConnectInstanceConfigCommandInput,
|
|
189
|
-
options?: __HttpHandlerOptions
|
|
186
|
+
options?: __HttpHandlerOptions,
|
|
190
187
|
): Promise<GetConnectInstanceConfigCommandOutput>;
|
|
191
188
|
getConnectInstanceConfig(
|
|
192
189
|
args: GetConnectInstanceConfigCommandInput,
|
|
193
|
-
cb: (err: any, data?: GetConnectInstanceConfigCommandOutput) => void
|
|
190
|
+
cb: (err: any, data?: GetConnectInstanceConfigCommandOutput) => void,
|
|
194
191
|
): void;
|
|
195
192
|
getConnectInstanceConfig(
|
|
196
193
|
args: GetConnectInstanceConfigCommandInput,
|
|
197
194
|
options: __HttpHandlerOptions,
|
|
198
|
-
cb: (err: any, data?: GetConnectInstanceConfigCommandOutput) => void
|
|
195
|
+
cb: (err: any, data?: GetConnectInstanceConfigCommandOutput) => void,
|
|
199
196
|
): void;
|
|
200
197
|
getInstanceOnboardingJobStatus(
|
|
201
198
|
args: GetInstanceOnboardingJobStatusCommandInput,
|
|
202
|
-
options?: __HttpHandlerOptions
|
|
199
|
+
options?: __HttpHandlerOptions,
|
|
203
200
|
): Promise<GetInstanceOnboardingJobStatusCommandOutput>;
|
|
204
201
|
getInstanceOnboardingJobStatus(
|
|
205
202
|
args: GetInstanceOnboardingJobStatusCommandInput,
|
|
206
|
-
cb: (err: any, data?: GetInstanceOnboardingJobStatusCommandOutput) => void
|
|
203
|
+
cb: (err: any, data?: GetInstanceOnboardingJobStatusCommandOutput) => void,
|
|
207
204
|
): void;
|
|
208
205
|
getInstanceOnboardingJobStatus(
|
|
209
206
|
args: GetInstanceOnboardingJobStatusCommandInput,
|
|
210
207
|
options: __HttpHandlerOptions,
|
|
211
|
-
cb: (err: any, data?: GetInstanceOnboardingJobStatusCommandOutput) => void
|
|
208
|
+
cb: (err: any, data?: GetInstanceOnboardingJobStatusCommandOutput) => void,
|
|
212
209
|
): void;
|
|
213
210
|
listCampaigns(): Promise<ListCampaignsCommandOutput>;
|
|
214
211
|
listCampaigns(
|
|
215
212
|
args: ListCampaignsCommandInput,
|
|
216
|
-
options?: __HttpHandlerOptions
|
|
213
|
+
options?: __HttpHandlerOptions,
|
|
217
214
|
): Promise<ListCampaignsCommandOutput>;
|
|
218
215
|
listCampaigns(
|
|
219
216
|
args: ListCampaignsCommandInput,
|
|
220
|
-
cb: (err: any, data?: ListCampaignsCommandOutput) => void
|
|
217
|
+
cb: (err: any, data?: ListCampaignsCommandOutput) => void,
|
|
221
218
|
): void;
|
|
222
219
|
listCampaigns(
|
|
223
220
|
args: ListCampaignsCommandInput,
|
|
224
221
|
options: __HttpHandlerOptions,
|
|
225
|
-
cb: (err: any, data?: ListCampaignsCommandOutput) => void
|
|
222
|
+
cb: (err: any, data?: ListCampaignsCommandOutput) => void,
|
|
226
223
|
): void;
|
|
227
224
|
listTagsForResource(
|
|
228
225
|
args: ListTagsForResourceCommandInput,
|
|
229
|
-
options?: __HttpHandlerOptions
|
|
226
|
+
options?: __HttpHandlerOptions,
|
|
230
227
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
231
228
|
listTagsForResource(
|
|
232
229
|
args: ListTagsForResourceCommandInput,
|
|
233
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
230
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
234
231
|
): void;
|
|
235
232
|
listTagsForResource(
|
|
236
233
|
args: ListTagsForResourceCommandInput,
|
|
237
234
|
options: __HttpHandlerOptions,
|
|
238
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
235
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
239
236
|
): void;
|
|
240
237
|
pauseCampaign(
|
|
241
238
|
args: PauseCampaignCommandInput,
|
|
242
|
-
options?: __HttpHandlerOptions
|
|
239
|
+
options?: __HttpHandlerOptions,
|
|
243
240
|
): Promise<PauseCampaignCommandOutput>;
|
|
244
241
|
pauseCampaign(
|
|
245
242
|
args: PauseCampaignCommandInput,
|
|
246
|
-
cb: (err: any, data?: PauseCampaignCommandOutput) => void
|
|
243
|
+
cb: (err: any, data?: PauseCampaignCommandOutput) => void,
|
|
247
244
|
): void;
|
|
248
245
|
pauseCampaign(
|
|
249
246
|
args: PauseCampaignCommandInput,
|
|
250
247
|
options: __HttpHandlerOptions,
|
|
251
|
-
cb: (err: any, data?: PauseCampaignCommandOutput) => void
|
|
248
|
+
cb: (err: any, data?: PauseCampaignCommandOutput) => void,
|
|
252
249
|
): void;
|
|
253
250
|
putDialRequestBatch(
|
|
254
251
|
args: PutDialRequestBatchCommandInput,
|
|
255
|
-
options?: __HttpHandlerOptions
|
|
252
|
+
options?: __HttpHandlerOptions,
|
|
256
253
|
): Promise<PutDialRequestBatchCommandOutput>;
|
|
257
254
|
putDialRequestBatch(
|
|
258
255
|
args: PutDialRequestBatchCommandInput,
|
|
259
|
-
cb: (err: any, data?: PutDialRequestBatchCommandOutput) => void
|
|
256
|
+
cb: (err: any, data?: PutDialRequestBatchCommandOutput) => void,
|
|
260
257
|
): void;
|
|
261
258
|
putDialRequestBatch(
|
|
262
259
|
args: PutDialRequestBatchCommandInput,
|
|
263
260
|
options: __HttpHandlerOptions,
|
|
264
|
-
cb: (err: any, data?: PutDialRequestBatchCommandOutput) => void
|
|
261
|
+
cb: (err: any, data?: PutDialRequestBatchCommandOutput) => void,
|
|
265
262
|
): void;
|
|
266
263
|
resumeCampaign(
|
|
267
264
|
args: ResumeCampaignCommandInput,
|
|
268
|
-
options?: __HttpHandlerOptions
|
|
265
|
+
options?: __HttpHandlerOptions,
|
|
269
266
|
): Promise<ResumeCampaignCommandOutput>;
|
|
270
267
|
resumeCampaign(
|
|
271
268
|
args: ResumeCampaignCommandInput,
|
|
272
|
-
cb: (err: any, data?: ResumeCampaignCommandOutput) => void
|
|
269
|
+
cb: (err: any, data?: ResumeCampaignCommandOutput) => void,
|
|
273
270
|
): void;
|
|
274
271
|
resumeCampaign(
|
|
275
272
|
args: ResumeCampaignCommandInput,
|
|
276
273
|
options: __HttpHandlerOptions,
|
|
277
|
-
cb: (err: any, data?: ResumeCampaignCommandOutput) => void
|
|
274
|
+
cb: (err: any, data?: ResumeCampaignCommandOutput) => void,
|
|
278
275
|
): void;
|
|
279
276
|
startCampaign(
|
|
280
277
|
args: StartCampaignCommandInput,
|
|
281
|
-
options?: __HttpHandlerOptions
|
|
278
|
+
options?: __HttpHandlerOptions,
|
|
282
279
|
): Promise<StartCampaignCommandOutput>;
|
|
283
280
|
startCampaign(
|
|
284
281
|
args: StartCampaignCommandInput,
|
|
285
|
-
cb: (err: any, data?: StartCampaignCommandOutput) => void
|
|
282
|
+
cb: (err: any, data?: StartCampaignCommandOutput) => void,
|
|
286
283
|
): void;
|
|
287
284
|
startCampaign(
|
|
288
285
|
args: StartCampaignCommandInput,
|
|
289
286
|
options: __HttpHandlerOptions,
|
|
290
|
-
cb: (err: any, data?: StartCampaignCommandOutput) => void
|
|
287
|
+
cb: (err: any, data?: StartCampaignCommandOutput) => void,
|
|
291
288
|
): void;
|
|
292
289
|
startInstanceOnboardingJob(
|
|
293
290
|
args: StartInstanceOnboardingJobCommandInput,
|
|
294
|
-
options?: __HttpHandlerOptions
|
|
291
|
+
options?: __HttpHandlerOptions,
|
|
295
292
|
): Promise<StartInstanceOnboardingJobCommandOutput>;
|
|
296
293
|
startInstanceOnboardingJob(
|
|
297
294
|
args: StartInstanceOnboardingJobCommandInput,
|
|
298
|
-
cb: (err: any, data?: StartInstanceOnboardingJobCommandOutput) => void
|
|
295
|
+
cb: (err: any, data?: StartInstanceOnboardingJobCommandOutput) => void,
|
|
299
296
|
): void;
|
|
300
297
|
startInstanceOnboardingJob(
|
|
301
298
|
args: StartInstanceOnboardingJobCommandInput,
|
|
302
299
|
options: __HttpHandlerOptions,
|
|
303
|
-
cb: (err: any, data?: StartInstanceOnboardingJobCommandOutput) => void
|
|
300
|
+
cb: (err: any, data?: StartInstanceOnboardingJobCommandOutput) => void,
|
|
304
301
|
): void;
|
|
305
302
|
stopCampaign(
|
|
306
303
|
args: StopCampaignCommandInput,
|
|
307
|
-
options?: __HttpHandlerOptions
|
|
304
|
+
options?: __HttpHandlerOptions,
|
|
308
305
|
): Promise<StopCampaignCommandOutput>;
|
|
309
306
|
stopCampaign(
|
|
310
307
|
args: StopCampaignCommandInput,
|
|
311
|
-
cb: (err: any, data?: StopCampaignCommandOutput) => void
|
|
308
|
+
cb: (err: any, data?: StopCampaignCommandOutput) => void,
|
|
312
309
|
): void;
|
|
313
310
|
stopCampaign(
|
|
314
311
|
args: StopCampaignCommandInput,
|
|
315
312
|
options: __HttpHandlerOptions,
|
|
316
|
-
cb: (err: any, data?: StopCampaignCommandOutput) => void
|
|
313
|
+
cb: (err: any, data?: StopCampaignCommandOutput) => void,
|
|
317
314
|
): void;
|
|
318
315
|
tagResource(
|
|
319
316
|
args: TagResourceCommandInput,
|
|
320
|
-
options?: __HttpHandlerOptions
|
|
317
|
+
options?: __HttpHandlerOptions,
|
|
321
318
|
): Promise<TagResourceCommandOutput>;
|
|
322
319
|
tagResource(
|
|
323
320
|
args: TagResourceCommandInput,
|
|
324
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
321
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
325
322
|
): void;
|
|
326
323
|
tagResource(
|
|
327
324
|
args: TagResourceCommandInput,
|
|
328
325
|
options: __HttpHandlerOptions,
|
|
329
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
326
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
330
327
|
): void;
|
|
331
328
|
untagResource(
|
|
332
329
|
args: UntagResourceCommandInput,
|
|
333
|
-
options?: __HttpHandlerOptions
|
|
330
|
+
options?: __HttpHandlerOptions,
|
|
334
331
|
): Promise<UntagResourceCommandOutput>;
|
|
335
332
|
untagResource(
|
|
336
333
|
args: UntagResourceCommandInput,
|
|
337
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
334
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
338
335
|
): void;
|
|
339
336
|
untagResource(
|
|
340
337
|
args: UntagResourceCommandInput,
|
|
341
338
|
options: __HttpHandlerOptions,
|
|
342
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
339
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
343
340
|
): void;
|
|
344
341
|
updateCampaignDialerConfig(
|
|
345
342
|
args: UpdateCampaignDialerConfigCommandInput,
|
|
346
|
-
options?: __HttpHandlerOptions
|
|
343
|
+
options?: __HttpHandlerOptions,
|
|
347
344
|
): Promise<UpdateCampaignDialerConfigCommandOutput>;
|
|
348
345
|
updateCampaignDialerConfig(
|
|
349
346
|
args: UpdateCampaignDialerConfigCommandInput,
|
|
350
|
-
cb: (err: any, data?: UpdateCampaignDialerConfigCommandOutput) => void
|
|
347
|
+
cb: (err: any, data?: UpdateCampaignDialerConfigCommandOutput) => void,
|
|
351
348
|
): void;
|
|
352
349
|
updateCampaignDialerConfig(
|
|
353
350
|
args: UpdateCampaignDialerConfigCommandInput,
|
|
354
351
|
options: __HttpHandlerOptions,
|
|
355
|
-
cb: (err: any, data?: UpdateCampaignDialerConfigCommandOutput) => void
|
|
352
|
+
cb: (err: any, data?: UpdateCampaignDialerConfigCommandOutput) => void,
|
|
356
353
|
): void;
|
|
357
354
|
updateCampaignName(
|
|
358
355
|
args: UpdateCampaignNameCommandInput,
|
|
359
|
-
options?: __HttpHandlerOptions
|
|
356
|
+
options?: __HttpHandlerOptions,
|
|
360
357
|
): Promise<UpdateCampaignNameCommandOutput>;
|
|
361
358
|
updateCampaignName(
|
|
362
359
|
args: UpdateCampaignNameCommandInput,
|
|
363
|
-
cb: (err: any, data?: UpdateCampaignNameCommandOutput) => void
|
|
360
|
+
cb: (err: any, data?: UpdateCampaignNameCommandOutput) => void,
|
|
364
361
|
): void;
|
|
365
362
|
updateCampaignName(
|
|
366
363
|
args: UpdateCampaignNameCommandInput,
|
|
367
364
|
options: __HttpHandlerOptions,
|
|
368
|
-
cb: (err: any, data?: UpdateCampaignNameCommandOutput) => void
|
|
365
|
+
cb: (err: any, data?: UpdateCampaignNameCommandOutput) => void,
|
|
369
366
|
): void;
|
|
370
367
|
updateCampaignOutboundCallConfig(
|
|
371
368
|
args: UpdateCampaignOutboundCallConfigCommandInput,
|
|
372
|
-
options?: __HttpHandlerOptions
|
|
369
|
+
options?: __HttpHandlerOptions,
|
|
373
370
|
): Promise<UpdateCampaignOutboundCallConfigCommandOutput>;
|
|
374
371
|
updateCampaignOutboundCallConfig(
|
|
375
372
|
args: UpdateCampaignOutboundCallConfigCommandInput,
|
|
376
|
-
cb: (err: any, data?: UpdateCampaignOutboundCallConfigCommandOutput) => void
|
|
373
|
+
cb: (err: any, data?: UpdateCampaignOutboundCallConfigCommandOutput) => void,
|
|
377
374
|
): void;
|
|
378
375
|
updateCampaignOutboundCallConfig(
|
|
379
376
|
args: UpdateCampaignOutboundCallConfigCommandInput,
|
|
380
377
|
options: __HttpHandlerOptions,
|
|
381
|
-
cb: (err: any, data?: UpdateCampaignOutboundCallConfigCommandOutput) => void
|
|
378
|
+
cb: (err: any, data?: UpdateCampaignOutboundCallConfigCommandOutput) => void,
|
|
382
379
|
): void;
|
|
383
380
|
paginateListCampaigns(
|
|
384
381
|
args?: ListCampaignsCommandInput,
|
|
385
382
|
paginationConfig?: Pick<
|
|
386
383
|
PaginationConfiguration,
|
|
387
384
|
Exclude<keyof PaginationConfiguration, "client">
|
|
388
|
-
|
|
385
|
+
>,
|
|
389
386
|
): Paginator<ListCampaignsCommandOutput>;
|
|
390
387
|
}
|
|
391
|
-
export declare class ConnectCampaigns
|
|
392
|
-
extends ConnectCampaignsClient
|
|
393
|
-
implements ConnectCampaigns {}
|
|
388
|
+
export declare class ConnectCampaigns extends ConnectCampaignsClient implements ConnectCampaigns {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -104,10 +101,7 @@ import {
|
|
|
104
101
|
StopCampaignCommandInput,
|
|
105
102
|
StopCampaignCommandOutput,
|
|
106
103
|
} from "./commands/StopCampaignCommand";
|
|
107
|
-
import {
|
|
108
|
-
TagResourceCommandInput,
|
|
109
|
-
TagResourceCommandOutput,
|
|
110
|
-
} from "./commands/TagResourceCommand";
|
|
104
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
111
105
|
import {
|
|
112
106
|
UntagResourceCommandInput,
|
|
113
107
|
UntagResourceCommandOutput,
|
|
@@ -177,8 +171,7 @@ export type ServiceOutputTypes =
|
|
|
177
171
|
| UpdateCampaignDialerConfigCommandOutput
|
|
178
172
|
| UpdateCampaignNameCommandOutput
|
|
179
173
|
| UpdateCampaignOutboundCallConfigCommandOutput;
|
|
180
|
-
export interface ClientDefaults
|
|
181
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
174
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
182
175
|
requestHandler?: __HttpHandlerUserInput;
|
|
183
176
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
184
177
|
urlParser?: __UrlParser;
|
|
@@ -214,8 +207,7 @@ export type ConnectCampaignsClientConfigType = Partial<
|
|
|
214
207
|
EndpointInputConfig<EndpointParameters> &
|
|
215
208
|
HttpAuthSchemeInputConfig &
|
|
216
209
|
ClientInputEndpointParameters;
|
|
217
|
-
export interface ConnectCampaignsClientConfig
|
|
218
|
-
extends ConnectCampaignsClientConfigType {}
|
|
210
|
+
export interface ConnectCampaignsClientConfig extends ConnectCampaignsClientConfigType {}
|
|
219
211
|
export type ConnectCampaignsClientResolvedConfigType =
|
|
220
212
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
221
213
|
Required<ClientDefaults> &
|
|
@@ -227,8 +219,7 @@ export type ConnectCampaignsClientResolvedConfigType =
|
|
|
227
219
|
EndpointResolvedConfig<EndpointParameters> &
|
|
228
220
|
HttpAuthSchemeResolvedConfig &
|
|
229
221
|
ClientResolvedEndpointParameters;
|
|
230
|
-
export interface ConnectCampaignsClientResolvedConfig
|
|
231
|
-
extends ConnectCampaignsClientResolvedConfigType {}
|
|
222
|
+
export interface ConnectCampaignsClientResolvedConfig extends ConnectCampaignsClientResolvedConfigType {}
|
|
232
223
|
export declare class ConnectCampaignsClient extends __Client<
|
|
233
224
|
__HttpHandlerOptions,
|
|
234
225
|
ServiceInputTypes,
|
|
@@ -236,10 +227,6 @@ export declare class ConnectCampaignsClient extends __Client<
|
|
|
236
227
|
ConnectCampaignsClientResolvedConfig
|
|
237
228
|
> {
|
|
238
229
|
readonly config: ConnectCampaignsClientResolvedConfig;
|
|
239
|
-
constructor(
|
|
240
|
-
...[
|
|
241
|
-
configuration,
|
|
242
|
-
]: __CheckOptionalClientConfig<ConnectCampaignsClientConfig>
|
|
243
|
-
);
|
|
230
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<ConnectCampaignsClientConfig>);
|
|
244
231
|
destroy(): void;
|
|
245
232
|
}
|
|
@@ -7,17 +7,10 @@ import { ConnectCampaignsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ConnectCampaignsHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: ConnectCampaignsHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): ConnectCampaignsHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ConnectCampaignsClientResolvedConfig } from "../ConnectCampaignsClient";
|
|
15
|
-
export interface ConnectCampaignsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ConnectCampaignsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ConnectCampaignsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ConnectCampaignsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ConnectCampaignsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ConnectCampaignsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultConnectCampaignsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ConnectCampaignsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ConnectCampaignsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ConnectCampaignsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ConnectCampaignsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ConnectCampaignsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ConnectCampaignsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultConnectCampaignsHttpAuthSchemeProvider: ConnectCampaignsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ConnectCampaignsHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ConnectCampaignsHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ConnectCampaignsClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ConnectCampaignsClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateCampaignRequest,
|
|
4
|
-
CreateCampaignResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateCampaignCommandInput extends CreateCampaignRequest {}
|
|
8
|
-
export interface CreateCampaignCommandOutput
|
|
9
|
-
extends CreateCampaignResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateCampaignCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateCampaignCommandInput
|
|
8
|
+
input: CreateCampaignCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateCampaignCommandInput,
|
|
16
11
|
CreateCampaignCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateCampaignCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateCampaignCommandInput
|
|
17
|
+
input: CreateCampaignCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateCampaignCommandInput,
|
|
25
20
|
CreateCampaignCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface DeleteCampaignCommandInput extends DeleteCampaignRequest {}
|
|
|
5
5
|
export interface DeleteCampaignCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const DeleteCampaignCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: DeleteCampaignCommandInput
|
|
8
|
+
input: DeleteCampaignCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeleteCampaignCommandInput,
|
|
11
11
|
DeleteCampaignCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const DeleteCampaignCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: DeleteCampaignCommandInput
|
|
17
|
+
input: DeleteCampaignCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeleteCampaignCommandInput,
|
|
20
20
|
DeleteCampaignCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteConnectInstanceConfigRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteConnectInstanceConfigCommandInput
|
|
5
|
-
|
|
6
|
-
export interface DeleteConnectInstanceConfigCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface DeleteConnectInstanceConfigCommandInput extends DeleteConnectInstanceConfigRequest {}
|
|
5
|
+
export interface DeleteConnectInstanceConfigCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const DeleteConnectInstanceConfigCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteConnectInstanceConfigCommandInput
|
|
8
|
+
input: DeleteConnectInstanceConfigCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteConnectInstanceConfigCommandInput,
|
|
13
11
|
DeleteConnectInstanceConfigCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteConnectInstanceConfigCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteConnectInstanceConfigCommandInput
|
|
17
|
+
input: DeleteConnectInstanceConfigCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteConnectInstanceConfigCommandInput,
|
|
22
20
|
DeleteConnectInstanceConfigCommandOutput,
|