@aws-sdk/client-support 3.50.0 → 3.53.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 (44) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/SupportServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +120 -1
  5. package/dist-cjs/protocols/Aws_json1_1.js +138 -371
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/SupportServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +110 -1
  9. package/dist-es/protocols/Aws_json1_1.js +280 -410
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/SupportServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +47 -51
  13. package/dist-types/ts3.4/Support.d.ts +75 -0
  14. package/dist-types/ts3.4/SupportClient.d.ts +87 -0
  15. package/dist-types/ts3.4/commands/AddAttachmentsToSetCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/AddCommunicationToCaseCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DescribeAttachmentCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DescribeCasesCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeCommunicationsCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeSeverityLevelsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorChecksCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/RefreshTrustedAdvisorCheckCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ResolveCaseCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  31. package/dist-types/ts3.4/index.d.ts +6 -0
  32. package/dist-types/ts3.4/models/SupportServiceException.d.ts +6 -0
  33. package/dist-types/ts3.4/models/index.d.ts +1 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +601 -0
  35. package/dist-types/ts3.4/pagination/DescribeCasesPaginator.d.ts +4 -0
  36. package/dist-types/ts3.4/pagination/DescribeCommunicationsPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  38. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  39. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +44 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  44. package/package.json +33 -33
@@ -0,0 +1,14 @@
1
+ export * from "./AddAttachmentsToSetCommand";
2
+ export * from "./AddCommunicationToCaseCommand";
3
+ export * from "./CreateCaseCommand";
4
+ export * from "./DescribeAttachmentCommand";
5
+ export * from "./DescribeCasesCommand";
6
+ export * from "./DescribeCommunicationsCommand";
7
+ export * from "./DescribeServicesCommand";
8
+ export * from "./DescribeSeverityLevelsCommand";
9
+ export * from "./DescribeTrustedAdvisorCheckRefreshStatusesCommand";
10
+ export * from "./DescribeTrustedAdvisorCheckResultCommand";
11
+ export * from "./DescribeTrustedAdvisorCheckSummariesCommand";
12
+ export * from "./DescribeTrustedAdvisorChecksCommand";
13
+ export * from "./RefreshTrustedAdvisorCheckCommand";
14
+ export * from "./ResolveCaseCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./Support";
2
+ export * from "./SupportClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { SupportServiceException } from "./models/SupportServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class SupportServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,601 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SupportServiceException as __BaseException } from "./SupportServiceException";
3
+
4
+ export interface Attachment {
5
+
6
+ fileName?: string;
7
+
8
+ data?: Uint8Array;
9
+ }
10
+ export declare namespace Attachment {
11
+
12
+ const filterSensitiveLog: (obj: Attachment) => any;
13
+ }
14
+ export interface AddAttachmentsToSetRequest {
15
+
16
+ attachmentSetId?: string;
17
+
18
+ attachments: Attachment[] | undefined;
19
+ }
20
+ export declare namespace AddAttachmentsToSetRequest {
21
+
22
+ const filterSensitiveLog: (obj: AddAttachmentsToSetRequest) => any;
23
+ }
24
+
25
+ export interface AddAttachmentsToSetResponse {
26
+
27
+ attachmentSetId?: string;
28
+
29
+ expiryTime?: string;
30
+ }
31
+ export declare namespace AddAttachmentsToSetResponse {
32
+
33
+ const filterSensitiveLog: (obj: AddAttachmentsToSetResponse) => any;
34
+ }
35
+
36
+ export declare class AttachmentLimitExceeded extends __BaseException {
37
+ readonly name: "AttachmentLimitExceeded";
38
+ readonly $fault: "client";
39
+
40
+ constructor(opts: __ExceptionOptionType<AttachmentLimitExceeded, __BaseException>);
41
+ }
42
+
43
+ export declare class AttachmentSetExpired extends __BaseException {
44
+ readonly name: "AttachmentSetExpired";
45
+ readonly $fault: "client";
46
+
47
+ constructor(opts: __ExceptionOptionType<AttachmentSetExpired, __BaseException>);
48
+ }
49
+
50
+ export declare class AttachmentSetIdNotFound extends __BaseException {
51
+ readonly name: "AttachmentSetIdNotFound";
52
+ readonly $fault: "client";
53
+
54
+ constructor(opts: __ExceptionOptionType<AttachmentSetIdNotFound, __BaseException>);
55
+ }
56
+
57
+ export declare class AttachmentSetSizeLimitExceeded extends __BaseException {
58
+ readonly name: "AttachmentSetSizeLimitExceeded";
59
+ readonly $fault: "client";
60
+
61
+ constructor(opts: __ExceptionOptionType<AttachmentSetSizeLimitExceeded, __BaseException>);
62
+ }
63
+
64
+ export declare class InternalServerError extends __BaseException {
65
+ readonly name: "InternalServerError";
66
+ readonly $fault: "server";
67
+
68
+ constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
69
+ }
70
+ export interface AddCommunicationToCaseRequest {
71
+
72
+ caseId?: string;
73
+
74
+ communicationBody: string | undefined;
75
+
76
+ ccEmailAddresses?: string[];
77
+
78
+ attachmentSetId?: string;
79
+ }
80
+ export declare namespace AddCommunicationToCaseRequest {
81
+
82
+ const filterSensitiveLog: (obj: AddCommunicationToCaseRequest) => any;
83
+ }
84
+
85
+ export interface AddCommunicationToCaseResponse {
86
+
87
+ result?: boolean;
88
+ }
89
+ export declare namespace AddCommunicationToCaseResponse {
90
+
91
+ const filterSensitiveLog: (obj: AddCommunicationToCaseResponse) => any;
92
+ }
93
+
94
+ export declare class CaseIdNotFound extends __BaseException {
95
+ readonly name: "CaseIdNotFound";
96
+ readonly $fault: "client";
97
+
98
+ constructor(opts: __ExceptionOptionType<CaseIdNotFound, __BaseException>);
99
+ }
100
+
101
+ export interface AttachmentDetails {
102
+
103
+ attachmentId?: string;
104
+
105
+ fileName?: string;
106
+ }
107
+ export declare namespace AttachmentDetails {
108
+
109
+ const filterSensitiveLog: (obj: AttachmentDetails) => any;
110
+ }
111
+
112
+ export declare class AttachmentIdNotFound extends __BaseException {
113
+ readonly name: "AttachmentIdNotFound";
114
+ readonly $fault: "client";
115
+
116
+ constructor(opts: __ExceptionOptionType<AttachmentIdNotFound, __BaseException>);
117
+ }
118
+
119
+ export declare class CaseCreationLimitExceeded extends __BaseException {
120
+ readonly name: "CaseCreationLimitExceeded";
121
+ readonly $fault: "client";
122
+
123
+ constructor(opts: __ExceptionOptionType<CaseCreationLimitExceeded, __BaseException>);
124
+ }
125
+ export interface CreateCaseRequest {
126
+
127
+ subject: string | undefined;
128
+
129
+ serviceCode?: string;
130
+
131
+ severityCode?: string;
132
+
133
+ categoryCode?: string;
134
+
135
+ communicationBody: string | undefined;
136
+
137
+ ccEmailAddresses?: string[];
138
+
139
+ language?: string;
140
+
141
+ issueType?: string;
142
+
143
+ attachmentSetId?: string;
144
+ }
145
+ export declare namespace CreateCaseRequest {
146
+
147
+ const filterSensitiveLog: (obj: CreateCaseRequest) => any;
148
+ }
149
+
150
+ export interface CreateCaseResponse {
151
+
152
+ caseId?: string;
153
+ }
154
+ export declare namespace CreateCaseResponse {
155
+
156
+ const filterSensitiveLog: (obj: CreateCaseResponse) => any;
157
+ }
158
+
159
+ export declare class DescribeAttachmentLimitExceeded extends __BaseException {
160
+ readonly name: "DescribeAttachmentLimitExceeded";
161
+ readonly $fault: "client";
162
+
163
+ constructor(opts: __ExceptionOptionType<DescribeAttachmentLimitExceeded, __BaseException>);
164
+ }
165
+ export interface DescribeAttachmentRequest {
166
+
167
+ attachmentId: string | undefined;
168
+ }
169
+ export declare namespace DescribeAttachmentRequest {
170
+
171
+ const filterSensitiveLog: (obj: DescribeAttachmentRequest) => any;
172
+ }
173
+
174
+ export interface DescribeAttachmentResponse {
175
+
176
+ attachment?: Attachment;
177
+ }
178
+ export declare namespace DescribeAttachmentResponse {
179
+
180
+ const filterSensitiveLog: (obj: DescribeAttachmentResponse) => any;
181
+ }
182
+ export interface DescribeCasesRequest {
183
+
184
+ caseIdList?: string[];
185
+
186
+ displayId?: string;
187
+
188
+ afterTime?: string;
189
+
190
+ beforeTime?: string;
191
+
192
+ includeResolvedCases?: boolean;
193
+
194
+ nextToken?: string;
195
+
196
+ maxResults?: number;
197
+
198
+ language?: string;
199
+
200
+ includeCommunications?: boolean;
201
+ }
202
+ export declare namespace DescribeCasesRequest {
203
+
204
+ const filterSensitiveLog: (obj: DescribeCasesRequest) => any;
205
+ }
206
+
207
+ export interface Communication {
208
+
209
+ caseId?: string;
210
+
211
+ body?: string;
212
+
213
+ submittedBy?: string;
214
+
215
+ timeCreated?: string;
216
+
217
+ attachmentSet?: AttachmentDetails[];
218
+ }
219
+ export declare namespace Communication {
220
+
221
+ const filterSensitiveLog: (obj: Communication) => any;
222
+ }
223
+
224
+ export interface RecentCaseCommunications {
225
+
226
+ communications?: Communication[];
227
+
228
+ nextToken?: string;
229
+ }
230
+ export declare namespace RecentCaseCommunications {
231
+
232
+ const filterSensitiveLog: (obj: RecentCaseCommunications) => any;
233
+ }
234
+
235
+ export interface CaseDetails {
236
+
237
+ caseId?: string;
238
+
239
+ displayId?: string;
240
+
241
+ subject?: string;
242
+
243
+ status?: string;
244
+
245
+ serviceCode?: string;
246
+
247
+ categoryCode?: string;
248
+
249
+ severityCode?: string;
250
+
251
+ submittedBy?: string;
252
+
253
+ timeCreated?: string;
254
+
255
+ recentCommunications?: RecentCaseCommunications;
256
+
257
+ ccEmailAddresses?: string[];
258
+
259
+ language?: string;
260
+ }
261
+ export declare namespace CaseDetails {
262
+
263
+ const filterSensitiveLog: (obj: CaseDetails) => any;
264
+ }
265
+
266
+ export interface DescribeCasesResponse {
267
+
268
+ cases?: CaseDetails[];
269
+
270
+ nextToken?: string;
271
+ }
272
+ export declare namespace DescribeCasesResponse {
273
+
274
+ const filterSensitiveLog: (obj: DescribeCasesResponse) => any;
275
+ }
276
+ export interface DescribeCommunicationsRequest {
277
+
278
+ caseId: string | undefined;
279
+
280
+ beforeTime?: string;
281
+
282
+ afterTime?: string;
283
+
284
+ nextToken?: string;
285
+
286
+ maxResults?: number;
287
+ }
288
+ export declare namespace DescribeCommunicationsRequest {
289
+
290
+ const filterSensitiveLog: (obj: DescribeCommunicationsRequest) => any;
291
+ }
292
+
293
+ export interface DescribeCommunicationsResponse {
294
+
295
+ communications?: Communication[];
296
+
297
+ nextToken?: string;
298
+ }
299
+ export declare namespace DescribeCommunicationsResponse {
300
+
301
+ const filterSensitiveLog: (obj: DescribeCommunicationsResponse) => any;
302
+ }
303
+ export interface DescribeServicesRequest {
304
+
305
+ serviceCodeList?: string[];
306
+
307
+ language?: string;
308
+ }
309
+ export declare namespace DescribeServicesRequest {
310
+
311
+ const filterSensitiveLog: (obj: DescribeServicesRequest) => any;
312
+ }
313
+
314
+ export interface Category {
315
+
316
+ code?: string;
317
+
318
+ name?: string;
319
+ }
320
+ export declare namespace Category {
321
+
322
+ const filterSensitiveLog: (obj: Category) => any;
323
+ }
324
+
325
+ export interface Service {
326
+
327
+ code?: string;
328
+
329
+ name?: string;
330
+
331
+ categories?: Category[];
332
+ }
333
+ export declare namespace Service {
334
+
335
+ const filterSensitiveLog: (obj: Service) => any;
336
+ }
337
+
338
+ export interface DescribeServicesResponse {
339
+
340
+ services?: Service[];
341
+ }
342
+ export declare namespace DescribeServicesResponse {
343
+
344
+ const filterSensitiveLog: (obj: DescribeServicesResponse) => any;
345
+ }
346
+ export interface DescribeSeverityLevelsRequest {
347
+
348
+ language?: string;
349
+ }
350
+ export declare namespace DescribeSeverityLevelsRequest {
351
+
352
+ const filterSensitiveLog: (obj: DescribeSeverityLevelsRequest) => any;
353
+ }
354
+
355
+ export interface SeverityLevel {
356
+
357
+ code?: string;
358
+
359
+ name?: string;
360
+ }
361
+ export declare namespace SeverityLevel {
362
+
363
+ const filterSensitiveLog: (obj: SeverityLevel) => any;
364
+ }
365
+
366
+ export interface DescribeSeverityLevelsResponse {
367
+
368
+ severityLevels?: SeverityLevel[];
369
+ }
370
+ export declare namespace DescribeSeverityLevelsResponse {
371
+
372
+ const filterSensitiveLog: (obj: DescribeSeverityLevelsResponse) => any;
373
+ }
374
+ export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
375
+
376
+ checkIds: string[] | undefined;
377
+ }
378
+ export declare namespace DescribeTrustedAdvisorCheckRefreshStatusesRequest {
379
+
380
+ const filterSensitiveLog: (obj: DescribeTrustedAdvisorCheckRefreshStatusesRequest) => any;
381
+ }
382
+
383
+ export interface TrustedAdvisorCheckRefreshStatus {
384
+
385
+ checkId: string | undefined;
386
+
387
+ status: string | undefined;
388
+
389
+ millisUntilNextRefreshable: number | undefined;
390
+ }
391
+ export declare namespace TrustedAdvisorCheckRefreshStatus {
392
+
393
+ const filterSensitiveLog: (obj: TrustedAdvisorCheckRefreshStatus) => any;
394
+ }
395
+
396
+ export interface DescribeTrustedAdvisorCheckRefreshStatusesResponse {
397
+
398
+ statuses: TrustedAdvisorCheckRefreshStatus[] | undefined;
399
+ }
400
+ export declare namespace DescribeTrustedAdvisorCheckRefreshStatusesResponse {
401
+
402
+ const filterSensitiveLog: (obj: DescribeTrustedAdvisorCheckRefreshStatusesResponse) => any;
403
+ }
404
+
405
+ export interface DescribeTrustedAdvisorCheckResultRequest {
406
+
407
+ checkId: string | undefined;
408
+
409
+ language?: string;
410
+ }
411
+ export declare namespace DescribeTrustedAdvisorCheckResultRequest {
412
+
413
+ const filterSensitiveLog: (obj: DescribeTrustedAdvisorCheckResultRequest) => any;
414
+ }
415
+
416
+ export interface TrustedAdvisorCostOptimizingSummary {
417
+
418
+ estimatedMonthlySavings: number | undefined;
419
+
420
+ estimatedPercentMonthlySavings: number | undefined;
421
+ }
422
+ export declare namespace TrustedAdvisorCostOptimizingSummary {
423
+
424
+ const filterSensitiveLog: (obj: TrustedAdvisorCostOptimizingSummary) => any;
425
+ }
426
+
427
+ export interface TrustedAdvisorCategorySpecificSummary {
428
+
429
+ costOptimizing?: TrustedAdvisorCostOptimizingSummary;
430
+ }
431
+ export declare namespace TrustedAdvisorCategorySpecificSummary {
432
+
433
+ const filterSensitiveLog: (obj: TrustedAdvisorCategorySpecificSummary) => any;
434
+ }
435
+
436
+ export interface TrustedAdvisorResourceDetail {
437
+
438
+ status: string | undefined;
439
+
440
+ region?: string;
441
+
442
+ resourceId: string | undefined;
443
+
444
+ isSuppressed?: boolean;
445
+
446
+ metadata: string[] | undefined;
447
+ }
448
+ export declare namespace TrustedAdvisorResourceDetail {
449
+
450
+ const filterSensitiveLog: (obj: TrustedAdvisorResourceDetail) => any;
451
+ }
452
+
453
+ export interface TrustedAdvisorResourcesSummary {
454
+
455
+ resourcesProcessed: number | undefined;
456
+
457
+ resourcesFlagged: number | undefined;
458
+
459
+ resourcesIgnored: number | undefined;
460
+
461
+ resourcesSuppressed: number | undefined;
462
+ }
463
+ export declare namespace TrustedAdvisorResourcesSummary {
464
+
465
+ const filterSensitiveLog: (obj: TrustedAdvisorResourcesSummary) => any;
466
+ }
467
+
468
+ export interface TrustedAdvisorCheckResult {
469
+
470
+ checkId: string | undefined;
471
+
472
+ timestamp: string | undefined;
473
+
474
+ status: string | undefined;
475
+
476
+ resourcesSummary: TrustedAdvisorResourcesSummary | undefined;
477
+
478
+ categorySpecificSummary: TrustedAdvisorCategorySpecificSummary | undefined;
479
+
480
+ flaggedResources: TrustedAdvisorResourceDetail[] | undefined;
481
+ }
482
+ export declare namespace TrustedAdvisorCheckResult {
483
+
484
+ const filterSensitiveLog: (obj: TrustedAdvisorCheckResult) => any;
485
+ }
486
+
487
+ export interface DescribeTrustedAdvisorCheckResultResponse {
488
+
489
+ result?: TrustedAdvisorCheckResult;
490
+ }
491
+ export declare namespace DescribeTrustedAdvisorCheckResultResponse {
492
+
493
+ const filterSensitiveLog: (obj: DescribeTrustedAdvisorCheckResultResponse) => any;
494
+ }
495
+ export interface DescribeTrustedAdvisorChecksRequest {
496
+
497
+ language: string | undefined;
498
+ }
499
+ export declare namespace DescribeTrustedAdvisorChecksRequest {
500
+
501
+ const filterSensitiveLog: (obj: DescribeTrustedAdvisorChecksRequest) => any;
502
+ }
503
+
504
+ export interface TrustedAdvisorCheckDescription {
505
+
506
+ id: string | undefined;
507
+
508
+ name: string | undefined;
509
+
510
+ description: string | undefined;
511
+
512
+ category: string | undefined;
513
+
514
+ metadata: string[] | undefined;
515
+ }
516
+ export declare namespace TrustedAdvisorCheckDescription {
517
+
518
+ const filterSensitiveLog: (obj: TrustedAdvisorCheckDescription) => any;
519
+ }
520
+
521
+ export interface DescribeTrustedAdvisorChecksResponse {
522
+
523
+ checks: TrustedAdvisorCheckDescription[] | undefined;
524
+ }
525
+ export declare namespace DescribeTrustedAdvisorChecksResponse {
526
+
527
+ const filterSensitiveLog: (obj: DescribeTrustedAdvisorChecksResponse) => any;
528
+ }
529
+ export interface DescribeTrustedAdvisorCheckSummariesRequest {
530
+
531
+ checkIds: string[] | undefined;
532
+ }
533
+ export declare namespace DescribeTrustedAdvisorCheckSummariesRequest {
534
+
535
+ const filterSensitiveLog: (obj: DescribeTrustedAdvisorCheckSummariesRequest) => any;
536
+ }
537
+
538
+ export interface TrustedAdvisorCheckSummary {
539
+
540
+ checkId: string | undefined;
541
+
542
+ timestamp: string | undefined;
543
+
544
+ status: string | undefined;
545
+
546
+ hasFlaggedResources?: boolean;
547
+
548
+ resourcesSummary: TrustedAdvisorResourcesSummary | undefined;
549
+
550
+ categorySpecificSummary: TrustedAdvisorCategorySpecificSummary | undefined;
551
+ }
552
+ export declare namespace TrustedAdvisorCheckSummary {
553
+
554
+ const filterSensitiveLog: (obj: TrustedAdvisorCheckSummary) => any;
555
+ }
556
+
557
+ export interface DescribeTrustedAdvisorCheckSummariesResponse {
558
+
559
+ summaries: TrustedAdvisorCheckSummary[] | undefined;
560
+ }
561
+ export declare namespace DescribeTrustedAdvisorCheckSummariesResponse {
562
+
563
+ const filterSensitiveLog: (obj: DescribeTrustedAdvisorCheckSummariesResponse) => any;
564
+ }
565
+
566
+ export interface RefreshTrustedAdvisorCheckRequest {
567
+
568
+ checkId: string | undefined;
569
+ }
570
+ export declare namespace RefreshTrustedAdvisorCheckRequest {
571
+
572
+ const filterSensitiveLog: (obj: RefreshTrustedAdvisorCheckRequest) => any;
573
+ }
574
+
575
+ export interface RefreshTrustedAdvisorCheckResponse {
576
+
577
+ status: TrustedAdvisorCheckRefreshStatus | undefined;
578
+ }
579
+ export declare namespace RefreshTrustedAdvisorCheckResponse {
580
+
581
+ const filterSensitiveLog: (obj: RefreshTrustedAdvisorCheckResponse) => any;
582
+ }
583
+ export interface ResolveCaseRequest {
584
+
585
+ caseId?: string;
586
+ }
587
+ export declare namespace ResolveCaseRequest {
588
+
589
+ const filterSensitiveLog: (obj: ResolveCaseRequest) => any;
590
+ }
591
+
592
+ export interface ResolveCaseResponse {
593
+
594
+ initialCaseStatus?: string;
595
+
596
+ finalCaseStatus?: string;
597
+ }
598
+ export declare namespace ResolveCaseResponse {
599
+
600
+ const filterSensitiveLog: (obj: ResolveCaseResponse) => any;
601
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeCasesCommandInput, DescribeCasesCommandOutput } from "../commands/DescribeCasesCommand";
3
+ import { SupportPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeCases(config: SupportPaginationConfiguration, input: DescribeCasesCommandInput, ...additionalArguments: any): Paginator<DescribeCasesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput } from "../commands/DescribeCommunicationsCommand";
3
+ import { SupportPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeCommunications(config: SupportPaginationConfiguration, input: DescribeCommunicationsCommandInput, ...additionalArguments: any): Paginator<DescribeCommunicationsCommandOutput>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Support } from "../Support";
3
+ import { SupportClient } from "../SupportClient";
4
+ export interface SupportPaginationConfiguration extends PaginationConfiguration {
5
+ client: Support | SupportClient;
6
+ }
@@ -0,0 +1,3 @@
1
+ export * from "./DescribeCasesPaginator";
2
+ export * from "./DescribeCommunicationsPaginator";
3
+ export * from "./Interfaces";