@aws-sdk/client-support 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/Support.d.ts +260 -75
  3. package/dist-types/ts3.4/SupportClient.d.ts +188 -87
  4. package/dist-types/ts3.4/commands/AddAttachmentsToSetCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/AddCommunicationToCaseCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DescribeAttachmentCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DescribeCasesCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeCommunicationsCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeSeverityLevelsCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DescribeTrustedAdvisorChecksCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/RefreshTrustedAdvisorCheckCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ResolveCaseCommand.d.ts +32 -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 +7 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +398 -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 +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  33. package/package.json +34 -34
@@ -1,513 +1,398 @@
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
+ export interface Attachment {
4
+ fileName?: string;
5
+ data?: Uint8Array;
6
+ }
7
+ export interface AddAttachmentsToSetRequest {
8
+ attachmentSetId?: string;
9
+ attachments: Attachment[] | undefined;
10
+ }
11
+ export interface AddAttachmentsToSetResponse {
12
+ attachmentSetId?: string;
13
+ expiryTime?: string;
14
+ }
15
+ export declare class AttachmentLimitExceeded extends __BaseException {
16
+ readonly name: "AttachmentLimitExceeded";
17
+ readonly $fault: "client";
18
+ constructor(
19
+ opts: __ExceptionOptionType<AttachmentLimitExceeded, __BaseException>
20
+ );
21
+ }
22
+ export declare class AttachmentSetExpired extends __BaseException {
23
+ readonly name: "AttachmentSetExpired";
24
+ readonly $fault: "client";
25
+ constructor(
26
+ opts: __ExceptionOptionType<AttachmentSetExpired, __BaseException>
27
+ );
28
+ }
29
+ export declare class AttachmentSetIdNotFound extends __BaseException {
30
+ readonly name: "AttachmentSetIdNotFound";
31
+ readonly $fault: "client";
32
+ constructor(
33
+ opts: __ExceptionOptionType<AttachmentSetIdNotFound, __BaseException>
34
+ );
35
+ }
36
+ export declare class AttachmentSetSizeLimitExceeded extends __BaseException {
37
+ readonly name: "AttachmentSetSizeLimitExceeded";
38
+ readonly $fault: "client";
39
+ constructor(
40
+ opts: __ExceptionOptionType<AttachmentSetSizeLimitExceeded, __BaseException>
41
+ );
42
+ }
43
+ export declare class InternalServerError extends __BaseException {
44
+ readonly name: "InternalServerError";
45
+ readonly $fault: "server";
46
+ constructor(
47
+ opts: __ExceptionOptionType<InternalServerError, __BaseException>
48
+ );
49
+ }
50
+ export interface AddCommunicationToCaseRequest {
51
+ caseId?: string;
52
+ communicationBody: string | undefined;
53
+ ccEmailAddresses?: string[];
54
+ attachmentSetId?: string;
55
+ }
56
+ export interface AddCommunicationToCaseResponse {
57
+ result?: boolean;
58
+ }
59
+ export declare class CaseIdNotFound extends __BaseException {
60
+ readonly name: "CaseIdNotFound";
61
+ readonly $fault: "client";
62
+ constructor(opts: __ExceptionOptionType<CaseIdNotFound, __BaseException>);
63
+ }
64
+ export interface AttachmentDetails {
65
+ attachmentId?: string;
66
+ fileName?: string;
67
+ }
68
+ export declare class AttachmentIdNotFound extends __BaseException {
69
+ readonly name: "AttachmentIdNotFound";
70
+ readonly $fault: "client";
71
+ constructor(
72
+ opts: __ExceptionOptionType<AttachmentIdNotFound, __BaseException>
73
+ );
74
+ }
75
+ export declare class CaseCreationLimitExceeded extends __BaseException {
76
+ readonly name: "CaseCreationLimitExceeded";
77
+ readonly $fault: "client";
78
+ constructor(
79
+ opts: __ExceptionOptionType<CaseCreationLimitExceeded, __BaseException>
80
+ );
81
+ }
82
+ export interface CreateCaseRequest {
83
+ subject: string | undefined;
84
+ serviceCode?: string;
85
+ severityCode?: string;
86
+ categoryCode?: string;
87
+ communicationBody: string | undefined;
88
+ ccEmailAddresses?: string[];
89
+ language?: string;
90
+ issueType?: string;
91
+ attachmentSetId?: string;
92
+ }
93
+ export interface CreateCaseResponse {
94
+ caseId?: string;
95
+ }
96
+ export declare class DescribeAttachmentLimitExceeded extends __BaseException {
97
+ readonly name: "DescribeAttachmentLimitExceeded";
98
+ readonly $fault: "client";
99
+ constructor(
100
+ opts: __ExceptionOptionType<
101
+ DescribeAttachmentLimitExceeded,
102
+ __BaseException
103
+ >
104
+ );
105
+ }
106
+ export interface DescribeAttachmentRequest {
107
+ attachmentId: string | undefined;
108
+ }
109
+ export interface DescribeAttachmentResponse {
110
+ attachment?: Attachment;
111
+ }
112
+ export interface DescribeCasesRequest {
113
+ caseIdList?: string[];
114
+ displayId?: string;
115
+ afterTime?: string;
116
+ beforeTime?: string;
117
+ includeResolvedCases?: boolean;
118
+ nextToken?: string;
119
+ maxResults?: number;
120
+ language?: string;
121
+ includeCommunications?: boolean;
122
+ }
123
+ export interface Communication {
124
+ caseId?: string;
125
+ body?: string;
126
+ submittedBy?: string;
127
+ timeCreated?: string;
128
+ attachmentSet?: AttachmentDetails[];
129
+ }
130
+ export interface RecentCaseCommunications {
131
+ communications?: Communication[];
132
+ nextToken?: string;
133
+ }
134
+ export interface CaseDetails {
135
+ caseId?: string;
136
+ displayId?: string;
137
+ subject?: string;
138
+ status?: string;
139
+ serviceCode?: string;
140
+ categoryCode?: string;
141
+ severityCode?: string;
142
+ submittedBy?: string;
143
+ timeCreated?: string;
144
+ recentCommunications?: RecentCaseCommunications;
145
+ ccEmailAddresses?: string[];
146
+ language?: string;
147
+ }
148
+ export interface DescribeCasesResponse {
149
+ cases?: CaseDetails[];
150
+ nextToken?: string;
151
+ }
152
+ export interface DescribeCommunicationsRequest {
153
+ caseId: string | undefined;
154
+ beforeTime?: string;
155
+ afterTime?: string;
156
+ nextToken?: string;
157
+ maxResults?: number;
158
+ }
159
+ export interface DescribeCommunicationsResponse {
160
+ communications?: Communication[];
161
+ nextToken?: string;
162
+ }
163
+ export interface DescribeServicesRequest {
164
+ serviceCodeList?: string[];
165
+ language?: string;
166
+ }
167
+ export interface Category {
168
+ code?: string;
169
+ name?: string;
170
+ }
171
+ export interface Service {
172
+ code?: string;
173
+ name?: string;
174
+ categories?: Category[];
175
+ }
176
+ export interface DescribeServicesResponse {
177
+ services?: Service[];
178
+ }
179
+ export interface DescribeSeverityLevelsRequest {
180
+ language?: string;
181
+ }
182
+ export interface SeverityLevel {
183
+ code?: string;
184
+ name?: string;
185
+ }
186
+ export interface DescribeSeverityLevelsResponse {
187
+ severityLevels?: SeverityLevel[];
188
+ }
189
+ export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
190
+ checkIds: string[] | undefined;
191
+ }
192
+ export interface TrustedAdvisorCheckRefreshStatus {
193
+ checkId: string | undefined;
194
+ status: string | undefined;
195
+ millisUntilNextRefreshable: number | undefined;
196
+ }
197
+ export interface DescribeTrustedAdvisorCheckRefreshStatusesResponse {
198
+ statuses: TrustedAdvisorCheckRefreshStatus[] | undefined;
199
+ }
200
+ export interface DescribeTrustedAdvisorCheckResultRequest {
201
+ checkId: string | undefined;
202
+ language?: string;
203
+ }
204
+ export interface TrustedAdvisorCostOptimizingSummary {
205
+ estimatedMonthlySavings: number | undefined;
206
+ estimatedPercentMonthlySavings: number | undefined;
207
+ }
208
+ export interface TrustedAdvisorCategorySpecificSummary {
209
+ costOptimizing?: TrustedAdvisorCostOptimizingSummary;
210
+ }
211
+ export interface TrustedAdvisorResourceDetail {
212
+ status: string | undefined;
213
+ region?: string;
214
+ resourceId: string | undefined;
215
+ isSuppressed?: boolean;
216
+ metadata: string[] | undefined;
217
+ }
218
+ export interface TrustedAdvisorResourcesSummary {
219
+ resourcesProcessed: number | undefined;
220
+ resourcesFlagged: number | undefined;
221
+ resourcesIgnored: number | undefined;
222
+ resourcesSuppressed: number | undefined;
223
+ }
224
+ export interface TrustedAdvisorCheckResult {
225
+ checkId: string | undefined;
226
+ timestamp: string | undefined;
227
+ status: string | undefined;
228
+ resourcesSummary: TrustedAdvisorResourcesSummary | undefined;
229
+ categorySpecificSummary: TrustedAdvisorCategorySpecificSummary | undefined;
230
+ flaggedResources: TrustedAdvisorResourceDetail[] | undefined;
231
+ }
232
+ export interface DescribeTrustedAdvisorCheckResultResponse {
233
+ result?: TrustedAdvisorCheckResult;
234
+ }
235
+ export interface DescribeTrustedAdvisorChecksRequest {
236
+ language: string | undefined;
237
+ }
238
+ export interface TrustedAdvisorCheckDescription {
239
+ id: string | undefined;
240
+ name: string | undefined;
241
+ description: string | undefined;
242
+ category: string | undefined;
243
+ metadata: string[] | undefined;
244
+ }
245
+ export interface DescribeTrustedAdvisorChecksResponse {
246
+ checks: TrustedAdvisorCheckDescription[] | undefined;
247
+ }
248
+ export interface DescribeTrustedAdvisorCheckSummariesRequest {
249
+ checkIds: string[] | undefined;
250
+ }
251
+ export interface TrustedAdvisorCheckSummary {
252
+ checkId: string | undefined;
253
+ timestamp: string | undefined;
254
+ status: string | undefined;
255
+ hasFlaggedResources?: boolean;
256
+ resourcesSummary: TrustedAdvisorResourcesSummary | undefined;
257
+ categorySpecificSummary: TrustedAdvisorCategorySpecificSummary | undefined;
258
+ }
259
+ export interface DescribeTrustedAdvisorCheckSummariesResponse {
260
+ summaries: TrustedAdvisorCheckSummary[] | undefined;
261
+ }
262
+ export interface RefreshTrustedAdvisorCheckRequest {
263
+ checkId: string | undefined;
264
+ }
265
+ export interface RefreshTrustedAdvisorCheckResponse {
266
+ status: TrustedAdvisorCheckRefreshStatus | undefined;
267
+ }
268
+ export interface ResolveCaseRequest {
269
+ caseId?: string;
270
+ }
271
+ export interface ResolveCaseResponse {
272
+ initialCaseStatus?: string;
273
+ finalCaseStatus?: string;
274
+ }
275
+ export declare const AttachmentFilterSensitiveLog: (obj: Attachment) => any;
276
+ export declare const AddAttachmentsToSetRequestFilterSensitiveLog: (
277
+ obj: AddAttachmentsToSetRequest
278
+ ) => any;
279
+ export declare const AddAttachmentsToSetResponseFilterSensitiveLog: (
280
+ obj: AddAttachmentsToSetResponse
281
+ ) => any;
282
+ export declare const AddCommunicationToCaseRequestFilterSensitiveLog: (
283
+ obj: AddCommunicationToCaseRequest
284
+ ) => any;
285
+ export declare const AddCommunicationToCaseResponseFilterSensitiveLog: (
286
+ obj: AddCommunicationToCaseResponse
287
+ ) => any;
288
+ export declare const AttachmentDetailsFilterSensitiveLog: (
289
+ obj: AttachmentDetails
290
+ ) => any;
291
+ export declare const CreateCaseRequestFilterSensitiveLog: (
292
+ obj: CreateCaseRequest
293
+ ) => any;
294
+ export declare const CreateCaseResponseFilterSensitiveLog: (
295
+ obj: CreateCaseResponse
296
+ ) => any;
297
+ export declare const DescribeAttachmentRequestFilterSensitiveLog: (
298
+ obj: DescribeAttachmentRequest
299
+ ) => any;
300
+ export declare const DescribeAttachmentResponseFilterSensitiveLog: (
301
+ obj: DescribeAttachmentResponse
302
+ ) => any;
303
+ export declare const DescribeCasesRequestFilterSensitiveLog: (
304
+ obj: DescribeCasesRequest
305
+ ) => any;
306
+ export declare const CommunicationFilterSensitiveLog: (
307
+ obj: Communication
308
+ ) => any;
309
+ export declare const RecentCaseCommunicationsFilterSensitiveLog: (
310
+ obj: RecentCaseCommunications
311
+ ) => any;
312
+ export declare const CaseDetailsFilterSensitiveLog: (obj: CaseDetails) => any;
313
+ export declare const DescribeCasesResponseFilterSensitiveLog: (
314
+ obj: DescribeCasesResponse
315
+ ) => any;
316
+ export declare const DescribeCommunicationsRequestFilterSensitiveLog: (
317
+ obj: DescribeCommunicationsRequest
318
+ ) => any;
319
+ export declare const DescribeCommunicationsResponseFilterSensitiveLog: (
320
+ obj: DescribeCommunicationsResponse
321
+ ) => any;
322
+ export declare const DescribeServicesRequestFilterSensitiveLog: (
323
+ obj: DescribeServicesRequest
324
+ ) => any;
325
+ export declare const CategoryFilterSensitiveLog: (obj: Category) => any;
326
+ export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
327
+ export declare const DescribeServicesResponseFilterSensitiveLog: (
328
+ obj: DescribeServicesResponse
329
+ ) => any;
330
+ export declare const DescribeSeverityLevelsRequestFilterSensitiveLog: (
331
+ obj: DescribeSeverityLevelsRequest
332
+ ) => any;
333
+ export declare const SeverityLevelFilterSensitiveLog: (
334
+ obj: SeverityLevel
335
+ ) => any;
336
+ export declare const DescribeSeverityLevelsResponseFilterSensitiveLog: (
337
+ obj: DescribeSeverityLevelsResponse
338
+ ) => any;
339
+ export declare const DescribeTrustedAdvisorCheckRefreshStatusesRequestFilterSensitiveLog: (
340
+ obj: DescribeTrustedAdvisorCheckRefreshStatusesRequest
341
+ ) => any;
342
+ export declare const TrustedAdvisorCheckRefreshStatusFilterSensitiveLog: (
343
+ obj: TrustedAdvisorCheckRefreshStatus
344
+ ) => any;
345
+ export declare const DescribeTrustedAdvisorCheckRefreshStatusesResponseFilterSensitiveLog: (
346
+ obj: DescribeTrustedAdvisorCheckRefreshStatusesResponse
347
+ ) => any;
348
+ export declare const DescribeTrustedAdvisorCheckResultRequestFilterSensitiveLog: (
349
+ obj: DescribeTrustedAdvisorCheckResultRequest
350
+ ) => any;
351
+ export declare const TrustedAdvisorCostOptimizingSummaryFilterSensitiveLog: (
352
+ obj: TrustedAdvisorCostOptimizingSummary
353
+ ) => any;
354
+ export declare const TrustedAdvisorCategorySpecificSummaryFilterSensitiveLog: (
355
+ obj: TrustedAdvisorCategorySpecificSummary
356
+ ) => any;
357
+ export declare const TrustedAdvisorResourceDetailFilterSensitiveLog: (
358
+ obj: TrustedAdvisorResourceDetail
359
+ ) => any;
360
+ export declare const TrustedAdvisorResourcesSummaryFilterSensitiveLog: (
361
+ obj: TrustedAdvisorResourcesSummary
362
+ ) => any;
363
+ export declare const TrustedAdvisorCheckResultFilterSensitiveLog: (
364
+ obj: TrustedAdvisorCheckResult
365
+ ) => any;
366
+ export declare const DescribeTrustedAdvisorCheckResultResponseFilterSensitiveLog: (
367
+ obj: DescribeTrustedAdvisorCheckResultResponse
368
+ ) => any;
369
+ export declare const DescribeTrustedAdvisorChecksRequestFilterSensitiveLog: (
370
+ obj: DescribeTrustedAdvisorChecksRequest
371
+ ) => any;
372
+ export declare const TrustedAdvisorCheckDescriptionFilterSensitiveLog: (
373
+ obj: TrustedAdvisorCheckDescription
374
+ ) => any;
375
+ export declare const DescribeTrustedAdvisorChecksResponseFilterSensitiveLog: (
376
+ obj: DescribeTrustedAdvisorChecksResponse
377
+ ) => any;
378
+ export declare const DescribeTrustedAdvisorCheckSummariesRequestFilterSensitiveLog: (
379
+ obj: DescribeTrustedAdvisorCheckSummariesRequest
380
+ ) => any;
381
+ export declare const TrustedAdvisorCheckSummaryFilterSensitiveLog: (
382
+ obj: TrustedAdvisorCheckSummary
383
+ ) => any;
384
+ export declare const DescribeTrustedAdvisorCheckSummariesResponseFilterSensitiveLog: (
385
+ obj: DescribeTrustedAdvisorCheckSummariesResponse
386
+ ) => any;
387
+ export declare const RefreshTrustedAdvisorCheckRequestFilterSensitiveLog: (
388
+ obj: RefreshTrustedAdvisorCheckRequest
389
+ ) => any;
390
+ export declare const RefreshTrustedAdvisorCheckResponseFilterSensitiveLog: (
391
+ obj: RefreshTrustedAdvisorCheckResponse
392
+ ) => any;
393
+ export declare const ResolveCaseRequestFilterSensitiveLog: (
394
+ obj: ResolveCaseRequest
395
+ ) => any;
396
+ export declare const ResolveCaseResponseFilterSensitiveLog: (
397
+ obj: ResolveCaseResponse
398
+ ) => any;