@aws-sdk/client-connectparticipant 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.
Files changed (26) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ConnectParticipant.d.ts +148 -45
  3. package/dist-types/ts3.4/ConnectParticipantClient.d.ts +178 -81
  4. package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/SendEventCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/index.d.ts +8 -8
  13. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  14. package/dist-types/ts3.4/index.d.ts +6 -6
  15. package/dist-types/ts3.4/models/ConnectParticipantServiceException.d.ts +8 -6
  16. package/dist-types/ts3.4/models/index.d.ts +1 -1
  17. package/dist-types/ts3.4/models/models_0.d.ts +338 -310
  18. package/dist-types/ts3.4/pagination/GetTranscriptPaginator.d.ts +11 -4
  19. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  20. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  21. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -26
  22. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  23. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  24. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  25. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  26. package/package.json +34 -34
@@ -1,310 +1,338 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ConnectParticipantServiceException as __BaseException } from "./ConnectParticipantServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message: string | undefined;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
- export interface CompleteAttachmentUploadRequest {
12
-
13
- AttachmentIds: string[] | undefined;
14
-
15
- ClientToken?: string;
16
-
17
- ConnectionToken: string | undefined;
18
- }
19
- export interface CompleteAttachmentUploadResponse {
20
- }
21
-
22
- export declare class ConflictException extends __BaseException {
23
- readonly name: "ConflictException";
24
- readonly $fault: "client";
25
- Message: string | undefined;
26
-
27
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
28
- }
29
-
30
- export declare class InternalServerException extends __BaseException {
31
- readonly name: "InternalServerException";
32
- readonly $fault: "server";
33
- Message: string | undefined;
34
-
35
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
36
- }
37
-
38
- export declare class ServiceQuotaExceededException extends __BaseException {
39
- readonly name: "ServiceQuotaExceededException";
40
- readonly $fault: "client";
41
- Message: string | undefined;
42
-
43
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
44
- }
45
-
46
- export declare class ThrottlingException extends __BaseException {
47
- readonly name: "ThrottlingException";
48
- readonly $fault: "client";
49
- Message: string | undefined;
50
-
51
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
52
- }
53
-
54
- export declare class ValidationException extends __BaseException {
55
- readonly name: "ValidationException";
56
- readonly $fault: "client";
57
- Message: string | undefined;
58
-
59
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
60
- }
61
- export declare enum ConnectionType {
62
- CONNECTION_CREDENTIALS = "CONNECTION_CREDENTIALS",
63
- WEBSOCKET = "WEBSOCKET"
64
- }
65
- export interface CreateParticipantConnectionRequest {
66
-
67
- Type: (ConnectionType | string)[] | undefined;
68
-
69
- ParticipantToken: string | undefined;
70
-
71
- ConnectParticipant?: boolean;
72
- }
73
-
74
- export interface ConnectionCredentials {
75
-
76
- ConnectionToken?: string;
77
-
78
- Expiry?: string;
79
- }
80
-
81
- export interface Websocket {
82
-
83
- Url?: string;
84
-
85
- ConnectionExpiry?: string;
86
- }
87
- export interface CreateParticipantConnectionResponse {
88
-
89
- Websocket?: Websocket;
90
-
91
- ConnectionCredentials?: ConnectionCredentials;
92
- }
93
- export interface DisconnectParticipantRequest {
94
-
95
- ClientToken?: string;
96
-
97
- ConnectionToken: string | undefined;
98
- }
99
- export interface DisconnectParticipantResponse {
100
- }
101
- export interface GetAttachmentRequest {
102
-
103
- AttachmentId: string | undefined;
104
-
105
- ConnectionToken: string | undefined;
106
- }
107
- export interface GetAttachmentResponse {
108
-
109
- Url?: string;
110
-
111
- UrlExpiry?: string;
112
- }
113
- export declare enum ScanDirection {
114
- BACKWARD = "BACKWARD",
115
- FORWARD = "FORWARD"
116
- }
117
- export declare enum SortKey {
118
- ASCENDING = "ASCENDING",
119
- DESCENDING = "DESCENDING"
120
- }
121
-
122
- export interface StartPosition {
123
-
124
- Id?: string;
125
-
126
- AbsoluteTime?: string;
127
-
128
- MostRecent?: number;
129
- }
130
- export interface GetTranscriptRequest {
131
-
132
- ContactId?: string;
133
-
134
- MaxResults?: number;
135
-
136
- NextToken?: string;
137
-
138
- ScanDirection?: ScanDirection | string;
139
-
140
- SortOrder?: SortKey | string;
141
-
142
- StartPosition?: StartPosition;
143
-
144
- ConnectionToken: string | undefined;
145
- }
146
- export declare enum ArtifactStatus {
147
- APPROVED = "APPROVED",
148
- IN_PROGRESS = "IN_PROGRESS",
149
- REJECTED = "REJECTED"
150
- }
151
-
152
- export interface AttachmentItem {
153
-
154
- ContentType?: string;
155
-
156
- AttachmentId?: string;
157
-
158
- AttachmentName?: string;
159
-
160
- Status?: ArtifactStatus | string;
161
- }
162
- export declare enum ParticipantRole {
163
- AGENT = "AGENT",
164
- CUSTOMER = "CUSTOMER",
165
- SYSTEM = "SYSTEM"
166
- }
167
- export declare enum ChatItemType {
168
- ATTACHMENT = "ATTACHMENT",
169
- CHAT_ENDED = "CHAT_ENDED",
170
- CONNECTION_ACK = "CONNECTION_ACK",
171
- EVENT = "EVENT",
172
- MESSAGE = "MESSAGE",
173
- PARTICIPANT_JOINED = "PARTICIPANT_JOINED",
174
- PARTICIPANT_LEFT = "PARTICIPANT_LEFT",
175
- TRANSFER_FAILED = "TRANSFER_FAILED",
176
- TRANSFER_SUCCEEDED = "TRANSFER_SUCCEEDED",
177
- TYPING = "TYPING"
178
- }
179
-
180
- export interface Item {
181
-
182
- AbsoluteTime?: string;
183
-
184
- Content?: string;
185
-
186
- ContentType?: string;
187
-
188
- Id?: string;
189
-
190
- Type?: ChatItemType | string;
191
-
192
- ParticipantId?: string;
193
-
194
- DisplayName?: string;
195
-
196
- ParticipantRole?: ParticipantRole | string;
197
-
198
- Attachments?: AttachmentItem[];
199
- }
200
- export interface GetTranscriptResponse {
201
-
202
- InitialContactId?: string;
203
-
204
- Transcript?: Item[];
205
-
206
- NextToken?: string;
207
- }
208
- export interface SendEventRequest {
209
-
210
- ContentType: string | undefined;
211
-
212
- Content?: string;
213
-
214
- ClientToken?: string;
215
-
216
- ConnectionToken: string | undefined;
217
- }
218
- export interface SendEventResponse {
219
-
220
- Id?: string;
221
-
222
- AbsoluteTime?: string;
223
- }
224
- export interface SendMessageRequest {
225
-
226
- ContentType: string | undefined;
227
-
228
- Content: string | undefined;
229
-
230
- ClientToken?: string;
231
-
232
- ConnectionToken: string | undefined;
233
- }
234
- export interface SendMessageResponse {
235
-
236
- Id?: string;
237
-
238
- AbsoluteTime?: string;
239
- }
240
- export interface StartAttachmentUploadRequest {
241
-
242
- ContentType: string | undefined;
243
-
244
- AttachmentSizeInBytes: number | undefined;
245
-
246
- AttachmentName: string | undefined;
247
-
248
- ClientToken?: string;
249
-
250
- ConnectionToken: string | undefined;
251
- }
252
-
253
- export interface UploadMetadata {
254
-
255
- Url?: string;
256
-
257
- UrlExpiry?: string;
258
-
259
- HeadersToInclude?: Record<string, string>;
260
- }
261
- export interface StartAttachmentUploadResponse {
262
-
263
- AttachmentId?: string;
264
-
265
- UploadMetadata?: UploadMetadata;
266
- }
267
-
268
- export declare const CompleteAttachmentUploadRequestFilterSensitiveLog: (obj: CompleteAttachmentUploadRequest) => any;
269
-
270
- export declare const CompleteAttachmentUploadResponseFilterSensitiveLog: (obj: CompleteAttachmentUploadResponse) => any;
271
-
272
- export declare const CreateParticipantConnectionRequestFilterSensitiveLog: (obj: CreateParticipantConnectionRequest) => any;
273
-
274
- export declare const ConnectionCredentialsFilterSensitiveLog: (obj: ConnectionCredentials) => any;
275
-
276
- export declare const WebsocketFilterSensitiveLog: (obj: Websocket) => any;
277
-
278
- export declare const CreateParticipantConnectionResponseFilterSensitiveLog: (obj: CreateParticipantConnectionResponse) => any;
279
-
280
- export declare const DisconnectParticipantRequestFilterSensitiveLog: (obj: DisconnectParticipantRequest) => any;
281
-
282
- export declare const DisconnectParticipantResponseFilterSensitiveLog: (obj: DisconnectParticipantResponse) => any;
283
-
284
- export declare const GetAttachmentRequestFilterSensitiveLog: (obj: GetAttachmentRequest) => any;
285
-
286
- export declare const GetAttachmentResponseFilterSensitiveLog: (obj: GetAttachmentResponse) => any;
287
-
288
- export declare const StartPositionFilterSensitiveLog: (obj: StartPosition) => any;
289
-
290
- export declare const GetTranscriptRequestFilterSensitiveLog: (obj: GetTranscriptRequest) => any;
291
-
292
- export declare const AttachmentItemFilterSensitiveLog: (obj: AttachmentItem) => any;
293
-
294
- export declare const ItemFilterSensitiveLog: (obj: Item) => any;
295
-
296
- export declare const GetTranscriptResponseFilterSensitiveLog: (obj: GetTranscriptResponse) => any;
297
-
298
- export declare const SendEventRequestFilterSensitiveLog: (obj: SendEventRequest) => any;
299
-
300
- export declare const SendEventResponseFilterSensitiveLog: (obj: SendEventResponse) => any;
301
-
302
- export declare const SendMessageRequestFilterSensitiveLog: (obj: SendMessageRequest) => any;
303
-
304
- export declare const SendMessageResponseFilterSensitiveLog: (obj: SendMessageResponse) => any;
305
-
306
- export declare const StartAttachmentUploadRequestFilterSensitiveLog: (obj: StartAttachmentUploadRequest) => any;
307
-
308
- export declare const UploadMetadataFilterSensitiveLog: (obj: UploadMetadata) => any;
309
-
310
- export declare const StartAttachmentUploadResponseFilterSensitiveLog: (obj: StartAttachmentUploadResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ConnectParticipantServiceException as __BaseException } from "./ConnectParticipantServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message: string | undefined;
8
+
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
+ );
12
+ }
13
+ export interface CompleteAttachmentUploadRequest {
14
+ AttachmentIds: string[] | undefined;
15
+
16
+ ClientToken?: string;
17
+
18
+ ConnectionToken: string | undefined;
19
+ }
20
+ export interface CompleteAttachmentUploadResponse {}
21
+
22
+ export declare class ConflictException extends __BaseException {
23
+ readonly name: "ConflictException";
24
+ readonly $fault: "client";
25
+ Message: string | undefined;
26
+
27
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
28
+ }
29
+
30
+ export declare class InternalServerException extends __BaseException {
31
+ readonly name: "InternalServerException";
32
+ readonly $fault: "server";
33
+ Message: string | undefined;
34
+
35
+ constructor(
36
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
37
+ );
38
+ }
39
+
40
+ export declare class ServiceQuotaExceededException extends __BaseException {
41
+ readonly name: "ServiceQuotaExceededException";
42
+ readonly $fault: "client";
43
+ Message: string | undefined;
44
+
45
+ constructor(
46
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
47
+ );
48
+ }
49
+
50
+ export declare class ThrottlingException extends __BaseException {
51
+ readonly name: "ThrottlingException";
52
+ readonly $fault: "client";
53
+ Message: string | undefined;
54
+
55
+ constructor(
56
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
57
+ );
58
+ }
59
+
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
63
+ Message: string | undefined;
64
+
65
+ constructor(
66
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
67
+ );
68
+ }
69
+ export declare enum ConnectionType {
70
+ CONNECTION_CREDENTIALS = "CONNECTION_CREDENTIALS",
71
+ WEBSOCKET = "WEBSOCKET",
72
+ }
73
+ export interface CreateParticipantConnectionRequest {
74
+ Type: (ConnectionType | string)[] | undefined;
75
+
76
+ ParticipantToken: string | undefined;
77
+
78
+ ConnectParticipant?: boolean;
79
+ }
80
+
81
+ export interface ConnectionCredentials {
82
+ ConnectionToken?: string;
83
+
84
+ Expiry?: string;
85
+ }
86
+
87
+ export interface Websocket {
88
+ Url?: string;
89
+
90
+ ConnectionExpiry?: string;
91
+ }
92
+ export interface CreateParticipantConnectionResponse {
93
+ Websocket?: Websocket;
94
+
95
+ ConnectionCredentials?: ConnectionCredentials;
96
+ }
97
+ export interface DisconnectParticipantRequest {
98
+ ClientToken?: string;
99
+
100
+ ConnectionToken: string | undefined;
101
+ }
102
+ export interface DisconnectParticipantResponse {}
103
+ export interface GetAttachmentRequest {
104
+ AttachmentId: string | undefined;
105
+
106
+ ConnectionToken: string | undefined;
107
+ }
108
+ export interface GetAttachmentResponse {
109
+ Url?: string;
110
+
111
+ UrlExpiry?: string;
112
+ }
113
+ export declare enum ScanDirection {
114
+ BACKWARD = "BACKWARD",
115
+ FORWARD = "FORWARD",
116
+ }
117
+ export declare enum SortKey {
118
+ ASCENDING = "ASCENDING",
119
+ DESCENDING = "DESCENDING",
120
+ }
121
+
122
+ export interface StartPosition {
123
+ Id?: string;
124
+
125
+ AbsoluteTime?: string;
126
+
127
+ MostRecent?: number;
128
+ }
129
+ export interface GetTranscriptRequest {
130
+ ContactId?: string;
131
+
132
+ MaxResults?: number;
133
+
134
+ NextToken?: string;
135
+
136
+ ScanDirection?: ScanDirection | string;
137
+
138
+ SortOrder?: SortKey | string;
139
+
140
+ StartPosition?: StartPosition;
141
+
142
+ ConnectionToken: string | undefined;
143
+ }
144
+ export declare enum ArtifactStatus {
145
+ APPROVED = "APPROVED",
146
+ IN_PROGRESS = "IN_PROGRESS",
147
+ REJECTED = "REJECTED",
148
+ }
149
+
150
+ export interface AttachmentItem {
151
+ ContentType?: string;
152
+
153
+ AttachmentId?: string;
154
+
155
+ AttachmentName?: string;
156
+
157
+ Status?: ArtifactStatus | string;
158
+ }
159
+ export declare enum ParticipantRole {
160
+ AGENT = "AGENT",
161
+ CUSTOMER = "CUSTOMER",
162
+ SYSTEM = "SYSTEM",
163
+ }
164
+ export declare enum ChatItemType {
165
+ ATTACHMENT = "ATTACHMENT",
166
+ CHAT_ENDED = "CHAT_ENDED",
167
+ CONNECTION_ACK = "CONNECTION_ACK",
168
+ EVENT = "EVENT",
169
+ MESSAGE = "MESSAGE",
170
+ PARTICIPANT_JOINED = "PARTICIPANT_JOINED",
171
+ PARTICIPANT_LEFT = "PARTICIPANT_LEFT",
172
+ TRANSFER_FAILED = "TRANSFER_FAILED",
173
+ TRANSFER_SUCCEEDED = "TRANSFER_SUCCEEDED",
174
+ TYPING = "TYPING",
175
+ }
176
+
177
+ export interface Item {
178
+ AbsoluteTime?: string;
179
+
180
+ Content?: string;
181
+
182
+ ContentType?: string;
183
+
184
+ Id?: string;
185
+
186
+ Type?: ChatItemType | string;
187
+
188
+ ParticipantId?: string;
189
+
190
+ DisplayName?: string;
191
+
192
+ ParticipantRole?: ParticipantRole | string;
193
+
194
+ Attachments?: AttachmentItem[];
195
+ }
196
+ export interface GetTranscriptResponse {
197
+ InitialContactId?: string;
198
+
199
+ Transcript?: Item[];
200
+
201
+ NextToken?: string;
202
+ }
203
+ export interface SendEventRequest {
204
+ ContentType: string | undefined;
205
+
206
+ Content?: string;
207
+
208
+ ClientToken?: string;
209
+
210
+ ConnectionToken: string | undefined;
211
+ }
212
+ export interface SendEventResponse {
213
+ Id?: string;
214
+
215
+ AbsoluteTime?: string;
216
+ }
217
+ export interface SendMessageRequest {
218
+ ContentType: string | undefined;
219
+
220
+ Content: string | undefined;
221
+
222
+ ClientToken?: string;
223
+
224
+ ConnectionToken: string | undefined;
225
+ }
226
+ export interface SendMessageResponse {
227
+ Id?: string;
228
+
229
+ AbsoluteTime?: string;
230
+ }
231
+ export interface StartAttachmentUploadRequest {
232
+ ContentType: string | undefined;
233
+
234
+ AttachmentSizeInBytes: number | undefined;
235
+
236
+ AttachmentName: string | undefined;
237
+
238
+ ClientToken?: string;
239
+
240
+ ConnectionToken: string | undefined;
241
+ }
242
+
243
+ export interface UploadMetadata {
244
+ Url?: string;
245
+
246
+ UrlExpiry?: string;
247
+
248
+ HeadersToInclude?: Record<string, string>;
249
+ }
250
+ export interface StartAttachmentUploadResponse {
251
+ AttachmentId?: string;
252
+
253
+ UploadMetadata?: UploadMetadata;
254
+ }
255
+
256
+ export declare const CompleteAttachmentUploadRequestFilterSensitiveLog: (
257
+ obj: CompleteAttachmentUploadRequest
258
+ ) => any;
259
+
260
+ export declare const CompleteAttachmentUploadResponseFilterSensitiveLog: (
261
+ obj: CompleteAttachmentUploadResponse
262
+ ) => any;
263
+
264
+ export declare const CreateParticipantConnectionRequestFilterSensitiveLog: (
265
+ obj: CreateParticipantConnectionRequest
266
+ ) => any;
267
+
268
+ export declare const ConnectionCredentialsFilterSensitiveLog: (
269
+ obj: ConnectionCredentials
270
+ ) => any;
271
+
272
+ export declare const WebsocketFilterSensitiveLog: (obj: Websocket) => any;
273
+
274
+ export declare const CreateParticipantConnectionResponseFilterSensitiveLog: (
275
+ obj: CreateParticipantConnectionResponse
276
+ ) => any;
277
+
278
+ export declare const DisconnectParticipantRequestFilterSensitiveLog: (
279
+ obj: DisconnectParticipantRequest
280
+ ) => any;
281
+
282
+ export declare const DisconnectParticipantResponseFilterSensitiveLog: (
283
+ obj: DisconnectParticipantResponse
284
+ ) => any;
285
+
286
+ export declare const GetAttachmentRequestFilterSensitiveLog: (
287
+ obj: GetAttachmentRequest
288
+ ) => any;
289
+
290
+ export declare const GetAttachmentResponseFilterSensitiveLog: (
291
+ obj: GetAttachmentResponse
292
+ ) => any;
293
+
294
+ export declare const StartPositionFilterSensitiveLog: (
295
+ obj: StartPosition
296
+ ) => any;
297
+
298
+ export declare const GetTranscriptRequestFilterSensitiveLog: (
299
+ obj: GetTranscriptRequest
300
+ ) => any;
301
+
302
+ export declare const AttachmentItemFilterSensitiveLog: (
303
+ obj: AttachmentItem
304
+ ) => any;
305
+
306
+ export declare const ItemFilterSensitiveLog: (obj: Item) => any;
307
+
308
+ export declare const GetTranscriptResponseFilterSensitiveLog: (
309
+ obj: GetTranscriptResponse
310
+ ) => any;
311
+
312
+ export declare const SendEventRequestFilterSensitiveLog: (
313
+ obj: SendEventRequest
314
+ ) => any;
315
+
316
+ export declare const SendEventResponseFilterSensitiveLog: (
317
+ obj: SendEventResponse
318
+ ) => any;
319
+
320
+ export declare const SendMessageRequestFilterSensitiveLog: (
321
+ obj: SendMessageRequest
322
+ ) => any;
323
+
324
+ export declare const SendMessageResponseFilterSensitiveLog: (
325
+ obj: SendMessageResponse
326
+ ) => any;
327
+
328
+ export declare const StartAttachmentUploadRequestFilterSensitiveLog: (
329
+ obj: StartAttachmentUploadRequest
330
+ ) => any;
331
+
332
+ export declare const UploadMetadataFilterSensitiveLog: (
333
+ obj: UploadMetadata
334
+ ) => any;
335
+
336
+ export declare const StartAttachmentUploadResponseFilterSensitiveLog: (
337
+ obj: StartAttachmentUploadResponse
338
+ ) => any;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetTranscriptCommandInput, GetTranscriptCommandOutput } from "../commands/GetTranscriptCommand";
3
- import { ConnectParticipantPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetTranscript(config: ConnectParticipantPaginationConfiguration, input: GetTranscriptCommandInput, ...additionalArguments: any): Paginator<GetTranscriptCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetTranscriptCommandInput,
4
+ GetTranscriptCommandOutput,
5
+ } from "../commands/GetTranscriptCommand";
6
+ import { ConnectParticipantPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetTranscript(
8
+ config: ConnectParticipantPaginationConfiguration,
9
+ input: GetTranscriptCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetTranscriptCommandOutput>;