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