@aws-sdk/client-connectcampaigns 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/ConnectCampaigns.d.ts +400 -115
- package/dist-types/ts3.4/ConnectCampaignsClient.d.ts +262 -95
- package/dist-types/ts3.4/commands/CreateCampaignCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteConnectInstanceConfigCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteInstanceOnboardingJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeCampaignCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetCampaignStateBatchCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCampaignStateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetConnectInstanceConfigCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetInstanceOnboardingJobStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListCampaignsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PauseCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutDialRequestBatchCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ResumeCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartInstanceOnboardingJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateCampaignDialerConfigCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateCampaignNameCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +22 -22
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ConnectCampaignsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +650 -595
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListCampaignsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-connectcampaigns
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-connectcampaigns
|
|
@@ -1,115 +1,400 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateCampaignCommandInput,
|
|
4
|
+
CreateCampaignCommandOutput,
|
|
5
|
+
} from "./commands/CreateCampaignCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteCampaignCommandInput,
|
|
8
|
+
DeleteCampaignCommandOutput,
|
|
9
|
+
} from "./commands/DeleteCampaignCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteConnectInstanceConfigCommandInput,
|
|
12
|
+
DeleteConnectInstanceConfigCommandOutput,
|
|
13
|
+
} from "./commands/DeleteConnectInstanceConfigCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteInstanceOnboardingJobCommandInput,
|
|
16
|
+
DeleteInstanceOnboardingJobCommandOutput,
|
|
17
|
+
} from "./commands/DeleteInstanceOnboardingJobCommand";
|
|
18
|
+
import {
|
|
19
|
+
DescribeCampaignCommandInput,
|
|
20
|
+
DescribeCampaignCommandOutput,
|
|
21
|
+
} from "./commands/DescribeCampaignCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetCampaignStateBatchCommandInput,
|
|
24
|
+
GetCampaignStateBatchCommandOutput,
|
|
25
|
+
} from "./commands/GetCampaignStateBatchCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetCampaignStateCommandInput,
|
|
28
|
+
GetCampaignStateCommandOutput,
|
|
29
|
+
} from "./commands/GetCampaignStateCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetConnectInstanceConfigCommandInput,
|
|
32
|
+
GetConnectInstanceConfigCommandOutput,
|
|
33
|
+
} from "./commands/GetConnectInstanceConfigCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetInstanceOnboardingJobStatusCommandInput,
|
|
36
|
+
GetInstanceOnboardingJobStatusCommandOutput,
|
|
37
|
+
} from "./commands/GetInstanceOnboardingJobStatusCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListCampaignsCommandInput,
|
|
40
|
+
ListCampaignsCommandOutput,
|
|
41
|
+
} from "./commands/ListCampaignsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTagsForResourceCommandInput,
|
|
44
|
+
ListTagsForResourceCommandOutput,
|
|
45
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
PauseCampaignCommandInput,
|
|
48
|
+
PauseCampaignCommandOutput,
|
|
49
|
+
} from "./commands/PauseCampaignCommand";
|
|
50
|
+
import {
|
|
51
|
+
PutDialRequestBatchCommandInput,
|
|
52
|
+
PutDialRequestBatchCommandOutput,
|
|
53
|
+
} from "./commands/PutDialRequestBatchCommand";
|
|
54
|
+
import {
|
|
55
|
+
ResumeCampaignCommandInput,
|
|
56
|
+
ResumeCampaignCommandOutput,
|
|
57
|
+
} from "./commands/ResumeCampaignCommand";
|
|
58
|
+
import {
|
|
59
|
+
StartCampaignCommandInput,
|
|
60
|
+
StartCampaignCommandOutput,
|
|
61
|
+
} from "./commands/StartCampaignCommand";
|
|
62
|
+
import {
|
|
63
|
+
StartInstanceOnboardingJobCommandInput,
|
|
64
|
+
StartInstanceOnboardingJobCommandOutput,
|
|
65
|
+
} from "./commands/StartInstanceOnboardingJobCommand";
|
|
66
|
+
import {
|
|
67
|
+
StopCampaignCommandInput,
|
|
68
|
+
StopCampaignCommandOutput,
|
|
69
|
+
} from "./commands/StopCampaignCommand";
|
|
70
|
+
import {
|
|
71
|
+
TagResourceCommandInput,
|
|
72
|
+
TagResourceCommandOutput,
|
|
73
|
+
} from "./commands/TagResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
UntagResourceCommandInput,
|
|
76
|
+
UntagResourceCommandOutput,
|
|
77
|
+
} from "./commands/UntagResourceCommand";
|
|
78
|
+
import {
|
|
79
|
+
UpdateCampaignDialerConfigCommandInput,
|
|
80
|
+
UpdateCampaignDialerConfigCommandOutput,
|
|
81
|
+
} from "./commands/UpdateCampaignDialerConfigCommand";
|
|
82
|
+
import {
|
|
83
|
+
UpdateCampaignNameCommandInput,
|
|
84
|
+
UpdateCampaignNameCommandOutput,
|
|
85
|
+
} from "./commands/UpdateCampaignNameCommand";
|
|
86
|
+
import {
|
|
87
|
+
UpdateCampaignOutboundCallConfigCommandInput,
|
|
88
|
+
UpdateCampaignOutboundCallConfigCommandOutput,
|
|
89
|
+
} from "./commands/UpdateCampaignOutboundCallConfigCommand";
|
|
90
|
+
import { ConnectCampaignsClient } from "./ConnectCampaignsClient";
|
|
91
|
+
|
|
92
|
+
export declare class ConnectCampaigns extends ConnectCampaignsClient {
|
|
93
|
+
createCampaign(
|
|
94
|
+
args: CreateCampaignCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<CreateCampaignCommandOutput>;
|
|
97
|
+
createCampaign(
|
|
98
|
+
args: CreateCampaignCommandInput,
|
|
99
|
+
cb: (err: any, data?: CreateCampaignCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
createCampaign(
|
|
102
|
+
args: CreateCampaignCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: CreateCampaignCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
deleteCampaign(
|
|
108
|
+
args: DeleteCampaignCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<DeleteCampaignCommandOutput>;
|
|
111
|
+
deleteCampaign(
|
|
112
|
+
args: DeleteCampaignCommandInput,
|
|
113
|
+
cb: (err: any, data?: DeleteCampaignCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
deleteCampaign(
|
|
116
|
+
args: DeleteCampaignCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: DeleteCampaignCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
deleteConnectInstanceConfig(
|
|
122
|
+
args: DeleteConnectInstanceConfigCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<DeleteConnectInstanceConfigCommandOutput>;
|
|
125
|
+
deleteConnectInstanceConfig(
|
|
126
|
+
args: DeleteConnectInstanceConfigCommandInput,
|
|
127
|
+
cb: (err: any, data?: DeleteConnectInstanceConfigCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
deleteConnectInstanceConfig(
|
|
130
|
+
args: DeleteConnectInstanceConfigCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: DeleteConnectInstanceConfigCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
deleteInstanceOnboardingJob(
|
|
136
|
+
args: DeleteInstanceOnboardingJobCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<DeleteInstanceOnboardingJobCommandOutput>;
|
|
139
|
+
deleteInstanceOnboardingJob(
|
|
140
|
+
args: DeleteInstanceOnboardingJobCommandInput,
|
|
141
|
+
cb: (err: any, data?: DeleteInstanceOnboardingJobCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
deleteInstanceOnboardingJob(
|
|
144
|
+
args: DeleteInstanceOnboardingJobCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: DeleteInstanceOnboardingJobCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
|
|
149
|
+
describeCampaign(
|
|
150
|
+
args: DescribeCampaignCommandInput,
|
|
151
|
+
options?: __HttpHandlerOptions
|
|
152
|
+
): Promise<DescribeCampaignCommandOutput>;
|
|
153
|
+
describeCampaign(
|
|
154
|
+
args: DescribeCampaignCommandInput,
|
|
155
|
+
cb: (err: any, data?: DescribeCampaignCommandOutput) => void
|
|
156
|
+
): void;
|
|
157
|
+
describeCampaign(
|
|
158
|
+
args: DescribeCampaignCommandInput,
|
|
159
|
+
options: __HttpHandlerOptions,
|
|
160
|
+
cb: (err: any, data?: DescribeCampaignCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
|
|
163
|
+
getCampaignState(
|
|
164
|
+
args: GetCampaignStateCommandInput,
|
|
165
|
+
options?: __HttpHandlerOptions
|
|
166
|
+
): Promise<GetCampaignStateCommandOutput>;
|
|
167
|
+
getCampaignState(
|
|
168
|
+
args: GetCampaignStateCommandInput,
|
|
169
|
+
cb: (err: any, data?: GetCampaignStateCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
getCampaignState(
|
|
172
|
+
args: GetCampaignStateCommandInput,
|
|
173
|
+
options: __HttpHandlerOptions,
|
|
174
|
+
cb: (err: any, data?: GetCampaignStateCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
|
|
177
|
+
getCampaignStateBatch(
|
|
178
|
+
args: GetCampaignStateBatchCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<GetCampaignStateBatchCommandOutput>;
|
|
181
|
+
getCampaignStateBatch(
|
|
182
|
+
args: GetCampaignStateBatchCommandInput,
|
|
183
|
+
cb: (err: any, data?: GetCampaignStateBatchCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
getCampaignStateBatch(
|
|
186
|
+
args: GetCampaignStateBatchCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: GetCampaignStateBatchCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
|
|
191
|
+
getConnectInstanceConfig(
|
|
192
|
+
args: GetConnectInstanceConfigCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<GetConnectInstanceConfigCommandOutput>;
|
|
195
|
+
getConnectInstanceConfig(
|
|
196
|
+
args: GetConnectInstanceConfigCommandInput,
|
|
197
|
+
cb: (err: any, data?: GetConnectInstanceConfigCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
getConnectInstanceConfig(
|
|
200
|
+
args: GetConnectInstanceConfigCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: GetConnectInstanceConfigCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
|
|
205
|
+
getInstanceOnboardingJobStatus(
|
|
206
|
+
args: GetInstanceOnboardingJobStatusCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<GetInstanceOnboardingJobStatusCommandOutput>;
|
|
209
|
+
getInstanceOnboardingJobStatus(
|
|
210
|
+
args: GetInstanceOnboardingJobStatusCommandInput,
|
|
211
|
+
cb: (err: any, data?: GetInstanceOnboardingJobStatusCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
getInstanceOnboardingJobStatus(
|
|
214
|
+
args: GetInstanceOnboardingJobStatusCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: GetInstanceOnboardingJobStatusCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
|
|
219
|
+
listCampaigns(
|
|
220
|
+
args: ListCampaignsCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<ListCampaignsCommandOutput>;
|
|
223
|
+
listCampaigns(
|
|
224
|
+
args: ListCampaignsCommandInput,
|
|
225
|
+
cb: (err: any, data?: ListCampaignsCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
listCampaigns(
|
|
228
|
+
args: ListCampaignsCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: ListCampaignsCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
|
|
233
|
+
listTagsForResource(
|
|
234
|
+
args: ListTagsForResourceCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
237
|
+
listTagsForResource(
|
|
238
|
+
args: ListTagsForResourceCommandInput,
|
|
239
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
listTagsForResource(
|
|
242
|
+
args: ListTagsForResourceCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
|
|
247
|
+
pauseCampaign(
|
|
248
|
+
args: PauseCampaignCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<PauseCampaignCommandOutput>;
|
|
251
|
+
pauseCampaign(
|
|
252
|
+
args: PauseCampaignCommandInput,
|
|
253
|
+
cb: (err: any, data?: PauseCampaignCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
pauseCampaign(
|
|
256
|
+
args: PauseCampaignCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: PauseCampaignCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
|
|
261
|
+
putDialRequestBatch(
|
|
262
|
+
args: PutDialRequestBatchCommandInput,
|
|
263
|
+
options?: __HttpHandlerOptions
|
|
264
|
+
): Promise<PutDialRequestBatchCommandOutput>;
|
|
265
|
+
putDialRequestBatch(
|
|
266
|
+
args: PutDialRequestBatchCommandInput,
|
|
267
|
+
cb: (err: any, data?: PutDialRequestBatchCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
putDialRequestBatch(
|
|
270
|
+
args: PutDialRequestBatchCommandInput,
|
|
271
|
+
options: __HttpHandlerOptions,
|
|
272
|
+
cb: (err: any, data?: PutDialRequestBatchCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
|
|
275
|
+
resumeCampaign(
|
|
276
|
+
args: ResumeCampaignCommandInput,
|
|
277
|
+
options?: __HttpHandlerOptions
|
|
278
|
+
): Promise<ResumeCampaignCommandOutput>;
|
|
279
|
+
resumeCampaign(
|
|
280
|
+
args: ResumeCampaignCommandInput,
|
|
281
|
+
cb: (err: any, data?: ResumeCampaignCommandOutput) => void
|
|
282
|
+
): void;
|
|
283
|
+
resumeCampaign(
|
|
284
|
+
args: ResumeCampaignCommandInput,
|
|
285
|
+
options: __HttpHandlerOptions,
|
|
286
|
+
cb: (err: any, data?: ResumeCampaignCommandOutput) => void
|
|
287
|
+
): void;
|
|
288
|
+
|
|
289
|
+
startCampaign(
|
|
290
|
+
args: StartCampaignCommandInput,
|
|
291
|
+
options?: __HttpHandlerOptions
|
|
292
|
+
): Promise<StartCampaignCommandOutput>;
|
|
293
|
+
startCampaign(
|
|
294
|
+
args: StartCampaignCommandInput,
|
|
295
|
+
cb: (err: any, data?: StartCampaignCommandOutput) => void
|
|
296
|
+
): void;
|
|
297
|
+
startCampaign(
|
|
298
|
+
args: StartCampaignCommandInput,
|
|
299
|
+
options: __HttpHandlerOptions,
|
|
300
|
+
cb: (err: any, data?: StartCampaignCommandOutput) => void
|
|
301
|
+
): void;
|
|
302
|
+
|
|
303
|
+
startInstanceOnboardingJob(
|
|
304
|
+
args: StartInstanceOnboardingJobCommandInput,
|
|
305
|
+
options?: __HttpHandlerOptions
|
|
306
|
+
): Promise<StartInstanceOnboardingJobCommandOutput>;
|
|
307
|
+
startInstanceOnboardingJob(
|
|
308
|
+
args: StartInstanceOnboardingJobCommandInput,
|
|
309
|
+
cb: (err: any, data?: StartInstanceOnboardingJobCommandOutput) => void
|
|
310
|
+
): void;
|
|
311
|
+
startInstanceOnboardingJob(
|
|
312
|
+
args: StartInstanceOnboardingJobCommandInput,
|
|
313
|
+
options: __HttpHandlerOptions,
|
|
314
|
+
cb: (err: any, data?: StartInstanceOnboardingJobCommandOutput) => void
|
|
315
|
+
): void;
|
|
316
|
+
|
|
317
|
+
stopCampaign(
|
|
318
|
+
args: StopCampaignCommandInput,
|
|
319
|
+
options?: __HttpHandlerOptions
|
|
320
|
+
): Promise<StopCampaignCommandOutput>;
|
|
321
|
+
stopCampaign(
|
|
322
|
+
args: StopCampaignCommandInput,
|
|
323
|
+
cb: (err: any, data?: StopCampaignCommandOutput) => void
|
|
324
|
+
): void;
|
|
325
|
+
stopCampaign(
|
|
326
|
+
args: StopCampaignCommandInput,
|
|
327
|
+
options: __HttpHandlerOptions,
|
|
328
|
+
cb: (err: any, data?: StopCampaignCommandOutput) => void
|
|
329
|
+
): void;
|
|
330
|
+
|
|
331
|
+
tagResource(
|
|
332
|
+
args: TagResourceCommandInput,
|
|
333
|
+
options?: __HttpHandlerOptions
|
|
334
|
+
): Promise<TagResourceCommandOutput>;
|
|
335
|
+
tagResource(
|
|
336
|
+
args: TagResourceCommandInput,
|
|
337
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
338
|
+
): void;
|
|
339
|
+
tagResource(
|
|
340
|
+
args: TagResourceCommandInput,
|
|
341
|
+
options: __HttpHandlerOptions,
|
|
342
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
343
|
+
): void;
|
|
344
|
+
|
|
345
|
+
untagResource(
|
|
346
|
+
args: UntagResourceCommandInput,
|
|
347
|
+
options?: __HttpHandlerOptions
|
|
348
|
+
): Promise<UntagResourceCommandOutput>;
|
|
349
|
+
untagResource(
|
|
350
|
+
args: UntagResourceCommandInput,
|
|
351
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
352
|
+
): void;
|
|
353
|
+
untagResource(
|
|
354
|
+
args: UntagResourceCommandInput,
|
|
355
|
+
options: __HttpHandlerOptions,
|
|
356
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
357
|
+
): void;
|
|
358
|
+
|
|
359
|
+
updateCampaignDialerConfig(
|
|
360
|
+
args: UpdateCampaignDialerConfigCommandInput,
|
|
361
|
+
options?: __HttpHandlerOptions
|
|
362
|
+
): Promise<UpdateCampaignDialerConfigCommandOutput>;
|
|
363
|
+
updateCampaignDialerConfig(
|
|
364
|
+
args: UpdateCampaignDialerConfigCommandInput,
|
|
365
|
+
cb: (err: any, data?: UpdateCampaignDialerConfigCommandOutput) => void
|
|
366
|
+
): void;
|
|
367
|
+
updateCampaignDialerConfig(
|
|
368
|
+
args: UpdateCampaignDialerConfigCommandInput,
|
|
369
|
+
options: __HttpHandlerOptions,
|
|
370
|
+
cb: (err: any, data?: UpdateCampaignDialerConfigCommandOutput) => void
|
|
371
|
+
): void;
|
|
372
|
+
|
|
373
|
+
updateCampaignName(
|
|
374
|
+
args: UpdateCampaignNameCommandInput,
|
|
375
|
+
options?: __HttpHandlerOptions
|
|
376
|
+
): Promise<UpdateCampaignNameCommandOutput>;
|
|
377
|
+
updateCampaignName(
|
|
378
|
+
args: UpdateCampaignNameCommandInput,
|
|
379
|
+
cb: (err: any, data?: UpdateCampaignNameCommandOutput) => void
|
|
380
|
+
): void;
|
|
381
|
+
updateCampaignName(
|
|
382
|
+
args: UpdateCampaignNameCommandInput,
|
|
383
|
+
options: __HttpHandlerOptions,
|
|
384
|
+
cb: (err: any, data?: UpdateCampaignNameCommandOutput) => void
|
|
385
|
+
): void;
|
|
386
|
+
|
|
387
|
+
updateCampaignOutboundCallConfig(
|
|
388
|
+
args: UpdateCampaignOutboundCallConfigCommandInput,
|
|
389
|
+
options?: __HttpHandlerOptions
|
|
390
|
+
): Promise<UpdateCampaignOutboundCallConfigCommandOutput>;
|
|
391
|
+
updateCampaignOutboundCallConfig(
|
|
392
|
+
args: UpdateCampaignOutboundCallConfigCommandInput,
|
|
393
|
+
cb: (err: any, data?: UpdateCampaignOutboundCallConfigCommandOutput) => void
|
|
394
|
+
): void;
|
|
395
|
+
updateCampaignOutboundCallConfig(
|
|
396
|
+
args: UpdateCampaignOutboundCallConfigCommandInput,
|
|
397
|
+
options: __HttpHandlerOptions,
|
|
398
|
+
cb: (err: any, data?: UpdateCampaignOutboundCallConfigCommandOutput) => void
|
|
399
|
+
): void;
|
|
400
|
+
}
|