@aws-sdk/client-support 3.235.0 → 3.238.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -45
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-types/Support.d.ts +180 -196
- package/dist-types/SupportClient.d.ts +23 -53
- package/dist-types/commands/AddAttachmentsToSetCommand.d.ts +7 -7
- package/dist-types/commands/AddCommunicationToCaseCommand.d.ts +6 -7
- package/dist-types/commands/CreateCaseCommand.d.ts +12 -12
- package/dist-types/commands/DescribeAttachmentCommand.d.ts +6 -6
- package/dist-types/commands/DescribeCasesCommand.d.ts +11 -11
- package/dist-types/commands/DescribeCommunicationsCommand.d.ts +8 -8
- package/dist-types/commands/DescribeServicesCommand.d.ts +7 -7
- package/dist-types/commands/DescribeSeverityLevelsCommand.d.ts +9 -9
- package/dist-types/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +11 -7
- package/dist-types/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +29 -26
- package/dist-types/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +11 -7
- package/dist-types/commands/DescribeTrustedAdvisorChecksCommand.d.ts +20 -18
- package/dist-types/commands/RefreshTrustedAdvisorCheckCommand.d.ts +14 -12
- package/dist-types/commands/ResolveCaseCommand.d.ts +6 -6
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +238 -152
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/package.json +5 -4
|
@@ -25,7 +25,7 @@ export interface AddAttachmentsToSetRequest {
|
|
|
25
25
|
/**
|
|
26
26
|
* <p>One or more attachments to add to the set. You can add up to three attachments per
|
|
27
27
|
* set. The size limit is 5 MB per attachment.</p>
|
|
28
|
-
*
|
|
28
|
+
* <p>In the <code>Attachment</code> object, use the <code>data</code> parameter to specify
|
|
29
29
|
* the contents of the attachment file. In the previous request syntax, the value for
|
|
30
30
|
* <code>data</code> appear as <code>blob</code>, which is represented as a
|
|
31
31
|
* base64-encoded string. The value for <code>fileName</code> is the name of the
|
|
@@ -109,10 +109,10 @@ export declare class InternalServerError extends __BaseException {
|
|
|
109
109
|
}
|
|
110
110
|
export interface AddCommunicationToCaseRequest {
|
|
111
111
|
/**
|
|
112
|
-
* <p>The support case ID requested or returned in the call. The case ID is an
|
|
113
|
-
*
|
|
112
|
+
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
113
|
+
* string formatted as shown in this example:
|
|
114
114
|
* case-<i>12345678910-2013-c4c1d2bf33c5cf47</i>
|
|
115
|
-
*
|
|
115
|
+
* </p>
|
|
116
116
|
*/
|
|
117
117
|
caseId?: string;
|
|
118
118
|
/**
|
|
@@ -126,7 +126,7 @@ export interface AddCommunicationToCaseRequest {
|
|
|
126
126
|
/**
|
|
127
127
|
* <p>The ID of a set of one or more attachments for the communication to add to the case.
|
|
128
128
|
* Create the set by calling <a>AddAttachmentsToSet</a>
|
|
129
|
-
*
|
|
129
|
+
* </p>
|
|
130
130
|
*/
|
|
131
131
|
attachmentSetId?: string;
|
|
132
132
|
}
|
|
@@ -201,12 +201,12 @@ export interface CreateCaseRequest {
|
|
|
201
201
|
* <p>A value that indicates the urgency of the case. This value determines the response
|
|
202
202
|
* time according to your service level agreement with Amazon Web Services Support. You can use the <a>DescribeSeverityLevels</a> operation to get the possible values for
|
|
203
203
|
* <code>severityCode</code>. </p>
|
|
204
|
-
*
|
|
204
|
+
* <p>For more information, see <a>SeverityLevel</a> and <a href="https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#choosing-severity">Choosing a
|
|
205
205
|
* Severity</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
|
|
206
|
-
*
|
|
206
|
+
* <note>
|
|
207
207
|
* <p>The availability of severity levels depends on the support plan for the
|
|
208
208
|
* Amazon Web Services account.</p>
|
|
209
|
-
*
|
|
209
|
+
* </note>
|
|
210
210
|
*/
|
|
211
211
|
severityCode?: string;
|
|
212
212
|
/**
|
|
@@ -221,15 +221,14 @@ export interface CreateCaseRequest {
|
|
|
221
221
|
communicationBody: string | undefined;
|
|
222
222
|
/**
|
|
223
223
|
* <p>A list of email addresses that Amazon Web Services Support copies on case correspondence. Amazon Web Services Support
|
|
224
|
-
* identifies the account that creates the case when you specify your Amazon Web Services credentials in
|
|
225
|
-
* HTTP POST method or use the <a href="http://aws.amazon.com/tools/">Amazon Web Services SDKs</a>.
|
|
224
|
+
* identifies the account that creates the case when you specify your Amazon Web Services credentials in
|
|
225
|
+
* an HTTP POST method or use the <a href="http://aws.amazon.com/tools/">Amazon Web Services SDKs</a>.
|
|
226
226
|
* </p>
|
|
227
227
|
*/
|
|
228
228
|
ccEmailAddresses?: string[];
|
|
229
229
|
/**
|
|
230
|
-
* <p>The language in which Amazon Web Services Support handles the case.
|
|
231
|
-
*
|
|
232
|
-
* Currently, English ("en") and Japanese ("ja") are supported.</p>
|
|
230
|
+
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
231
|
+
* currently supports English ("en") and Japanese ("ja"). You must specify the ISO 639-1 code for the <code>language</code> parameter if you want support in that language.</p>
|
|
233
232
|
*/
|
|
234
233
|
language?: string;
|
|
235
234
|
/**
|
|
@@ -249,10 +248,10 @@ export interface CreateCaseRequest {
|
|
|
249
248
|
*/
|
|
250
249
|
export interface CreateCaseResponse {
|
|
251
250
|
/**
|
|
252
|
-
* <p>The support case ID requested or returned in the call. The case ID is an
|
|
253
|
-
*
|
|
251
|
+
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
252
|
+
* string in the following format:
|
|
254
253
|
* case-<i>12345678910-2013-c4c1d2bf33c5cf47</i>
|
|
255
|
-
*
|
|
254
|
+
* </p>
|
|
256
255
|
*/
|
|
257
256
|
caseId?: string;
|
|
258
257
|
}
|
|
@@ -280,7 +279,7 @@ export interface DescribeAttachmentRequest {
|
|
|
280
279
|
export interface DescribeAttachmentResponse {
|
|
281
280
|
/**
|
|
282
281
|
* <p>This object includes the attachment content and file name.</p>
|
|
283
|
-
*
|
|
282
|
+
* <p>In the previous response syntax, the value for the <code>data</code> parameter appears
|
|
284
283
|
* as <code>blob</code>, which is represented as a base64-encoded string. The value for
|
|
285
284
|
* <code>fileName</code> is the name of the attachment, such as
|
|
286
285
|
* <code>troubleshoot-screenshot.png</code>.</p>
|
|
@@ -321,9 +320,8 @@ export interface DescribeCasesRequest {
|
|
|
321
320
|
*/
|
|
322
321
|
maxResults?: number;
|
|
323
322
|
/**
|
|
324
|
-
* <p>The
|
|
325
|
-
*
|
|
326
|
-
* passed explicitly for operations that take them.</p>
|
|
323
|
+
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
324
|
+
* currently supports English ("en") and Japanese ("ja"). You must specify the ISO 639-1 code for the <code>language</code> parameter if you want support in that language.</p>
|
|
327
325
|
*/
|
|
328
326
|
language?: string;
|
|
329
327
|
/**
|
|
@@ -333,16 +331,16 @@ export interface DescribeCasesRequest {
|
|
|
333
331
|
includeCommunications?: boolean;
|
|
334
332
|
}
|
|
335
333
|
/**
|
|
336
|
-
* <p>A communication associated with a support case. The communication consists of the
|
|
337
|
-
*
|
|
338
|
-
*
|
|
334
|
+
* <p>A communication associated with a support case. The communication consists of the case
|
|
335
|
+
* ID, the message body, attachment information, the submitter of the communication, and
|
|
336
|
+
* the date and time of the communication.</p>
|
|
339
337
|
*/
|
|
340
338
|
export interface Communication {
|
|
341
339
|
/**
|
|
342
|
-
* <p>The support case ID requested or returned in the call. The case ID is an
|
|
343
|
-
*
|
|
340
|
+
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
341
|
+
* string formatted as shown in this example:
|
|
344
342
|
* case-<i>12345678910-2013-c4c1d2bf33c5cf47</i>
|
|
345
|
-
*
|
|
343
|
+
* </p>
|
|
346
344
|
*/
|
|
347
345
|
caseId?: string;
|
|
348
346
|
/**
|
|
@@ -382,113 +380,113 @@ export interface RecentCaseCommunications {
|
|
|
382
380
|
/**
|
|
383
381
|
* <p>A JSON-formatted object that contains the metadata for a support case. It is contained
|
|
384
382
|
* in the response from a <a>DescribeCases</a> request. <b>CaseDetails</b> contains the following fields:</p>
|
|
385
|
-
*
|
|
383
|
+
* <ul>
|
|
386
384
|
* <li>
|
|
387
|
-
*
|
|
388
|
-
*
|
|
389
|
-
* returned in the call. The case ID is an alphanumeric string formatted as
|
|
390
|
-
* in this example:
|
|
391
|
-
*
|
|
385
|
+
* <p>
|
|
386
|
+
* <b>caseId</b> - The support case ID requested
|
|
387
|
+
* or returned in the call. The case ID is an alphanumeric string formatted as
|
|
388
|
+
* shown in this example:
|
|
389
|
+
* case-<i>12345678910-2013-c4c1d2bf33c5cf47</i>.</p>
|
|
392
390
|
* </li>
|
|
393
391
|
* <li>
|
|
394
|
-
*
|
|
395
|
-
*
|
|
396
|
-
* support case. Corresponds to the <code>CategoryCode</code> values
|
|
397
|
-
*
|
|
392
|
+
* <p>
|
|
393
|
+
* <b>categoryCode</b> - The category of problem
|
|
394
|
+
* for the support case. Corresponds to the <code>CategoryCode</code> values
|
|
395
|
+
* returned by a call to <a>DescribeServices</a>.</p>
|
|
398
396
|
* </li>
|
|
399
397
|
* <li>
|
|
400
|
-
*
|
|
401
|
-
*
|
|
402
|
-
* in the Amazon Web Services Support Center.</p>
|
|
398
|
+
* <p>
|
|
399
|
+
* <b>displayId</b> - The identifier for the case
|
|
400
|
+
* on pages in the Amazon Web Services Support Center.</p>
|
|
403
401
|
* </li>
|
|
404
402
|
* <li>
|
|
405
|
-
*
|
|
406
|
-
*
|
|
407
|
-
*
|
|
408
|
-
* Japanese ("ja"). Language parameters must be passed explicitly for operations
|
|
409
|
-
* that take them.</p>
|
|
403
|
+
* <p>
|
|
404
|
+
* <b>language</b> - The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
405
|
+
* currently supports English ("en") and Japanese ("ja"). You must specify the ISO 639-1 code for the <code>language</code> parameter if you want support in that language.</p>
|
|
410
406
|
* </li>
|
|
411
407
|
* <li>
|
|
412
|
-
*
|
|
413
|
-
*
|
|
408
|
+
* <p>
|
|
409
|
+
* <b>nextToken</b> - A resumption point for
|
|
414
410
|
* pagination.</p>
|
|
415
411
|
* </li>
|
|
416
412
|
* <li>
|
|
417
|
-
*
|
|
418
|
-
*
|
|
413
|
+
* <p>
|
|
414
|
+
* <b>recentCommunications</b> - One or more <a>Communication</a> objects. Fields of these objects are
|
|
419
415
|
* <code>attachments</code>, <code>body</code>, <code>caseId</code>,
|
|
420
416
|
* <code>submittedBy</code>, and <code>timeCreated</code>.</p>
|
|
421
417
|
* </li>
|
|
422
418
|
* <li>
|
|
423
|
-
*
|
|
424
|
-
*
|
|
425
|
-
* that corresponds to the service code defined in the call to <a>DescribeServices</a>.</p>
|
|
419
|
+
* <p>
|
|
420
|
+
* <b>serviceCode</b> - The identifier for the
|
|
421
|
+
* Amazon Web Services service that corresponds to the service code defined in the call to <a>DescribeServices</a>.</p>
|
|
426
422
|
* </li>
|
|
427
423
|
* <li>
|
|
428
|
-
*
|
|
429
|
-
*
|
|
430
|
-
* case. Contains one of the values returned by the call to <a>DescribeSeverityLevels</a>. The possible values are:
|
|
424
|
+
* <p>
|
|
425
|
+
* <b>severityCode</b> - The severity code
|
|
426
|
+
* assigned to the case. Contains one of the values returned by the call to <a>DescribeSeverityLevels</a>. The possible values are:
|
|
431
427
|
* <code>low</code>, <code>normal</code>, <code>high</code>,
|
|
432
428
|
* <code>urgent</code>, and <code>critical</code>.</p>
|
|
433
429
|
* </li>
|
|
434
430
|
* <li>
|
|
435
|
-
*
|
|
436
|
-
*
|
|
437
|
-
*
|
|
431
|
+
* <p>
|
|
432
|
+
* <b>status</b> - The status of the case in the
|
|
433
|
+
* Amazon Web Services Support Center. Valid values:</p>
|
|
434
|
+
* <ul>
|
|
438
435
|
* <li>
|
|
439
|
-
*
|
|
436
|
+
* <p>
|
|
440
437
|
* <code>opened</code>
|
|
441
438
|
* </p>
|
|
442
|
-
*
|
|
439
|
+
* </li>
|
|
443
440
|
* <li>
|
|
444
|
-
*
|
|
441
|
+
* <p>
|
|
445
442
|
* <code>pending-customer-action</code>
|
|
446
443
|
* </p>
|
|
447
|
-
*
|
|
444
|
+
* </li>
|
|
448
445
|
* <li>
|
|
449
|
-
*
|
|
446
|
+
* <p>
|
|
450
447
|
* <code>reopened</code>
|
|
451
448
|
* </p>
|
|
452
|
-
*
|
|
449
|
+
* </li>
|
|
453
450
|
* <li>
|
|
454
|
-
*
|
|
451
|
+
* <p>
|
|
455
452
|
* <code>resolved</code>
|
|
456
453
|
* </p>
|
|
457
|
-
*
|
|
454
|
+
* </li>
|
|
458
455
|
* <li>
|
|
459
|
-
*
|
|
456
|
+
* <p>
|
|
460
457
|
* <code>unassigned</code>
|
|
461
458
|
* </p>
|
|
462
|
-
*
|
|
459
|
+
* </li>
|
|
463
460
|
* <li>
|
|
464
|
-
*
|
|
461
|
+
* <p>
|
|
465
462
|
* <code>work-in-progress</code>
|
|
466
463
|
* </p>
|
|
467
|
-
*
|
|
464
|
+
* </li>
|
|
468
465
|
* </ul>
|
|
469
466
|
* </li>
|
|
470
467
|
* <li>
|
|
471
|
-
*
|
|
472
|
-
*
|
|
468
|
+
* <p>
|
|
469
|
+
* <b>subject</b> - The subject line of the
|
|
470
|
+
* case.</p>
|
|
473
471
|
* </li>
|
|
474
472
|
* <li>
|
|
475
|
-
*
|
|
476
|
-
*
|
|
477
|
-
* that submitted the case.</p>
|
|
473
|
+
* <p>
|
|
474
|
+
* <b>submittedBy</b> - The email address of the
|
|
475
|
+
* account that submitted the case.</p>
|
|
478
476
|
* </li>
|
|
479
477
|
* <li>
|
|
480
|
-
*
|
|
481
|
-
*
|
|
482
|
-
* ISO-8601 format.</p>
|
|
478
|
+
* <p>
|
|
479
|
+
* <b>timeCreated</b> - The time the case was
|
|
480
|
+
* created, in ISO-8601 format.</p>
|
|
483
481
|
* </li>
|
|
484
482
|
* </ul>
|
|
485
483
|
*/
|
|
486
484
|
export interface CaseDetails {
|
|
487
485
|
/**
|
|
488
|
-
* <p>The support case ID requested or returned in the call. The case ID is an
|
|
489
|
-
*
|
|
486
|
+
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
487
|
+
* string formatted as shown in this example:
|
|
490
488
|
* case-<i>12345678910-2013-c4c1d2bf33c5cf47</i>
|
|
491
|
-
*
|
|
489
|
+
* </p>
|
|
492
490
|
*/
|
|
493
491
|
caseId?: string;
|
|
494
492
|
/**
|
|
@@ -502,35 +500,35 @@ export interface CaseDetails {
|
|
|
502
500
|
subject?: string;
|
|
503
501
|
/**
|
|
504
502
|
* <p>The status of the case.</p>
|
|
505
|
-
*
|
|
506
|
-
*
|
|
503
|
+
* <p>Valid values:</p>
|
|
504
|
+
* <ul>
|
|
507
505
|
* <li>
|
|
508
|
-
*
|
|
506
|
+
* <p>
|
|
509
507
|
* <code>opened</code>
|
|
510
508
|
* </p>
|
|
511
509
|
* </li>
|
|
512
510
|
* <li>
|
|
513
|
-
*
|
|
511
|
+
* <p>
|
|
514
512
|
* <code>pending-customer-action</code>
|
|
515
513
|
* </p>
|
|
516
514
|
* </li>
|
|
517
515
|
* <li>
|
|
518
|
-
*
|
|
516
|
+
* <p>
|
|
519
517
|
* <code>reopened</code>
|
|
520
518
|
* </p>
|
|
521
519
|
* </li>
|
|
522
520
|
* <li>
|
|
523
|
-
*
|
|
521
|
+
* <p>
|
|
524
522
|
* <code>resolved</code>
|
|
525
523
|
* </p>
|
|
526
524
|
* </li>
|
|
527
525
|
* <li>
|
|
528
|
-
*
|
|
526
|
+
* <p>
|
|
529
527
|
* <code>unassigned</code>
|
|
530
528
|
* </p>
|
|
531
529
|
* </li>
|
|
532
530
|
* <li>
|
|
533
|
-
*
|
|
531
|
+
* <p>
|
|
534
532
|
* <code>work-in-progress</code>
|
|
535
533
|
* </p>
|
|
536
534
|
* </li>
|
|
@@ -569,9 +567,8 @@ export interface CaseDetails {
|
|
|
569
567
|
*/
|
|
570
568
|
ccEmailAddresses?: string[];
|
|
571
569
|
/**
|
|
572
|
-
* <p>The
|
|
573
|
-
*
|
|
574
|
-
* passed explicitly for operations that take them.</p>
|
|
570
|
+
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
571
|
+
* currently supports English ("en") and Japanese ("ja"). You must specify the ISO 639-1 code for the <code>language</code> parameter if you want support in that language.</p>
|
|
575
572
|
*/
|
|
576
573
|
language?: string;
|
|
577
574
|
}
|
|
@@ -592,10 +589,10 @@ export interface DescribeCasesResponse {
|
|
|
592
589
|
}
|
|
593
590
|
export interface DescribeCommunicationsRequest {
|
|
594
591
|
/**
|
|
595
|
-
* <p>The support case ID requested or returned in the call. The case ID is an
|
|
596
|
-
*
|
|
592
|
+
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
593
|
+
* string formatted as shown in this example:
|
|
597
594
|
* case-<i>12345678910-2013-c4c1d2bf33c5cf47</i>
|
|
598
|
-
*
|
|
595
|
+
* </p>
|
|
599
596
|
*/
|
|
600
597
|
caseId: string | undefined;
|
|
601
598
|
/**
|
|
@@ -637,9 +634,8 @@ export interface DescribeServicesRequest {
|
|
|
637
634
|
*/
|
|
638
635
|
serviceCodeList?: string[];
|
|
639
636
|
/**
|
|
640
|
-
* <p>The
|
|
641
|
-
*
|
|
642
|
-
* passed explicitly for operations that take them.</p>
|
|
637
|
+
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
638
|
+
* currently supports English ("en") and Japanese ("ja"). You must specify the ISO 639-1 code for the <code>language</code> parameter if you want support in that language.</p>
|
|
643
639
|
*/
|
|
644
640
|
language?: string;
|
|
645
641
|
}
|
|
@@ -692,9 +688,8 @@ export interface DescribeServicesResponse {
|
|
|
692
688
|
}
|
|
693
689
|
export interface DescribeSeverityLevelsRequest {
|
|
694
690
|
/**
|
|
695
|
-
* <p>The
|
|
696
|
-
*
|
|
697
|
-
* passed explicitly for operations that take them.</p>
|
|
691
|
+
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
692
|
+
* currently supports English ("en") and Japanese ("ja"). You must specify the ISO 639-1 code for the <code>language</code> parameter if you want support in that language.</p>
|
|
698
693
|
*/
|
|
699
694
|
language?: string;
|
|
700
695
|
}
|
|
@@ -707,42 +702,42 @@ export interface DescribeSeverityLevelsRequest {
|
|
|
707
702
|
export interface SeverityLevel {
|
|
708
703
|
/**
|
|
709
704
|
* <p>The code for case severity level.</p>
|
|
710
|
-
*
|
|
705
|
+
* <p>Valid values: <code>low</code> | <code>normal</code> | <code>high</code> |
|
|
711
706
|
* <code>urgent</code> | <code>critical</code>
|
|
712
707
|
* </p>
|
|
713
708
|
*/
|
|
714
709
|
code?: string;
|
|
715
710
|
/**
|
|
716
711
|
* <p>The name of the severity level that corresponds to the severity level code.</p>
|
|
717
|
-
*
|
|
712
|
+
* <note>
|
|
718
713
|
* <p>The values returned by the API are different from the values that appear in the
|
|
719
714
|
* Amazon Web Services Support Center. For example, the API uses the code <code>low</code>, but the name
|
|
720
715
|
* appears as General guidance in Support Center. </p>
|
|
721
716
|
* <p>The following are the API code names and how they appear in the console:</p>
|
|
722
717
|
* <ul>
|
|
723
718
|
* <li>
|
|
724
|
-
*
|
|
719
|
+
* <p>
|
|
725
720
|
* <code>low</code> - General guidance</p>
|
|
726
|
-
*
|
|
721
|
+
* </li>
|
|
727
722
|
* <li>
|
|
728
|
-
*
|
|
723
|
+
* <p>
|
|
729
724
|
* <code>normal</code> - System impaired</p>
|
|
730
|
-
*
|
|
725
|
+
* </li>
|
|
731
726
|
* <li>
|
|
732
|
-
*
|
|
727
|
+
* <p>
|
|
733
728
|
* <code>high</code> - Production system impaired</p>
|
|
734
|
-
*
|
|
729
|
+
* </li>
|
|
735
730
|
* <li>
|
|
736
|
-
*
|
|
731
|
+
* <p>
|
|
737
732
|
* <code>urgent</code> - Production system down</p>
|
|
738
|
-
*
|
|
733
|
+
* </li>
|
|
739
734
|
* <li>
|
|
740
|
-
*
|
|
735
|
+
* <p>
|
|
741
736
|
* <code>critical</code> - Business-critical system down</p>
|
|
742
|
-
*
|
|
737
|
+
* </li>
|
|
743
738
|
* </ul>
|
|
744
|
-
*
|
|
745
|
-
*
|
|
739
|
+
* </note>
|
|
740
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/case-management.html#choosing-severity">Choosing a
|
|
746
741
|
* severity</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
|
|
747
742
|
*/
|
|
748
743
|
name?: string;
|
|
@@ -761,10 +756,10 @@ export interface DescribeSeverityLevelsResponse {
|
|
|
761
756
|
export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
|
|
762
757
|
/**
|
|
763
758
|
* <p>The IDs of the Trusted Advisor checks to get the status.</p>
|
|
764
|
-
*
|
|
759
|
+
* <note>
|
|
765
760
|
* <p>If you specify the check ID of a check that is automatically refreshed, you might
|
|
766
761
|
* see an <code>InvalidParameterValue</code> error.</p>
|
|
767
|
-
*
|
|
762
|
+
* </note>
|
|
768
763
|
*/
|
|
769
764
|
checkIds: string[] | undefined;
|
|
770
765
|
}
|
|
@@ -779,28 +774,28 @@ export interface TrustedAdvisorCheckRefreshStatus {
|
|
|
779
774
|
/**
|
|
780
775
|
* <p>The status of the Trusted Advisor check for which a refresh has been requested:
|
|
781
776
|
* </p>
|
|
782
|
-
*
|
|
777
|
+
* <ul>
|
|
783
778
|
* <li>
|
|
784
|
-
*
|
|
785
|
-
* <code>none</code> - The check is not refreshed or the non-success
|
|
786
|
-
* exceeds the timeout</p>
|
|
779
|
+
* <p>
|
|
780
|
+
* <code>none</code> - The check is not refreshed or the non-success
|
|
781
|
+
* status exceeds the timeout</p>
|
|
787
782
|
* </li>
|
|
788
783
|
* <li>
|
|
789
|
-
*
|
|
790
|
-
* <code>enqueued</code> - The check refresh requests has entered the
|
|
791
|
-
* queue</p>
|
|
784
|
+
* <p>
|
|
785
|
+
* <code>enqueued</code> - The check refresh requests has entered the
|
|
786
|
+
* refresh queue</p>
|
|
792
787
|
* </li>
|
|
793
788
|
* <li>
|
|
794
|
-
*
|
|
795
|
-
* <code>processing</code> - The check refresh request is picked up by the
|
|
796
|
-
* processing engine</p>
|
|
789
|
+
* <p>
|
|
790
|
+
* <code>processing</code> - The check refresh request is picked up by the
|
|
791
|
+
* rule processing engine</p>
|
|
797
792
|
* </li>
|
|
798
793
|
* <li>
|
|
799
|
-
*
|
|
794
|
+
* <p>
|
|
800
795
|
* <code>success</code> - The check is successfully refreshed</p>
|
|
801
796
|
* </li>
|
|
802
797
|
* <li>
|
|
803
|
-
*
|
|
798
|
+
* <p>
|
|
804
799
|
* <code>abandoned</code> - The check refresh has failed</p>
|
|
805
800
|
* </li>
|
|
806
801
|
* </ul>
|
|
@@ -830,9 +825,55 @@ export interface DescribeTrustedAdvisorCheckResultRequest {
|
|
|
830
825
|
*/
|
|
831
826
|
checkId: string | undefined;
|
|
832
827
|
/**
|
|
833
|
-
* <p>The ISO 639-1 code for the language
|
|
834
|
-
*
|
|
835
|
-
*
|
|
828
|
+
* <p>The ISO 639-1 code for the language that you want your check results to appear
|
|
829
|
+
* in.</p>
|
|
830
|
+
* <p>The Amazon Web Services Support API currently supports the following languages for Trusted Advisor:</p>
|
|
831
|
+
* <ul>
|
|
832
|
+
* <li>
|
|
833
|
+
* <p>Chinese, Simplified - <code>zh</code>
|
|
834
|
+
* </p>
|
|
835
|
+
* </li>
|
|
836
|
+
* <li>
|
|
837
|
+
* <p>Chinese, Traditional - <code>zh_TW</code>
|
|
838
|
+
* </p>
|
|
839
|
+
* </li>
|
|
840
|
+
* <li>
|
|
841
|
+
* <p>English - <code>en</code>
|
|
842
|
+
* </p>
|
|
843
|
+
* </li>
|
|
844
|
+
* <li>
|
|
845
|
+
* <p>French - <code>fr</code>
|
|
846
|
+
* </p>
|
|
847
|
+
* </li>
|
|
848
|
+
* <li>
|
|
849
|
+
* <p>German - <code>de</code>
|
|
850
|
+
* </p>
|
|
851
|
+
* </li>
|
|
852
|
+
* <li>
|
|
853
|
+
* <p>Indonesian - <code>id</code>
|
|
854
|
+
* </p>
|
|
855
|
+
* </li>
|
|
856
|
+
* <li>
|
|
857
|
+
* <p>Italian - <code>it</code>
|
|
858
|
+
* </p>
|
|
859
|
+
* </li>
|
|
860
|
+
* <li>
|
|
861
|
+
* <p>Japanese - <code>ja</code>
|
|
862
|
+
* </p>
|
|
863
|
+
* </li>
|
|
864
|
+
* <li>
|
|
865
|
+
* <p>Korean - <code>ko</code>
|
|
866
|
+
* </p>
|
|
867
|
+
* </li>
|
|
868
|
+
* <li>
|
|
869
|
+
* <p>Portuguese, Brazilian - <code>pt_BR</code>
|
|
870
|
+
* </p>
|
|
871
|
+
* </li>
|
|
872
|
+
* <li>
|
|
873
|
+
* <p>Spanish - <code>es</code>
|
|
874
|
+
* </p>
|
|
875
|
+
* </li>
|
|
876
|
+
* </ul>
|
|
836
877
|
*/
|
|
837
878
|
language?: string;
|
|
838
879
|
}
|
|
@@ -853,12 +894,13 @@ export interface TrustedAdvisorCostOptimizingSummary {
|
|
|
853
894
|
estimatedPercentMonthlySavings: number | undefined;
|
|
854
895
|
}
|
|
855
896
|
/**
|
|
856
|
-
* <p>The container for summary information that relates to the category of the Trusted Advisor
|
|
897
|
+
* <p>The container for summary information that relates to the category of the Trusted Advisor
|
|
898
|
+
* check.</p>
|
|
857
899
|
*/
|
|
858
900
|
export interface TrustedAdvisorCategorySpecificSummary {
|
|
859
901
|
/**
|
|
860
|
-
* <p>The summary information about cost savings for a Trusted Advisor check that is in the
|
|
861
|
-
*
|
|
902
|
+
* <p>The summary information about cost savings for a Trusted Advisor check that is in the Cost
|
|
903
|
+
* Optimizing category.</p>
|
|
862
904
|
*/
|
|
863
905
|
costOptimizing?: TrustedAdvisorCostOptimizingSummary;
|
|
864
906
|
}
|
|
@@ -879,8 +921,8 @@ export interface TrustedAdvisorResourceDetail {
|
|
|
879
921
|
*/
|
|
880
922
|
resourceId: string | undefined;
|
|
881
923
|
/**
|
|
882
|
-
* <p>Specifies whether the Amazon Web Services resource was ignored by Trusted Advisor because it was
|
|
883
|
-
*
|
|
924
|
+
* <p>Specifies whether the Amazon Web Services resource was ignored by Trusted Advisor because it was marked as
|
|
925
|
+
* suppressed by the user.</p>
|
|
884
926
|
*/
|
|
885
927
|
isSuppressed?: boolean;
|
|
886
928
|
/**
|
|
@@ -900,8 +942,7 @@ export interface TrustedAdvisorResourcesSummary {
|
|
|
900
942
|
*/
|
|
901
943
|
resourcesProcessed: number | undefined;
|
|
902
944
|
/**
|
|
903
|
-
* <p>The number of Amazon Web Services resources that were flagged (listed) by the Trusted Advisor
|
|
904
|
-
* check.</p>
|
|
945
|
+
* <p>The number of Amazon Web Services resources that were flagged (listed) by the Trusted Advisor check.</p>
|
|
905
946
|
*/
|
|
906
947
|
resourcesFlagged: number | undefined;
|
|
907
948
|
/**
|
|
@@ -957,9 +998,54 @@ export interface DescribeTrustedAdvisorCheckResultResponse {
|
|
|
957
998
|
}
|
|
958
999
|
export interface DescribeTrustedAdvisorChecksRequest {
|
|
959
1000
|
/**
|
|
960
|
-
* <p>The ISO 639-1 code for the language
|
|
961
|
-
*
|
|
962
|
-
*
|
|
1001
|
+
* <p>The ISO 639-1 code for the language that you want your checks to appear in.</p>
|
|
1002
|
+
* <p>The Amazon Web Services Support API currently supports the following languages for Trusted Advisor:</p>
|
|
1003
|
+
* <ul>
|
|
1004
|
+
* <li>
|
|
1005
|
+
* <p>Chinese, Simplified - <code>zh</code>
|
|
1006
|
+
* </p>
|
|
1007
|
+
* </li>
|
|
1008
|
+
* <li>
|
|
1009
|
+
* <p>Chinese, Traditional - <code>zh_TW</code>
|
|
1010
|
+
* </p>
|
|
1011
|
+
* </li>
|
|
1012
|
+
* <li>
|
|
1013
|
+
* <p>English - <code>en</code>
|
|
1014
|
+
* </p>
|
|
1015
|
+
* </li>
|
|
1016
|
+
* <li>
|
|
1017
|
+
* <p>French - <code>fr</code>
|
|
1018
|
+
* </p>
|
|
1019
|
+
* </li>
|
|
1020
|
+
* <li>
|
|
1021
|
+
* <p>German - <code>de</code>
|
|
1022
|
+
* </p>
|
|
1023
|
+
* </li>
|
|
1024
|
+
* <li>
|
|
1025
|
+
* <p>Indonesian - <code>id</code>
|
|
1026
|
+
* </p>
|
|
1027
|
+
* </li>
|
|
1028
|
+
* <li>
|
|
1029
|
+
* <p>Italian - <code>it</code>
|
|
1030
|
+
* </p>
|
|
1031
|
+
* </li>
|
|
1032
|
+
* <li>
|
|
1033
|
+
* <p>Japanese - <code>ja</code>
|
|
1034
|
+
* </p>
|
|
1035
|
+
* </li>
|
|
1036
|
+
* <li>
|
|
1037
|
+
* <p>Korean - <code>ko</code>
|
|
1038
|
+
* </p>
|
|
1039
|
+
* </li>
|
|
1040
|
+
* <li>
|
|
1041
|
+
* <p>Portuguese, Brazilian - <code>pt_BR</code>
|
|
1042
|
+
* </p>
|
|
1043
|
+
* </li>
|
|
1044
|
+
* <li>
|
|
1045
|
+
* <p>Spanish - <code>es</code>
|
|
1046
|
+
* </p>
|
|
1047
|
+
* </li>
|
|
1048
|
+
* </ul>
|
|
963
1049
|
*/
|
|
964
1050
|
language: string | undefined;
|
|
965
1051
|
}
|
|
@@ -985,8 +1071,8 @@ export interface TrustedAdvisorCheckDescription {
|
|
|
985
1071
|
*/
|
|
986
1072
|
category: string | undefined;
|
|
987
1073
|
/**
|
|
988
|
-
* <p>The column headings for the data returned by the Trusted Advisor check. The order of
|
|
989
|
-
*
|
|
1074
|
+
* <p>The column headings for the data returned by the Trusted Advisor check. The order of the
|
|
1075
|
+
* headings corresponds to the order of the data in the <b>Metadata</b> element of the <a>TrustedAdvisorResourceDetail</a>
|
|
990
1076
|
* for the check. <b>Metadata</b> contains all the data that is
|
|
991
1077
|
* shown in the Excel download, even in those cases where the UI shows just summary data.
|
|
992
1078
|
* </p>
|
|
@@ -1009,8 +1095,8 @@ export interface DescribeTrustedAdvisorCheckSummariesRequest {
|
|
|
1009
1095
|
checkIds: string[] | undefined;
|
|
1010
1096
|
}
|
|
1011
1097
|
/**
|
|
1012
|
-
* <p>A summary of a Trusted Advisor check result, including the alert status, last refresh,
|
|
1013
|
-
*
|
|
1098
|
+
* <p>A summary of a Trusted Advisor check result, including the alert status, last refresh, and
|
|
1099
|
+
* number of resources examined.</p>
|
|
1014
1100
|
*/
|
|
1015
1101
|
export interface TrustedAdvisorCheckSummary {
|
|
1016
1102
|
/**
|
|
@@ -1055,10 +1141,10 @@ export interface DescribeTrustedAdvisorCheckSummariesResponse {
|
|
|
1055
1141
|
export interface RefreshTrustedAdvisorCheckRequest {
|
|
1056
1142
|
/**
|
|
1057
1143
|
* <p>The unique identifier for the Trusted Advisor check to refresh.</p>
|
|
1058
|
-
*
|
|
1059
|
-
*
|
|
1060
|
-
*
|
|
1061
|
-
*
|
|
1144
|
+
* <note>
|
|
1145
|
+
* <p>Specifying the check ID of a check that is automatically refreshed causes an
|
|
1146
|
+
* <code>InvalidParameterValue</code> error.</p>
|
|
1147
|
+
* </note>
|
|
1062
1148
|
*/
|
|
1063
1149
|
checkId: string | undefined;
|
|
1064
1150
|
}
|
|
@@ -1074,10 +1160,10 @@ export interface RefreshTrustedAdvisorCheckResponse {
|
|
|
1074
1160
|
}
|
|
1075
1161
|
export interface ResolveCaseRequest {
|
|
1076
1162
|
/**
|
|
1077
|
-
* <p>The support case ID requested or returned in the call. The case ID is an
|
|
1078
|
-
*
|
|
1163
|
+
* <p>The support case ID requested or returned in the call. The case ID is an alphanumeric
|
|
1164
|
+
* string formatted as shown in this example:
|
|
1079
1165
|
* case-<i>12345678910-2013-c4c1d2bf33c5cf47</i>
|
|
1080
|
-
*
|
|
1166
|
+
* </p>
|
|
1081
1167
|
*/
|
|
1082
1168
|
caseId?: string;
|
|
1083
1169
|
}
|