support.d.ts
52.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config-base';
interface Blob {}
declare class Support extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: Support.Types.ClientConfiguration)
config: Config & Support.Types.ClientConfiguration;
/**
* Adds one or more attachments to an attachment set. An attachment set is a temporary container for attachments that you add to a case or case communication. The set is available for 1 hour after it's created. The expiryTime returned in the response is when the set expires. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
addAttachmentsToSet(params: Support.Types.AddAttachmentsToSetRequest, callback?: (err: AWSError, data: Support.Types.AddAttachmentsToSetResponse) => void): Request<Support.Types.AddAttachmentsToSetResponse, AWSError>;
/**
* Adds one or more attachments to an attachment set. An attachment set is a temporary container for attachments that you add to a case or case communication. The set is available for 1 hour after it's created. The expiryTime returned in the response is when the set expires. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
addAttachmentsToSet(callback?: (err: AWSError, data: Support.Types.AddAttachmentsToSetResponse) => void): Request<Support.Types.AddAttachmentsToSetResponse, AWSError>;
/**
* Adds additional customer communication to an AWS Support case. Use the caseId parameter to identify the case to which to add communication. You can list a set of email addresses to copy on the communication by using the ccEmailAddresses parameter. The communicationBody value contains the text of the communication. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
addCommunicationToCase(params: Support.Types.AddCommunicationToCaseRequest, callback?: (err: AWSError, data: Support.Types.AddCommunicationToCaseResponse) => void): Request<Support.Types.AddCommunicationToCaseResponse, AWSError>;
/**
* Adds additional customer communication to an AWS Support case. Use the caseId parameter to identify the case to which to add communication. You can list a set of email addresses to copy on the communication by using the ccEmailAddresses parameter. The communicationBody value contains the text of the communication. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
addCommunicationToCase(callback?: (err: AWSError, data: Support.Types.AddCommunicationToCaseResponse) => void): Request<Support.Types.AddCommunicationToCaseResponse, AWSError>;
/**
* Creates a case in the AWS Support Center. This operation is similar to how you create a case in the AWS Support Center Create Case page. The AWS Support API doesn't support requesting service limit increases. You can submit a service limit increase in the following ways: Submit a request from the AWS Support Center Create Case page. Use the Service Quotas RequestServiceQuotaIncrease operation. A successful CreateCase request returns an AWS Support case number. You can use the DescribeCases operation and specify the case number to get existing AWS Support cases. After you create a case, use the AddCommunicationToCase operation to add additional communication or attachments to an existing case. The caseId is separate from the displayId that appears in the AWS Support Center. Use the DescribeCases operation to get the displayId. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
createCase(params: Support.Types.CreateCaseRequest, callback?: (err: AWSError, data: Support.Types.CreateCaseResponse) => void): Request<Support.Types.CreateCaseResponse, AWSError>;
/**
* Creates a case in the AWS Support Center. This operation is similar to how you create a case in the AWS Support Center Create Case page. The AWS Support API doesn't support requesting service limit increases. You can submit a service limit increase in the following ways: Submit a request from the AWS Support Center Create Case page. Use the Service Quotas RequestServiceQuotaIncrease operation. A successful CreateCase request returns an AWS Support case number. You can use the DescribeCases operation and specify the case number to get existing AWS Support cases. After you create a case, use the AddCommunicationToCase operation to add additional communication or attachments to an existing case. The caseId is separate from the displayId that appears in the AWS Support Center. Use the DescribeCases operation to get the displayId. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
createCase(callback?: (err: AWSError, data: Support.Types.CreateCaseResponse) => void): Request<Support.Types.CreateCaseResponse, AWSError>;
/**
* Returns the attachment that has the specified ID. Attachments can include screenshots, error logs, or other files that describe your issue. Attachment IDs are generated by the case management system when you add an attachment to a case or case communication. Attachment IDs are returned in the AttachmentDetails objects that are returned by the DescribeCommunications operation. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeAttachment(params: Support.Types.DescribeAttachmentRequest, callback?: (err: AWSError, data: Support.Types.DescribeAttachmentResponse) => void): Request<Support.Types.DescribeAttachmentResponse, AWSError>;
/**
* Returns the attachment that has the specified ID. Attachments can include screenshots, error logs, or other files that describe your issue. Attachment IDs are generated by the case management system when you add an attachment to a case or case communication. Attachment IDs are returned in the AttachmentDetails objects that are returned by the DescribeCommunications operation. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeAttachment(callback?: (err: AWSError, data: Support.Types.DescribeAttachmentResponse) => void): Request<Support.Types.DescribeAttachmentResponse, AWSError>;
/**
* Returns a list of cases that you specify by passing one or more case IDs. You can use the afterTime and beforeTime parameters to filter the cases by date. You can set values for the includeResolvedCases and includeCommunications parameters to specify how much information to return. The response returns the following in JSON format: One or more CaseDetails data types. One or more nextToken values, which specify where to paginate the returned records represented by the CaseDetails objects. Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request might return an error. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeCases(params: Support.Types.DescribeCasesRequest, callback?: (err: AWSError, data: Support.Types.DescribeCasesResponse) => void): Request<Support.Types.DescribeCasesResponse, AWSError>;
/**
* Returns a list of cases that you specify by passing one or more case IDs. You can use the afterTime and beforeTime parameters to filter the cases by date. You can set values for the includeResolvedCases and includeCommunications parameters to specify how much information to return. The response returns the following in JSON format: One or more CaseDetails data types. One or more nextToken values, which specify where to paginate the returned records represented by the CaseDetails objects. Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request might return an error. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeCases(callback?: (err: AWSError, data: Support.Types.DescribeCasesResponse) => void): Request<Support.Types.DescribeCasesResponse, AWSError>;
/**
* Returns communications and attachments for one or more support cases. Use the afterTime and beforeTime parameters to filter by date. You can use the caseId parameter to restrict the results to a specific case. Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request for data might cause an error. You can use the maxResults and nextToken parameters to control the pagination of the results. Set maxResults to the number of cases that you want to display on each page, and use nextToken to specify the resumption of pagination. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeCommunications(params: Support.Types.DescribeCommunicationsRequest, callback?: (err: AWSError, data: Support.Types.DescribeCommunicationsResponse) => void): Request<Support.Types.DescribeCommunicationsResponse, AWSError>;
/**
* Returns communications and attachments for one or more support cases. Use the afterTime and beforeTime parameters to filter by date. You can use the caseId parameter to restrict the results to a specific case. Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request for data might cause an error. You can use the maxResults and nextToken parameters to control the pagination of the results. Set maxResults to the number of cases that you want to display on each page, and use nextToken to specify the resumption of pagination. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeCommunications(callback?: (err: AWSError, data: Support.Types.DescribeCommunicationsResponse) => void): Request<Support.Types.DescribeCommunicationsResponse, AWSError>;
/**
* Returns the current list of AWS services and a list of service categories for each service. You then use service names and categories in your CreateCase requests. Each AWS service has its own set of categories. The service codes and category codes correspond to the values that appear in the Service and Category lists on the AWS Support Center Create Case page. The values in those fields don't necessarily match the service codes and categories returned by the DescribeServices operation. Always use the service codes and categories that the DescribeServices operation returns, so that you have the most recent set of service and category codes. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeServices(params: Support.Types.DescribeServicesRequest, callback?: (err: AWSError, data: Support.Types.DescribeServicesResponse) => void): Request<Support.Types.DescribeServicesResponse, AWSError>;
/**
* Returns the current list of AWS services and a list of service categories for each service. You then use service names and categories in your CreateCase requests. Each AWS service has its own set of categories. The service codes and category codes correspond to the values that appear in the Service and Category lists on the AWS Support Center Create Case page. The values in those fields don't necessarily match the service codes and categories returned by the DescribeServices operation. Always use the service codes and categories that the DescribeServices operation returns, so that you have the most recent set of service and category codes. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeServices(callback?: (err: AWSError, data: Support.Types.DescribeServicesResponse) => void): Request<Support.Types.DescribeServicesResponse, AWSError>;
/**
* Returns the list of severity levels that you can assign to an AWS Support case. The severity level for a case is also a field in the CaseDetails data type that you include for a CreateCase request. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeSeverityLevels(params: Support.Types.DescribeSeverityLevelsRequest, callback?: (err: AWSError, data: Support.Types.DescribeSeverityLevelsResponse) => void): Request<Support.Types.DescribeSeverityLevelsResponse, AWSError>;
/**
* Returns the list of severity levels that you can assign to an AWS Support case. The severity level for a case is also a field in the CaseDetails data type that you include for a CreateCase request. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeSeverityLevels(callback?: (err: AWSError, data: Support.Types.DescribeSeverityLevelsResponse) => void): Request<Support.Types.DescribeSeverityLevelsResponse, AWSError>;
/**
* Returns the refresh status of the AWS Trusted Advisor checks that have the specified check IDs. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. Some checks are refreshed automatically, and you can't return their refresh statuses by using the DescribeTrustedAdvisorCheckRefreshStatuses operation. If you call this operation for these checks, you might see an InvalidParameterValue error. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeTrustedAdvisorCheckRefreshStatuses(params: Support.Types.DescribeTrustedAdvisorCheckRefreshStatusesRequest, callback?: (err: AWSError, data: Support.Types.DescribeTrustedAdvisorCheckRefreshStatusesResponse) => void): Request<Support.Types.DescribeTrustedAdvisorCheckRefreshStatusesResponse, AWSError>;
/**
* Returns the refresh status of the AWS Trusted Advisor checks that have the specified check IDs. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. Some checks are refreshed automatically, and you can't return their refresh statuses by using the DescribeTrustedAdvisorCheckRefreshStatuses operation. If you call this operation for these checks, you might see an InvalidParameterValue error. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeTrustedAdvisorCheckRefreshStatuses(callback?: (err: AWSError, data: Support.Types.DescribeTrustedAdvisorCheckRefreshStatusesResponse) => void): Request<Support.Types.DescribeTrustedAdvisorCheckRefreshStatusesResponse, AWSError>;
/**
* Returns the results of the AWS Trusted Advisor check that has the specified check ID. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. The response contains a TrustedAdvisorCheckResult object, which contains these three objects: TrustedAdvisorCategorySpecificSummary TrustedAdvisorResourceDetail TrustedAdvisorResourcesSummary In addition, the response contains these fields: status - The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available". timestamp - The time of the last refresh of the check. checkId - The unique identifier for the check. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeTrustedAdvisorCheckResult(params: Support.Types.DescribeTrustedAdvisorCheckResultRequest, callback?: (err: AWSError, data: Support.Types.DescribeTrustedAdvisorCheckResultResponse) => void): Request<Support.Types.DescribeTrustedAdvisorCheckResultResponse, AWSError>;
/**
* Returns the results of the AWS Trusted Advisor check that has the specified check ID. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. The response contains a TrustedAdvisorCheckResult object, which contains these three objects: TrustedAdvisorCategorySpecificSummary TrustedAdvisorResourceDetail TrustedAdvisorResourcesSummary In addition, the response contains these fields: status - The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available". timestamp - The time of the last refresh of the check. checkId - The unique identifier for the check. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeTrustedAdvisorCheckResult(callback?: (err: AWSError, data: Support.Types.DescribeTrustedAdvisorCheckResultResponse) => void): Request<Support.Types.DescribeTrustedAdvisorCheckResultResponse, AWSError>;
/**
* Returns the results for the AWS Trusted Advisor check summaries for the check IDs that you specified. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. The response contains an array of TrustedAdvisorCheckSummary objects. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeTrustedAdvisorCheckSummaries(params: Support.Types.DescribeTrustedAdvisorCheckSummariesRequest, callback?: (err: AWSError, data: Support.Types.DescribeTrustedAdvisorCheckSummariesResponse) => void): Request<Support.Types.DescribeTrustedAdvisorCheckSummariesResponse, AWSError>;
/**
* Returns the results for the AWS Trusted Advisor check summaries for the check IDs that you specified. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. The response contains an array of TrustedAdvisorCheckSummary objects. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeTrustedAdvisorCheckSummaries(callback?: (err: AWSError, data: Support.Types.DescribeTrustedAdvisorCheckSummariesResponse) => void): Request<Support.Types.DescribeTrustedAdvisorCheckSummariesResponse, AWSError>;
/**
* Returns information about all available AWS Trusted Advisor checks, including the name, ID, category, description, and metadata. You must specify a language code. The AWS Support API currently supports English ("en") and Japanese ("ja"). The response contains a TrustedAdvisorCheckDescription object for each check. You must set the AWS Region to us-east-1. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeTrustedAdvisorChecks(params: Support.Types.DescribeTrustedAdvisorChecksRequest, callback?: (err: AWSError, data: Support.Types.DescribeTrustedAdvisorChecksResponse) => void): Request<Support.Types.DescribeTrustedAdvisorChecksResponse, AWSError>;
/**
* Returns information about all available AWS Trusted Advisor checks, including the name, ID, category, description, and metadata. You must specify a language code. The AWS Support API currently supports English ("en") and Japanese ("ja"). The response contains a TrustedAdvisorCheckDescription object for each check. You must set the AWS Region to us-east-1. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
describeTrustedAdvisorChecks(callback?: (err: AWSError, data: Support.Types.DescribeTrustedAdvisorChecksResponse) => void): Request<Support.Types.DescribeTrustedAdvisorChecksResponse, AWSError>;
/**
* Refreshes the AWS Trusted Advisor check that you specify using the check ID. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. Some checks are refreshed automatically. If you call the RefreshTrustedAdvisorCheck operation to refresh them, you might see the InvalidParameterValue error. The response contains a TrustedAdvisorCheckRefreshStatus object. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
refreshTrustedAdvisorCheck(params: Support.Types.RefreshTrustedAdvisorCheckRequest, callback?: (err: AWSError, data: Support.Types.RefreshTrustedAdvisorCheckResponse) => void): Request<Support.Types.RefreshTrustedAdvisorCheckResponse, AWSError>;
/**
* Refreshes the AWS Trusted Advisor check that you specify using the check ID. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. Some checks are refreshed automatically. If you call the RefreshTrustedAdvisorCheck operation to refresh them, you might see the InvalidParameterValue error. The response contains a TrustedAdvisorCheckRefreshStatus object. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
refreshTrustedAdvisorCheck(callback?: (err: AWSError, data: Support.Types.RefreshTrustedAdvisorCheckResponse) => void): Request<Support.Types.RefreshTrustedAdvisorCheckResponse, AWSError>;
/**
* Resolves a support case. This operation takes a caseId and returns the initial and final state of the case. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
resolveCase(params: Support.Types.ResolveCaseRequest, callback?: (err: AWSError, data: Support.Types.ResolveCaseResponse) => void): Request<Support.Types.ResolveCaseResponse, AWSError>;
/**
* Resolves a support case. This operation takes a caseId and returns the initial and final state of the case. You must have a Business or Enterprise support plan to use the AWS Support API. If you call the AWS Support API from an account that does not have a Business or Enterprise support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see AWS Support.
*/
resolveCase(callback?: (err: AWSError, data: Support.Types.ResolveCaseResponse) => void): Request<Support.Types.ResolveCaseResponse, AWSError>;
}
declare namespace Support {
export interface AddAttachmentsToSetRequest {
/**
* The ID of the attachment set. If an attachmentSetId is not specified, a new attachment set is created, and the ID of the set is returned in the response. If an attachmentSetId is specified, the attachments are added to the specified set, if it exists.
*/
attachmentSetId?: AttachmentSetId;
/**
* One or more attachments to add to the set. You can add up to three attachments per set. The size limit is 5 MB per attachment. In the Attachment object, use the data parameter to specify the contents of the attachment file. In the previous request syntax, the value for data appear as blob, which is represented as a base64-encoded string. The value for fileName is the name of the attachment, such as troubleshoot-screenshot.png.
*/
attachments: Attachments;
}
export interface AddAttachmentsToSetResponse {
/**
* The ID of the attachment set. If an attachmentSetId was not specified, a new attachment set is created, and the ID of the set is returned in the response. If an attachmentSetId was specified, the attachments are added to the specified set, if it exists.
*/
attachmentSetId?: AttachmentSetId;
/**
* The time and date when the attachment set expires.
*/
expiryTime?: ExpiryTime;
}
export interface AddCommunicationToCaseRequest {
/**
* The AWS Support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47
*/
caseId?: CaseId;
/**
* The body of an email communication to add to the support case.
*/
communicationBody: CommunicationBody;
/**
* The email addresses in the CC line of an email to be added to the support case.
*/
ccEmailAddresses?: CcEmailAddressList;
/**
* The ID of a set of one or more attachments for the communication to add to the case. Create the set by calling AddAttachmentsToSet
*/
attachmentSetId?: AttachmentSetId;
}
export interface AddCommunicationToCaseResponse {
/**
* True if AddCommunicationToCase succeeds. Otherwise, returns an error.
*/
result?: Result;
}
export type AfterTime = string;
export interface Attachment {
/**
* The name of the attachment file.
*/
fileName?: FileName;
/**
* The content of the attachment file.
*/
data?: Data;
}
export interface AttachmentDetails {
/**
* The ID of the attachment.
*/
attachmentId?: AttachmentId;
/**
* The file name of the attachment.
*/
fileName?: FileName;
}
export type AttachmentId = string;
export type AttachmentSet = AttachmentDetails[];
export type AttachmentSetId = string;
export type Attachments = Attachment[];
export type BeforeTime = string;
export type Boolean = boolean;
export interface CaseDetails {
/**
* The AWS Support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47
*/
caseId?: CaseId;
/**
* The ID displayed for the case in the AWS Support Center. This is a numeric string.
*/
displayId?: DisplayId;
/**
* The subject line for the case in the AWS Support Center.
*/
subject?: Subject;
/**
* The status of the case. Valid values: opened pending-customer-action reopened resolved unassigned work-in-progress
*/
status?: Status;
/**
* The code for the AWS service. You can get a list of codes and the corresponding service names by calling DescribeServices.
*/
serviceCode?: ServiceCode;
/**
* The category of problem for the AWS Support case.
*/
categoryCode?: CategoryCode;
/**
* The code for the severity level returned by the call to DescribeSeverityLevels.
*/
severityCode?: SeverityCode;
/**
* The email address of the account that submitted the case.
*/
submittedBy?: SubmittedBy;
/**
* The time that the case was created in the AWS Support Center.
*/
timeCreated?: TimeCreated;
/**
* The five most recent communications between you and AWS Support Center, including the IDs of any attachments to the communications. Also includes a nextToken that you can use to retrieve earlier communications.
*/
recentCommunications?: RecentCaseCommunications;
/**
* The email addresses that receive copies of communication about the case.
*/
ccEmailAddresses?: CcEmailAddressList;
/**
* The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them.
*/
language?: Language;
}
export type CaseId = string;
export type CaseIdList = CaseId[];
export type CaseList = CaseDetails[];
export type CaseStatus = string;
export interface Category {
/**
* The category code for the support case.
*/
code?: CategoryCode;
/**
* The category name for the support case.
*/
name?: CategoryName;
}
export type CategoryCode = string;
export type CategoryList = Category[];
export type CategoryName = string;
export type CcEmailAddress = string;
export type CcEmailAddressList = CcEmailAddress[];
export interface Communication {
/**
* The AWS Support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47
*/
caseId?: CaseId;
/**
* The text of the communication between the customer and AWS Support.
*/
body?: CommunicationBody;
/**
* The identity of the account that submitted, or responded to, the support case. Customer entries include the role or IAM user as well as the email address. For example, "AdminRole (Role) <someone@example.com>. Entries from the AWS Support team display "Amazon Web Services," and do not show an email address.
*/
submittedBy?: SubmittedBy;
/**
* The time the communication was created.
*/
timeCreated?: TimeCreated;
/**
* Information about the attachments to the case communication.
*/
attachmentSet?: AttachmentSet;
}
export type CommunicationBody = string;
export type CommunicationList = Communication[];
export interface CreateCaseRequest {
/**
* The title of the AWS Support case. The title appears in the Subject field on the AWS Support Center Create Case page.
*/
subject: Subject;
/**
* The code for the AWS service. You can use the DescribeServices operation to get the possible serviceCode values.
*/
serviceCode?: ServiceCode;
/**
* A value that indicates the urgency of the case. This value determines the response time according to your service level agreement with AWS Support. You can use the DescribeSeverityLevels operation to get the possible values for severityCode. For more information, see SeverityLevel and Choosing a Severity in the AWS Support User Guide. The availability of severity levels depends on the support plan for the AWS account.
*/
severityCode?: SeverityCode;
/**
* The category of problem for the AWS Support case. You also use the DescribeServices operation to get the category code for a service. Each AWS service defines its own set of category codes.
*/
categoryCode?: CategoryCode;
/**
* The communication body text that describes the issue. This text appears in the Description field on the AWS Support Center Create Case page.
*/
communicationBody: CommunicationBody;
/**
* A list of email addresses that AWS Support copies on case correspondence. AWS Support identifies the account that creates the case when you specify your AWS credentials in an HTTP POST method or use the AWS SDKs.
*/
ccEmailAddresses?: CcEmailAddressList;
/**
* The language in which AWS Support handles the case. You must specify the ISO 639-1 code for the language parameter if you want support in that language. Currently, English ("en") and Japanese ("ja") are supported.
*/
language?: Language;
/**
* The type of issue for the case. You can specify customer-service or technical. If you don't specify a value, the default is technical.
*/
issueType?: IssueType;
/**
* The ID of a set of one or more attachments for the case. Create the set by using the AddAttachmentsToSet operation.
*/
attachmentSetId?: AttachmentSetId;
}
export interface CreateCaseResponse {
/**
* The AWS Support case ID requested or returned in the call. The case ID is an alphanumeric string in the following format: case-12345678910-2013-c4c1d2bf33c5cf47
*/
caseId?: CaseId;
}
export type Data = Buffer|Uint8Array|Blob|string;
export interface DescribeAttachmentRequest {
/**
* The ID of the attachment to return. Attachment IDs are returned by the DescribeCommunications operation.
*/
attachmentId: AttachmentId;
}
export interface DescribeAttachmentResponse {
/**
* This object includes the attachment content and file name. In the previous response syntax, the value for the data parameter appears as blob, which is represented as a base64-encoded string. The value for fileName is the name of the attachment, such as troubleshoot-screenshot.png.
*/
attachment?: Attachment;
}
export interface DescribeCasesRequest {
/**
* A list of ID numbers of the support cases you want returned. The maximum number of cases is 100.
*/
caseIdList?: CaseIdList;
/**
* The ID displayed for a case in the AWS Support Center user interface.
*/
displayId?: DisplayId;
/**
* The start date for a filtered date search on support case communications. Case communications are available for 12 months after creation.
*/
afterTime?: AfterTime;
/**
* The end date for a filtered date search on support case communications. Case communications are available for 12 months after creation.
*/
beforeTime?: BeforeTime;
/**
* Specifies whether to include resolved support cases in the DescribeCases response. By default, resolved cases aren't included.
*/
includeResolvedCases?: IncludeResolvedCases;
/**
* A resumption point for pagination.
*/
nextToken?: NextToken;
/**
* The maximum number of results to return before paginating.
*/
maxResults?: MaxResults;
/**
* The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them.
*/
language?: Language;
/**
* Specifies whether to include communications in the DescribeCases response. By default, communications are incuded.
*/
includeCommunications?: IncludeCommunications;
}
export interface DescribeCasesResponse {
/**
* The details for the cases that match the request.
*/
cases?: CaseList;
/**
* A resumption point for pagination.
*/
nextToken?: NextToken;
}
export interface DescribeCommunicationsRequest {
/**
* The AWS Support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47
*/
caseId: CaseId;
/**
* The end date for a filtered date search on support case communications. Case communications are available for 12 months after creation.
*/
beforeTime?: BeforeTime;
/**
* The start date for a filtered date search on support case communications. Case communications are available for 12 months after creation.
*/
afterTime?: AfterTime;
/**
* A resumption point for pagination.
*/
nextToken?: NextToken;
/**
* The maximum number of results to return before paginating.
*/
maxResults?: MaxResults;
}
export interface DescribeCommunicationsResponse {
/**
* The communications for the case.
*/
communications?: CommunicationList;
/**
* A resumption point for pagination.
*/
nextToken?: NextToken;
}
export interface DescribeServicesRequest {
/**
* A JSON-formatted list of service codes available for AWS services.
*/
serviceCodeList?: ServiceCodeList;
/**
* The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them.
*/
language?: Language;
}
export interface DescribeServicesResponse {
/**
* A JSON-formatted list of AWS services.
*/
services?: ServiceList;
}
export interface DescribeSeverityLevelsRequest {
/**
* The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them.
*/
language?: Language;
}
export interface DescribeSeverityLevelsResponse {
/**
* The available severity levels for the support case. Available severity levels are defined by your service level agreement with AWS.
*/
severityLevels?: SeverityLevelsList;
}
export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
/**
* The IDs of the Trusted Advisor checks to get the status of. If you specify the check ID of a check that is automatically refreshed, you might see an InvalidParameterValue error.
*/
checkIds: StringList;
}
export interface DescribeTrustedAdvisorCheckRefreshStatusesResponse {
/**
* The refresh status of the specified Trusted Advisor checks.
*/
statuses: TrustedAdvisorCheckRefreshStatusList;
}
export interface DescribeTrustedAdvisorCheckResultRequest {
/**
* The unique identifier for the Trusted Advisor check.
*/
checkId: String;
/**
* The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them.
*/
language?: String;
}
export interface DescribeTrustedAdvisorCheckResultResponse {
/**
* The detailed results of the Trusted Advisor check.
*/
result?: TrustedAdvisorCheckResult;
}
export interface DescribeTrustedAdvisorCheckSummariesRequest {
/**
* The IDs of the Trusted Advisor checks.
*/
checkIds: StringList;
}
export interface DescribeTrustedAdvisorCheckSummariesResponse {
/**
* The summary information for the requested Trusted Advisor checks.
*/
summaries: TrustedAdvisorCheckSummaryList;
}
export interface DescribeTrustedAdvisorChecksRequest {
/**
* The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them.
*/
language: String;
}
export interface DescribeTrustedAdvisorChecksResponse {
/**
* Information about all available Trusted Advisor checks.
*/
checks: TrustedAdvisorCheckList;
}
export type DisplayId = string;
export type Double = number;
export type ExpiryTime = string;
export type FileName = string;
export type IncludeCommunications = boolean;
export type IncludeResolvedCases = boolean;
export type IssueType = string;
export type Language = string;
export type Long = number;
export type MaxResults = number;
export type NextToken = string;
export interface RecentCaseCommunications {
/**
* The five most recent communications associated with the case.
*/
communications?: CommunicationList;
/**
* A resumption point for pagination.
*/
nextToken?: NextToken;
}
export interface RefreshTrustedAdvisorCheckRequest {
/**
* The unique identifier for the Trusted Advisor check to refresh. Note: Specifying the check ID of a check that is automatically refreshed causes an InvalidParameterValue error.
*/
checkId: String;
}
export interface RefreshTrustedAdvisorCheckResponse {
/**
* The current refresh status for a check, including the amount of time until the check is eligible for refresh.
*/
status: TrustedAdvisorCheckRefreshStatus;
}
export interface ResolveCaseRequest {
/**
* The AWS Support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47
*/
caseId?: CaseId;
}
export interface ResolveCaseResponse {
/**
* The status of the case when the ResolveCase request was sent.
*/
initialCaseStatus?: CaseStatus;
/**
* The status of the case after the ResolveCase request was processed.
*/
finalCaseStatus?: CaseStatus;
}
export type Result = boolean;
export interface Service {
/**
* The code for an AWS service returned by the DescribeServices response. The name element contains the corresponding friendly name.
*/
code?: ServiceCode;
/**
* The friendly name for an AWS service. The code element contains the corresponding code.
*/
name?: ServiceName;
/**
* A list of categories that describe the type of support issue a case describes. Categories consist of a category name and a category code. Category names and codes are passed to AWS Support when you call CreateCase.
*/
categories?: CategoryList;
}
export type ServiceCode = string;
export type ServiceCodeList = ServiceCode[];
export type ServiceList = Service[];
export type ServiceName = string;
export type SeverityCode = string;
export interface SeverityLevel {
/**
* The code for case severity level. Valid values: low | normal | high | urgent | critical
*/
code?: SeverityLevelCode;
/**
* The name of the severity level that corresponds to the severity level code. The values returned by the API differ from the values that are displayed in the AWS Support Center. For example, for the code "low", the API name is "Low", but the name in the Support Center is "General guidance". These are the Support Center code/name mappings: low: General guidance normal: System impaired high: Production system impaired urgent: Production system down critical: Business-critical system down For more information, see Choosing a severity in the AWS Support User Guide.
*/
name?: SeverityLevelName;
}
export type SeverityLevelCode = string;
export type SeverityLevelName = string;
export type SeverityLevelsList = SeverityLevel[];
export type Status = string;
export type String = string;
export type StringList = String[];
export type Subject = string;
export type SubmittedBy = string;
export type TimeCreated = string;
export interface TrustedAdvisorCategorySpecificSummary {
/**
* The summary information about cost savings for a Trusted Advisor check that is in the Cost Optimizing category.
*/
costOptimizing?: TrustedAdvisorCostOptimizingSummary;
}
export interface TrustedAdvisorCheckDescription {
/**
* The unique identifier for the Trusted Advisor check.
*/
id: String;
/**
* The display name for the Trusted Advisor check.
*/
name: String;
/**
* The description of the Trusted Advisor check, which includes the alert criteria and recommended operations (contains HTML markup).
*/
description: String;
/**
* The category of the Trusted Advisor check.
*/
category: String;
/**
* The column headings for the data returned by the Trusted Advisor check. The order of the headings corresponds to the order of the data in the Metadata element of the TrustedAdvisorResourceDetail for the check. Metadata contains all the data that is shown in the Excel download, even in those cases where the UI shows just summary data.
*/
metadata: StringList;
}
export type TrustedAdvisorCheckList = TrustedAdvisorCheckDescription[];
export interface TrustedAdvisorCheckRefreshStatus {
/**
* The unique identifier for the Trusted Advisor check.
*/
checkId: String;
/**
* The status of the Trusted Advisor check for which a refresh has been requested: none: The check is not refreshed or the non-success status exceeds the timeout enqueued: The check refresh requests has entered the refresh queue processing: The check refresh request is picked up by the rule processing engine success: The check is successfully refreshed abandoned: The check refresh has failed
*/
status: String;
/**
* The amount of time, in milliseconds, until the Trusted Advisor check is eligible for refresh.
*/
millisUntilNextRefreshable: Long;
}
export type TrustedAdvisorCheckRefreshStatusList = TrustedAdvisorCheckRefreshStatus[];
export interface TrustedAdvisorCheckResult {
/**
* The unique identifier for the Trusted Advisor check.
*/
checkId: String;
/**
* The time of the last refresh of the check.
*/
timestamp: String;
/**
* The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".
*/
status: String;
resourcesSummary: TrustedAdvisorResourcesSummary;
/**
* Summary information that relates to the category of the check. Cost Optimizing is the only category that is currently supported.
*/
categorySpecificSummary: TrustedAdvisorCategorySpecificSummary;
/**
* The details about each resource listed in the check result.
*/
flaggedResources: TrustedAdvisorResourceDetailList;
}
export interface TrustedAdvisorCheckSummary {
/**
* The unique identifier for the Trusted Advisor check.
*/
checkId: String;
/**
* The time of the last refresh of the check.
*/
timestamp: String;
/**
* The alert status of the check: "ok" (green), "warning" (yellow), "error" (red), or "not_available".
*/
status: String;
/**
* Specifies whether the Trusted Advisor check has flagged resources.
*/
hasFlaggedResources?: Boolean;
resourcesSummary: TrustedAdvisorResourcesSummary;
/**
* Summary information that relates to the category of the check. Cost Optimizing is the only category that is currently supported.
*/
categorySpecificSummary: TrustedAdvisorCategorySpecificSummary;
}
export type TrustedAdvisorCheckSummaryList = TrustedAdvisorCheckSummary[];
export interface TrustedAdvisorCostOptimizingSummary {
/**
* The estimated monthly savings that might be realized if the recommended operations are taken.
*/
estimatedMonthlySavings: Double;
/**
* The estimated percentage of savings that might be realized if the recommended operations are taken.
*/
estimatedPercentMonthlySavings: Double;
}
export interface TrustedAdvisorResourceDetail {
/**
* The status code for the resource identified in the Trusted Advisor check.
*/
status: String;
/**
* The AWS region in which the identified resource is located.
*/
region?: String;
/**
* The unique identifier for the identified resource.
*/
resourceId: String;
/**
* Specifies whether the AWS resource was ignored by Trusted Advisor because it was marked as suppressed by the user.
*/
isSuppressed?: Boolean;
/**
* Additional information about the identified resource. The exact metadata and its order can be obtained by inspecting the TrustedAdvisorCheckDescription object returned by the call to DescribeTrustedAdvisorChecks. Metadata contains all the data that is shown in the Excel download, even in those cases where the UI shows just summary data.
*/
metadata: StringList;
}
export type TrustedAdvisorResourceDetailList = TrustedAdvisorResourceDetail[];
export interface TrustedAdvisorResourcesSummary {
/**
* The number of AWS resources that were analyzed by the Trusted Advisor check.
*/
resourcesProcessed: Long;
/**
* The number of AWS resources that were flagged (listed) by the Trusted Advisor check.
*/
resourcesFlagged: Long;
/**
* The number of AWS resources ignored by Trusted Advisor because information was unavailable.
*/
resourcesIgnored: Long;
/**
* The number of AWS resources ignored by Trusted Advisor because they were marked as suppressed by the user.
*/
resourcesSuppressed: Long;
}
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2013-04-15"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the Support client.
*/
export import Types = Support;
}
export = Support;