@aws-sdk/client-support 3.687.0 → 3.692.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.
@@ -10,12 +10,12 @@ export interface Attachment {
10
10
  * <p>The name of the attachment file.</p>
11
11
  * @public
12
12
  */
13
- fileName?: string;
13
+ fileName?: string | undefined;
14
14
  /**
15
15
  * <p>The content of the attachment file.</p>
16
16
  * @public
17
17
  */
18
- data?: Uint8Array;
18
+ data?: Uint8Array | undefined;
19
19
  }
20
20
  /**
21
21
  * @public
@@ -28,7 +28,7 @@ export interface AddAttachmentsToSetRequest {
28
28
  * specified set, if it exists.</p>
29
29
  * @public
30
30
  */
31
- attachmentSetId?: string;
31
+ attachmentSetId?: string | undefined;
32
32
  /**
33
33
  * <p>One or more attachments to add to the set. You can add up to three attachments per
34
34
  * set. The size limit is 5 MB per attachment.</p>
@@ -53,12 +53,12 @@ export interface AddAttachmentsToSetResponse {
53
53
  * specified set, if it exists.</p>
54
54
  * @public
55
55
  */
56
- attachmentSetId?: string;
56
+ attachmentSetId?: string | undefined;
57
57
  /**
58
58
  * <p>The time and date when the attachment set expires.</p>
59
59
  * @public
60
60
  */
61
- expiryTime?: string;
61
+ expiryTime?: string | undefined;
62
62
  }
63
63
  /**
64
64
  * <p>The limit for the number of attachment sets created in a short period of time has been
@@ -134,7 +134,7 @@ export interface AddCommunicationToCaseRequest {
134
134
  * </p>
135
135
  * @public
136
136
  */
137
- caseId?: string;
137
+ caseId?: string | undefined;
138
138
  /**
139
139
  * <p>The body of an email communication to add to the support case.</p>
140
140
  * @public
@@ -144,14 +144,14 @@ export interface AddCommunicationToCaseRequest {
144
144
  * <p>The email addresses in the CC line of an email to be added to the support case.</p>
145
145
  * @public
146
146
  */
147
- ccEmailAddresses?: string[];
147
+ ccEmailAddresses?: string[] | undefined;
148
148
  /**
149
149
  * <p>The ID of a set of one or more attachments for the communication to add to the case.
150
150
  * Create the set by calling <a>AddAttachmentsToSet</a>
151
151
  * </p>
152
152
  * @public
153
153
  */
154
- attachmentSetId?: string;
154
+ attachmentSetId?: string | undefined;
155
155
  }
156
156
  /**
157
157
  * <p>The result of the <a>AddCommunicationToCase</a> operation.</p>
@@ -163,7 +163,7 @@ export interface AddCommunicationToCaseResponse {
163
163
  * error.</p>
164
164
  * @public
165
165
  */
166
- result?: boolean;
166
+ result?: boolean | undefined;
167
167
  }
168
168
  /**
169
169
  * <p>The requested <code>caseId</code> couldn't be located.</p>
@@ -187,12 +187,12 @@ export interface AttachmentDetails {
187
187
  * <p>The ID of the attachment.</p>
188
188
  * @public
189
189
  */
190
- attachmentId?: string;
190
+ attachmentId?: string | undefined;
191
191
  /**
192
192
  * <p>The file name of the attachment.</p>
193
193
  * @public
194
194
  */
195
- fileName?: string;
195
+ fileName?: string | undefined;
196
196
  }
197
197
  /**
198
198
  * <p>An attachment with the specified ID could not be found.</p>
@@ -232,7 +232,7 @@ export interface CreateCaseRequest {
232
232
  * operation to get the possible <code>serviceCode</code> values.</p>
233
233
  * @public
234
234
  */
235
- serviceCode?: string;
235
+ serviceCode?: string | undefined;
236
236
  /**
237
237
  * <p>A value that indicates the urgency of the case. This value determines the response
238
238
  * 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
@@ -245,13 +245,13 @@ export interface CreateCaseRequest {
245
245
  * </note>
246
246
  * @public
247
247
  */
248
- severityCode?: string;
248
+ severityCode?: string | undefined;
249
249
  /**
250
250
  * <p>The category of problem for the support case. You also use the <a>DescribeServices</a> operation to get the category code for a service. Each
251
251
  * Amazon Web Services service defines its own set of category codes.</p>
252
252
  * @public
253
253
  */
254
- categoryCode?: string;
254
+ categoryCode?: string | undefined;
255
255
  /**
256
256
  * <p>The communication body text that describes the issue. This text appears in the
257
257
  * <b>Description</b> field on the Amazon Web Services Support Center <a href="https://console.aws.amazon.com/support/home#/case/create">Create Case</a> page.</p>
@@ -265,27 +265,27 @@ export interface CreateCaseRequest {
265
265
  * </p>
266
266
  * @public
267
267
  */
268
- ccEmailAddresses?: string[];
268
+ ccEmailAddresses?: string[] | undefined;
269
269
  /**
270
270
  * <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
271
271
  * currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
272
272
  * code for the <code>language</code> parameter if you want support in that language.</p>
273
273
  * @public
274
274
  */
275
- language?: string;
275
+ language?: string | undefined;
276
276
  /**
277
277
  * <p>The type of issue for the case. You can specify <code>customer-service</code> or
278
278
  * <code>technical</code>. If you don't specify a value, the default is
279
279
  * <code>technical</code>.</p>
280
280
  * @public
281
281
  */
282
- issueType?: string;
282
+ issueType?: string | undefined;
283
283
  /**
284
284
  * <p>The ID of a set of one or more attachments for the case. Create the set by using the
285
285
  * <a>AddAttachmentsToSet</a> operation.</p>
286
286
  * @public
287
287
  */
288
- attachmentSetId?: string;
288
+ attachmentSetId?: string | undefined;
289
289
  }
290
290
  /**
291
291
  * <p>The support case ID returned by a successful completion of the <a>CreateCase</a> operation.</p>
@@ -299,7 +299,7 @@ export interface CreateCaseResponse {
299
299
  * </p>
300
300
  * @public
301
301
  */
302
- caseId?: string;
302
+ caseId?: string | undefined;
303
303
  }
304
304
  /**
305
305
  * <p>The limit for the number of <a>DescribeAttachment</a> requests in a short
@@ -337,7 +337,7 @@ export interface DescribeAttachmentResponse {
337
337
  * <code>troubleshoot-screenshot.png</code>.</p>
338
338
  * @public
339
339
  */
340
- attachment?: Attachment;
340
+ attachment?: Attachment | undefined;
341
341
  }
342
342
  /**
343
343
  * @public
@@ -348,53 +348,53 @@ export interface DescribeCasesRequest {
348
348
  * cases is 100.</p>
349
349
  * @public
350
350
  */
351
- caseIdList?: string[];
351
+ caseIdList?: string[] | undefined;
352
352
  /**
353
353
  * <p>The ID displayed for a case in the Amazon Web Services Support Center user interface.</p>
354
354
  * @public
355
355
  */
356
- displayId?: string;
356
+ displayId?: string | undefined;
357
357
  /**
358
358
  * <p>The start date for a filtered date search on support case communications. Case
359
359
  * communications are available for 12 months after creation.</p>
360
360
  * @public
361
361
  */
362
- afterTime?: string;
362
+ afterTime?: string | undefined;
363
363
  /**
364
364
  * <p>The end date for a filtered date search on support case communications. Case
365
365
  * communications are available for 12 months after creation.</p>
366
366
  * @public
367
367
  */
368
- beforeTime?: string;
368
+ beforeTime?: string | undefined;
369
369
  /**
370
370
  * <p>Specifies whether to include resolved support cases in the <code>DescribeCases</code>
371
371
  * response. By default, resolved cases aren't included.</p>
372
372
  * @public
373
373
  */
374
- includeResolvedCases?: boolean;
374
+ includeResolvedCases?: boolean | undefined;
375
375
  /**
376
376
  * <p>A resumption point for pagination.</p>
377
377
  * @public
378
378
  */
379
- nextToken?: string;
379
+ nextToken?: string | undefined;
380
380
  /**
381
381
  * <p>The maximum number of results to return before paginating.</p>
382
382
  * @public
383
383
  */
384
- maxResults?: number;
384
+ maxResults?: number | undefined;
385
385
  /**
386
386
  * <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
387
387
  * currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
388
388
  * code for the <code>language</code> parameter if you want support in that language.</p>
389
389
  * @public
390
390
  */
391
- language?: string;
391
+ language?: string | undefined;
392
392
  /**
393
393
  * <p>Specifies whether to include communications in the <code>DescribeCases</code>
394
394
  * response. By default, communications are included.</p>
395
395
  * @public
396
396
  */
397
- includeCommunications?: boolean;
397
+ includeCommunications?: boolean | undefined;
398
398
  }
399
399
  /**
400
400
  * <p>A communication associated with a support case. The communication consists of the case
@@ -410,12 +410,12 @@ export interface Communication {
410
410
  * </p>
411
411
  * @public
412
412
  */
413
- caseId?: string;
413
+ caseId?: string | undefined;
414
414
  /**
415
415
  * <p>The text of the communication between the customer and Amazon Web Services Support.</p>
416
416
  * @public
417
417
  */
418
- body?: string;
418
+ body?: string | undefined;
419
419
  /**
420
420
  * <p>The identity of the account that submitted, or responded to, the support case.
421
421
  * Customer entries include the IAM role as well as the email address (for example,
@@ -424,17 +424,17 @@ export interface Communication {
424
424
  * </p>
425
425
  * @public
426
426
  */
427
- submittedBy?: string;
427
+ submittedBy?: string | undefined;
428
428
  /**
429
429
  * <p>The time the communication was created.</p>
430
430
  * @public
431
431
  */
432
- timeCreated?: string;
432
+ timeCreated?: string | undefined;
433
433
  /**
434
434
  * <p>Information about the attachments to the case communication.</p>
435
435
  * @public
436
436
  */
437
- attachmentSet?: AttachmentDetails[];
437
+ attachmentSet?: AttachmentDetails[] | undefined;
438
438
  }
439
439
  /**
440
440
  * <p>The five most recent communications associated with the case.</p>
@@ -445,12 +445,12 @@ export interface RecentCaseCommunications {
445
445
  * <p>The five most recent communications associated with the case.</p>
446
446
  * @public
447
447
  */
448
- communications?: Communication[];
448
+ communications?: Communication[] | undefined;
449
449
  /**
450
450
  * <p>A resumption point for pagination.</p>
451
451
  * @public
452
452
  */
453
- nextToken?: string;
453
+ nextToken?: string | undefined;
454
454
  }
455
455
  /**
456
456
  * <p>A JSON-formatted object that contains the metadata for a support case. It is contained
@@ -576,18 +576,18 @@ export interface CaseDetails {
576
576
  * </p>
577
577
  * @public
578
578
  */
579
- caseId?: string;
579
+ caseId?: string | undefined;
580
580
  /**
581
581
  * <p>The ID displayed for the case in the Amazon Web Services Support Center. This is a numeric
582
582
  * string.</p>
583
583
  * @public
584
584
  */
585
- displayId?: string;
585
+ displayId?: string | undefined;
586
586
  /**
587
587
  * <p>The subject line for the case in the Amazon Web Services Support Center.</p>
588
588
  * @public
589
589
  */
590
- subject?: string;
590
+ subject?: string | undefined;
591
591
  /**
592
592
  * <p>The status of the case.</p>
593
593
  * <p>Valid values:</p>
@@ -635,52 +635,52 @@ export interface CaseDetails {
635
635
  * </ul>
636
636
  * @public
637
637
  */
638
- status?: string;
638
+ status?: string | undefined;
639
639
  /**
640
640
  * <p>The code for the Amazon Web Services service. You can get a list of codes and the corresponding
641
641
  * service names by calling <a>DescribeServices</a>.</p>
642
642
  * @public
643
643
  */
644
- serviceCode?: string;
644
+ serviceCode?: string | undefined;
645
645
  /**
646
646
  * <p>The category of problem for the support case.</p>
647
647
  * @public
648
648
  */
649
- categoryCode?: string;
649
+ categoryCode?: string | undefined;
650
650
  /**
651
651
  * <p>The code for the severity level returned by the call to <a>DescribeSeverityLevels</a>.</p>
652
652
  * @public
653
653
  */
654
- severityCode?: string;
654
+ severityCode?: string | undefined;
655
655
  /**
656
656
  * <p>The email address of the account that submitted the case.</p>
657
657
  * @public
658
658
  */
659
- submittedBy?: string;
659
+ submittedBy?: string | undefined;
660
660
  /**
661
661
  * <p>The time that the case was created in the Amazon Web Services Support Center.</p>
662
662
  * @public
663
663
  */
664
- timeCreated?: string;
664
+ timeCreated?: string | undefined;
665
665
  /**
666
666
  * <p>The five most recent communications between you and Amazon Web Services Support Center, including the
667
667
  * IDs of any attachments to the communications. Also includes a <code>nextToken</code>
668
668
  * that you can use to retrieve earlier communications.</p>
669
669
  * @public
670
670
  */
671
- recentCommunications?: RecentCaseCommunications;
671
+ recentCommunications?: RecentCaseCommunications | undefined;
672
672
  /**
673
673
  * <p>The email addresses that receive copies of communication about the case.</p>
674
674
  * @public
675
675
  */
676
- ccEmailAddresses?: string[];
676
+ ccEmailAddresses?: string[] | undefined;
677
677
  /**
678
678
  * <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
679
679
  * currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
680
680
  * code for the <code>language</code> parameter if you want support in that language.</p>
681
681
  * @public
682
682
  */
683
- language?: string;
683
+ language?: string | undefined;
684
684
  }
685
685
  /**
686
686
  * <p>Returns an array of <a href="https://docs.aws.amazon.com/awssupport/latest/APIReference/API_CaseDetails.html">CaseDetails</a>
@@ -693,12 +693,12 @@ export interface DescribeCasesResponse {
693
693
  * <p>The details for the cases that match the request.</p>
694
694
  * @public
695
695
  */
696
- cases?: CaseDetails[];
696
+ cases?: CaseDetails[] | undefined;
697
697
  /**
698
698
  * <p>A resumption point for pagination.</p>
699
699
  * @public
700
700
  */
701
- nextToken?: string;
701
+ nextToken?: string | undefined;
702
702
  }
703
703
  /**
704
704
  * @public
@@ -717,23 +717,23 @@ export interface DescribeCommunicationsRequest {
717
717
  * communications are available for 12 months after creation.</p>
718
718
  * @public
719
719
  */
720
- beforeTime?: string;
720
+ beforeTime?: string | undefined;
721
721
  /**
722
722
  * <p>The start date for a filtered date search on support case communications. Case
723
723
  * communications are available for 12 months after creation.</p>
724
724
  * @public
725
725
  */
726
- afterTime?: string;
726
+ afterTime?: string | undefined;
727
727
  /**
728
728
  * <p>A resumption point for pagination.</p>
729
729
  * @public
730
730
  */
731
- nextToken?: string;
731
+ nextToken?: string | undefined;
732
732
  /**
733
733
  * <p>The maximum number of results to return before paginating.</p>
734
734
  * @public
735
735
  */
736
- maxResults?: number;
736
+ maxResults?: number | undefined;
737
737
  }
738
738
  /**
739
739
  * <p>The communications returned by the <a>DescribeCommunications</a>
@@ -745,12 +745,12 @@ export interface DescribeCommunicationsResponse {
745
745
  * <p>The communications for the case.</p>
746
746
  * @public
747
747
  */
748
- communications?: Communication[];
748
+ communications?: Communication[] | undefined;
749
749
  /**
750
750
  * <p>A resumption point for pagination.</p>
751
751
  * @public
752
752
  */
753
- nextToken?: string;
753
+ nextToken?: string | undefined;
754
754
  }
755
755
  /**
756
756
  * @public
@@ -794,14 +794,14 @@ export interface DateInterval {
794
794
  * </p>
795
795
  * @public
796
796
  */
797
- startDateTime?: string;
797
+ startDateTime?: string | undefined;
798
798
  /**
799
799
  * <p>
800
800
  * End Date Time (UTC). RFC 3339 format : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'.
801
801
  * </p>
802
802
  * @public
803
803
  */
804
- endDateTime?: string;
804
+ endDateTime?: string | undefined;
805
805
  }
806
806
  /**
807
807
  * <p>Time range object with <code>startTime</code> and <code>endTime</code> range in RFC 3339 format. <code>'HH:mm:ss.SSS'</code>.</p>
@@ -814,14 +814,14 @@ export interface SupportedHour {
814
814
  * </p>
815
815
  * @public
816
816
  */
817
- startTime?: string;
817
+ startTime?: string | undefined;
818
818
  /**
819
819
  * <p>
820
820
  * End Time. RFC 3339 format <code>'HH:mm:ss.SSS'</code>.
821
821
  * </p>
822
822
  * @public
823
823
  */
824
- endTime?: string;
824
+ endTime?: string | undefined;
825
825
  }
826
826
  /**
827
827
  * <p>A JSON-formatted object that contains the CommunicationTypeOptions for creating a case for a certain
@@ -859,21 +859,21 @@ export interface CommunicationTypeOptions {
859
859
  * </p>
860
860
  * @public
861
861
  */
862
- type?: string;
862
+ type?: string | undefined;
863
863
  /**
864
864
  * <p>
865
865
  * A JSON-formatted list containing time ranges when support is available.
866
866
  * </p>
867
867
  * @public
868
868
  */
869
- supportedHours?: SupportedHour[];
869
+ supportedHours?: SupportedHour[] | undefined;
870
870
  /**
871
871
  * <p>
872
872
  * A JSON-formatted list containing date and time ranges for periods without support
873
873
  * </p>
874
874
  * @public
875
875
  */
876
- datesWithoutSupport?: DateInterval[];
876
+ datesWithoutSupport?: DateInterval[] | undefined;
877
877
  }
878
878
  /**
879
879
  * @public
@@ -900,7 +900,7 @@ export interface DescribeCreateCaseOptionsResponse {
900
900
  * </ul>
901
901
  * @public
902
902
  */
903
- languageAvailability?: string;
903
+ languageAvailability?: string | undefined;
904
904
  /**
905
905
  * <p>
906
906
  * A JSON-formatted array that contains the available communication type options, along with the available support
@@ -908,7 +908,7 @@ export interface DescribeCreateCaseOptionsResponse {
908
908
  * </p>
909
909
  * @public
910
910
  */
911
- communicationTypes?: CommunicationTypeOptions[];
911
+ communicationTypes?: CommunicationTypeOptions[] | undefined;
912
912
  }
913
913
  /**
914
914
  * <p>
@@ -932,14 +932,14 @@ export interface DescribeServicesRequest {
932
932
  * <p>A JSON-formatted list of service codes available for Amazon Web Services services.</p>
933
933
  * @public
934
934
  */
935
- serviceCodeList?: string[];
935
+ serviceCodeList?: string[] | undefined;
936
936
  /**
937
937
  * <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
938
938
  * currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
939
939
  * code for the <code>language</code> parameter if you want support in that language.</p>
940
940
  * @public
941
941
  */
942
- language?: string;
942
+ language?: string | undefined;
943
943
  }
944
944
  /**
945
945
  * <p>A JSON-formatted name/value pair that represents the category name and category code
@@ -952,12 +952,12 @@ export interface Category {
952
952
  * <p>The category code for the support case.</p>
953
953
  * @public
954
954
  */
955
- code?: string;
955
+ code?: string | undefined;
956
956
  /**
957
957
  * <p>The category name for the support case.</p>
958
958
  * @public
959
959
  */
960
- name?: string;
960
+ name?: string | undefined;
961
961
  }
962
962
  /**
963
963
  * <p>Information about an Amazon Web Services service returned by the <a>DescribeServices</a>
@@ -970,20 +970,20 @@ export interface Service {
970
970
  * response. The <code>name</code> element contains the corresponding friendly name.</p>
971
971
  * @public
972
972
  */
973
- code?: string;
973
+ code?: string | undefined;
974
974
  /**
975
975
  * <p>The friendly name for an Amazon Web Services service. The <code>code</code> element contains the
976
976
  * corresponding code.</p>
977
977
  * @public
978
978
  */
979
- name?: string;
979
+ name?: string | undefined;
980
980
  /**
981
981
  * <p>A list of categories that describe the type of support issue a case describes.
982
982
  * Categories consist of a category name and a category code. Category names and codes are
983
983
  * passed to Amazon Web Services Support when you call <a>CreateCase</a>.</p>
984
984
  * @public
985
985
  */
986
- categories?: Category[];
986
+ categories?: Category[] | undefined;
987
987
  }
988
988
  /**
989
989
  * <p>The list of Amazon Web Services services returned by the <a>DescribeServices</a>
@@ -995,7 +995,7 @@ export interface DescribeServicesResponse {
995
995
  * <p>A JSON-formatted list of Amazon Web Services services.</p>
996
996
  * @public
997
997
  */
998
- services?: Service[];
998
+ services?: Service[] | undefined;
999
999
  }
1000
1000
  /**
1001
1001
  * @public
@@ -1007,7 +1007,7 @@ export interface DescribeSeverityLevelsRequest {
1007
1007
  * code for the <code>language</code> parameter if you want support in that language.</p>
1008
1008
  * @public
1009
1009
  */
1010
- language?: string;
1010
+ language?: string | undefined;
1011
1011
  }
1012
1012
  /**
1013
1013
  * <p>A code and name pair that represents the severity level of a support case. The
@@ -1024,7 +1024,7 @@ export interface SeverityLevel {
1024
1024
  * </p>
1025
1025
  * @public
1026
1026
  */
1027
- code?: string;
1027
+ code?: string | undefined;
1028
1028
  /**
1029
1029
  * <p>The name of the severity level that corresponds to the severity level code.</p>
1030
1030
  * <note>
@@ -1059,7 +1059,7 @@ export interface SeverityLevel {
1059
1059
  * severity</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
1060
1060
  * @public
1061
1061
  */
1062
- name?: string;
1062
+ name?: string | undefined;
1063
1063
  }
1064
1064
  /**
1065
1065
  * <p>The list of severity levels returned by the <a>DescribeSeverityLevels</a>
@@ -1072,7 +1072,7 @@ export interface DescribeSeverityLevelsResponse {
1072
1072
  * defined by your service level agreement with Amazon Web Services.</p>
1073
1073
  * @public
1074
1074
  */
1075
- severityLevels?: SeverityLevel[];
1075
+ severityLevels?: SeverityLevel[] | undefined;
1076
1076
  }
1077
1077
  /**
1078
1078
  * @public
@@ -1112,21 +1112,21 @@ export interface SupportedLanguage {
1112
1112
  * </p>
1113
1113
  * @public
1114
1114
  */
1115
- code?: string;
1115
+ code?: string | undefined;
1116
1116
  /**
1117
1117
  * <p>
1118
1118
  * Full language description e.g. <code>ENGLISH</code>
1119
1119
  * </p>
1120
1120
  * @public
1121
1121
  */
1122
- language?: string;
1122
+ language?: string | undefined;
1123
1123
  /**
1124
1124
  * <p>
1125
1125
  * Language display value e.g. <code>ENGLISH</code>
1126
1126
  * </p>
1127
1127
  * @public
1128
1128
  */
1129
- display?: string;
1129
+ display?: string | undefined;
1130
1130
  }
1131
1131
  /**
1132
1132
  * @public
@@ -1138,7 +1138,7 @@ export interface DescribeSupportedLanguagesResponse {
1138
1138
  * </p>
1139
1139
  * @public
1140
1140
  */
1141
- supportedLanguages?: SupportedLanguage[];
1141
+ supportedLanguages?: SupportedLanguage[] | undefined;
1142
1142
  }
1143
1143
  /**
1144
1144
  * @public
@@ -1275,7 +1275,7 @@ export interface DescribeTrustedAdvisorCheckResultRequest {
1275
1275
  * </ul>
1276
1276
  * @public
1277
1277
  */
1278
- language?: string;
1278
+ language?: string | undefined;
1279
1279
  }
1280
1280
  /**
1281
1281
  * <p>The estimated cost savings that might be realized if the recommended operations are
@@ -1307,7 +1307,7 @@ export interface TrustedAdvisorCategorySpecificSummary {
1307
1307
  * Optimizing category.</p>
1308
1308
  * @public
1309
1309
  */
1310
- costOptimizing?: TrustedAdvisorCostOptimizingSummary;
1310
+ costOptimizing?: TrustedAdvisorCostOptimizingSummary | undefined;
1311
1311
  }
1312
1312
  /**
1313
1313
  * <p>Contains information about a resource identified by a Trusted Advisor check.</p>
@@ -1323,7 +1323,7 @@ export interface TrustedAdvisorResourceDetail {
1323
1323
  * <p>The Amazon Web Services Region in which the identified resource is located.</p>
1324
1324
  * @public
1325
1325
  */
1326
- region?: string;
1326
+ region?: string | undefined;
1327
1327
  /**
1328
1328
  * <p>The unique identifier for the identified resource.</p>
1329
1329
  * @public
@@ -1334,7 +1334,7 @@ export interface TrustedAdvisorResourceDetail {
1334
1334
  * suppressed by the user.</p>
1335
1335
  * @public
1336
1336
  */
1337
- isSuppressed?: boolean;
1337
+ isSuppressed?: boolean | undefined;
1338
1338
  /**
1339
1339
  * <p>Additional information about the identified resource. The exact metadata and its order
1340
1340
  * can be obtained by inspecting the <a>TrustedAdvisorCheckDescription</a>
@@ -1419,7 +1419,7 @@ export interface DescribeTrustedAdvisorCheckResultResponse {
1419
1419
  * <p>The detailed results of the Trusted Advisor check.</p>
1420
1420
  * @public
1421
1421
  */
1422
- result?: TrustedAdvisorCheckResult;
1422
+ result?: TrustedAdvisorCheckResult | undefined;
1423
1423
  }
1424
1424
  /**
1425
1425
  * @public
@@ -1561,7 +1561,7 @@ export interface TrustedAdvisorCheckSummary {
1561
1561
  * <p>Specifies whether the Trusted Advisor check has flagged resources.</p>
1562
1562
  * @public
1563
1563
  */
1564
- hasFlaggedResources?: boolean;
1564
+ hasFlaggedResources?: boolean | undefined;
1565
1565
  /**
1566
1566
  * <p>Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor <a>DescribeTrustedAdvisorCheckSummaries</a>.</p>
1567
1567
  * @public
@@ -1623,7 +1623,7 @@ export interface ResolveCaseRequest {
1623
1623
  * </p>
1624
1624
  * @public
1625
1625
  */
1626
- caseId?: string;
1626
+ caseId?: string | undefined;
1627
1627
  }
1628
1628
  /**
1629
1629
  * <p>The status of the case returned by the <a>ResolveCase</a> operation.</p>
@@ -1634,11 +1634,11 @@ export interface ResolveCaseResponse {
1634
1634
  * <p>The status of the case when the <a>ResolveCase</a> request was sent.</p>
1635
1635
  * @public
1636
1636
  */
1637
- initialCaseStatus?: string;
1637
+ initialCaseStatus?: string | undefined;
1638
1638
  /**
1639
1639
  * <p>The status of the case after the <a>ResolveCase</a> request was
1640
1640
  * processed.</p>
1641
1641
  * @public
1642
1642
  */
1643
- finalCaseStatus?: string;
1643
+ finalCaseStatus?: string | undefined;
1644
1644
  }
@@ -1,16 +1,16 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { SupportServiceException as __BaseException } from "./SupportServiceException";
3
3
  export interface Attachment {
4
- fileName?: string;
5
- data?: Uint8Array;
4
+ fileName?: string | undefined;
5
+ data?: Uint8Array | undefined;
6
6
  }
7
7
  export interface AddAttachmentsToSetRequest {
8
- attachmentSetId?: string;
8
+ attachmentSetId?: string | undefined;
9
9
  attachments: Attachment[] | undefined;
10
10
  }
11
11
  export interface AddAttachmentsToSetResponse {
12
- attachmentSetId?: string;
13
- expiryTime?: string;
12
+ attachmentSetId?: string | undefined;
13
+ expiryTime?: string | undefined;
14
14
  }
15
15
  export declare class AttachmentLimitExceeded extends __BaseException {
16
16
  readonly name: "AttachmentLimitExceeded";
@@ -48,13 +48,13 @@ export declare class InternalServerError extends __BaseException {
48
48
  );
49
49
  }
50
50
  export interface AddCommunicationToCaseRequest {
51
- caseId?: string;
51
+ caseId?: string | undefined;
52
52
  communicationBody: string | undefined;
53
- ccEmailAddresses?: string[];
54
- attachmentSetId?: string;
53
+ ccEmailAddresses?: string[] | undefined;
54
+ attachmentSetId?: string | undefined;
55
55
  }
56
56
  export interface AddCommunicationToCaseResponse {
57
- result?: boolean;
57
+ result?: boolean | undefined;
58
58
  }
59
59
  export declare class CaseIdNotFound extends __BaseException {
60
60
  readonly name: "CaseIdNotFound";
@@ -62,8 +62,8 @@ export declare class CaseIdNotFound extends __BaseException {
62
62
  constructor(opts: __ExceptionOptionType<CaseIdNotFound, __BaseException>);
63
63
  }
64
64
  export interface AttachmentDetails {
65
- attachmentId?: string;
66
- fileName?: string;
65
+ attachmentId?: string | undefined;
66
+ fileName?: string | undefined;
67
67
  }
68
68
  export declare class AttachmentIdNotFound extends __BaseException {
69
69
  readonly name: "AttachmentIdNotFound";
@@ -81,17 +81,17 @@ export declare class CaseCreationLimitExceeded extends __BaseException {
81
81
  }
82
82
  export interface CreateCaseRequest {
83
83
  subject: string | undefined;
84
- serviceCode?: string;
85
- severityCode?: string;
86
- categoryCode?: string;
84
+ serviceCode?: string | undefined;
85
+ severityCode?: string | undefined;
86
+ categoryCode?: string | undefined;
87
87
  communicationBody: string | undefined;
88
- ccEmailAddresses?: string[];
89
- language?: string;
90
- issueType?: string;
91
- attachmentSetId?: string;
88
+ ccEmailAddresses?: string[] | undefined;
89
+ language?: string | undefined;
90
+ issueType?: string | undefined;
91
+ attachmentSetId?: string | undefined;
92
92
  }
93
93
  export interface CreateCaseResponse {
94
- caseId?: string;
94
+ caseId?: string | undefined;
95
95
  }
96
96
  export declare class DescribeAttachmentLimitExceeded extends __BaseException {
97
97
  readonly name: "DescribeAttachmentLimitExceeded";
@@ -107,58 +107,58 @@ export interface DescribeAttachmentRequest {
107
107
  attachmentId: string | undefined;
108
108
  }
109
109
  export interface DescribeAttachmentResponse {
110
- attachment?: Attachment;
110
+ attachment?: Attachment | undefined;
111
111
  }
112
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;
113
+ caseIdList?: string[] | undefined;
114
+ displayId?: string | undefined;
115
+ afterTime?: string | undefined;
116
+ beforeTime?: string | undefined;
117
+ includeResolvedCases?: boolean | undefined;
118
+ nextToken?: string | undefined;
119
+ maxResults?: number | undefined;
120
+ language?: string | undefined;
121
+ includeCommunications?: boolean | undefined;
122
122
  }
123
123
  export interface Communication {
124
- caseId?: string;
125
- body?: string;
126
- submittedBy?: string;
127
- timeCreated?: string;
128
- attachmentSet?: AttachmentDetails[];
124
+ caseId?: string | undefined;
125
+ body?: string | undefined;
126
+ submittedBy?: string | undefined;
127
+ timeCreated?: string | undefined;
128
+ attachmentSet?: AttachmentDetails[] | undefined;
129
129
  }
130
130
  export interface RecentCaseCommunications {
131
- communications?: Communication[];
132
- nextToken?: string;
131
+ communications?: Communication[] | undefined;
132
+ nextToken?: string | undefined;
133
133
  }
134
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;
135
+ caseId?: string | undefined;
136
+ displayId?: string | undefined;
137
+ subject?: string | undefined;
138
+ status?: string | undefined;
139
+ serviceCode?: string | undefined;
140
+ categoryCode?: string | undefined;
141
+ severityCode?: string | undefined;
142
+ submittedBy?: string | undefined;
143
+ timeCreated?: string | undefined;
144
+ recentCommunications?: RecentCaseCommunications | undefined;
145
+ ccEmailAddresses?: string[] | undefined;
146
+ language?: string | undefined;
147
147
  }
148
148
  export interface DescribeCasesResponse {
149
- cases?: CaseDetails[];
150
- nextToken?: string;
149
+ cases?: CaseDetails[] | undefined;
150
+ nextToken?: string | undefined;
151
151
  }
152
152
  export interface DescribeCommunicationsRequest {
153
153
  caseId: string | undefined;
154
- beforeTime?: string;
155
- afterTime?: string;
156
- nextToken?: string;
157
- maxResults?: number;
154
+ beforeTime?: string | undefined;
155
+ afterTime?: string | undefined;
156
+ nextToken?: string | undefined;
157
+ maxResults?: number | undefined;
158
158
  }
159
159
  export interface DescribeCommunicationsResponse {
160
- communications?: Communication[];
161
- nextToken?: string;
160
+ communications?: Communication[] | undefined;
161
+ nextToken?: string | undefined;
162
162
  }
163
163
  export interface DescribeCreateCaseOptionsRequest {
164
164
  issueType: string | undefined;
@@ -167,21 +167,21 @@ export interface DescribeCreateCaseOptionsRequest {
167
167
  categoryCode: string | undefined;
168
168
  }
169
169
  export interface DateInterval {
170
- startDateTime?: string;
171
- endDateTime?: string;
170
+ startDateTime?: string | undefined;
171
+ endDateTime?: string | undefined;
172
172
  }
173
173
  export interface SupportedHour {
174
- startTime?: string;
175
- endTime?: string;
174
+ startTime?: string | undefined;
175
+ endTime?: string | undefined;
176
176
  }
177
177
  export interface CommunicationTypeOptions {
178
- type?: string;
179
- supportedHours?: SupportedHour[];
180
- datesWithoutSupport?: DateInterval[];
178
+ type?: string | undefined;
179
+ supportedHours?: SupportedHour[] | undefined;
180
+ datesWithoutSupport?: DateInterval[] | undefined;
181
181
  }
182
182
  export interface DescribeCreateCaseOptionsResponse {
183
- languageAvailability?: string;
184
- communicationTypes?: CommunicationTypeOptions[];
183
+ languageAvailability?: string | undefined;
184
+ communicationTypes?: CommunicationTypeOptions[] | undefined;
185
185
  }
186
186
  export declare class ThrottlingException extends __BaseException {
187
187
  readonly name: "ThrottlingException";
@@ -191,30 +191,30 @@ export declare class ThrottlingException extends __BaseException {
191
191
  );
192
192
  }
193
193
  export interface DescribeServicesRequest {
194
- serviceCodeList?: string[];
195
- language?: string;
194
+ serviceCodeList?: string[] | undefined;
195
+ language?: string | undefined;
196
196
  }
197
197
  export interface Category {
198
- code?: string;
199
- name?: string;
198
+ code?: string | undefined;
199
+ name?: string | undefined;
200
200
  }
201
201
  export interface Service {
202
- code?: string;
203
- name?: string;
204
- categories?: Category[];
202
+ code?: string | undefined;
203
+ name?: string | undefined;
204
+ categories?: Category[] | undefined;
205
205
  }
206
206
  export interface DescribeServicesResponse {
207
- services?: Service[];
207
+ services?: Service[] | undefined;
208
208
  }
209
209
  export interface DescribeSeverityLevelsRequest {
210
- language?: string;
210
+ language?: string | undefined;
211
211
  }
212
212
  export interface SeverityLevel {
213
- code?: string;
214
- name?: string;
213
+ code?: string | undefined;
214
+ name?: string | undefined;
215
215
  }
216
216
  export interface DescribeSeverityLevelsResponse {
217
- severityLevels?: SeverityLevel[];
217
+ severityLevels?: SeverityLevel[] | undefined;
218
218
  }
219
219
  export interface DescribeSupportedLanguagesRequest {
220
220
  issueType: string | undefined;
@@ -222,12 +222,12 @@ export interface DescribeSupportedLanguagesRequest {
222
222
  categoryCode: string | undefined;
223
223
  }
224
224
  export interface SupportedLanguage {
225
- code?: string;
226
- language?: string;
227
- display?: string;
225
+ code?: string | undefined;
226
+ language?: string | undefined;
227
+ display?: string | undefined;
228
228
  }
229
229
  export interface DescribeSupportedLanguagesResponse {
230
- supportedLanguages?: SupportedLanguage[];
230
+ supportedLanguages?: SupportedLanguage[] | undefined;
231
231
  }
232
232
  export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
233
233
  checkIds: string[] | undefined;
@@ -242,20 +242,20 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesResponse {
242
242
  }
243
243
  export interface DescribeTrustedAdvisorCheckResultRequest {
244
244
  checkId: string | undefined;
245
- language?: string;
245
+ language?: string | undefined;
246
246
  }
247
247
  export interface TrustedAdvisorCostOptimizingSummary {
248
248
  estimatedMonthlySavings: number | undefined;
249
249
  estimatedPercentMonthlySavings: number | undefined;
250
250
  }
251
251
  export interface TrustedAdvisorCategorySpecificSummary {
252
- costOptimizing?: TrustedAdvisorCostOptimizingSummary;
252
+ costOptimizing?: TrustedAdvisorCostOptimizingSummary | undefined;
253
253
  }
254
254
  export interface TrustedAdvisorResourceDetail {
255
255
  status: string | undefined;
256
- region?: string;
256
+ region?: string | undefined;
257
257
  resourceId: string | undefined;
258
- isSuppressed?: boolean;
258
+ isSuppressed?: boolean | undefined;
259
259
  metadata: string[] | undefined;
260
260
  }
261
261
  export interface TrustedAdvisorResourcesSummary {
@@ -273,7 +273,7 @@ export interface TrustedAdvisorCheckResult {
273
273
  flaggedResources: TrustedAdvisorResourceDetail[] | undefined;
274
274
  }
275
275
  export interface DescribeTrustedAdvisorCheckResultResponse {
276
- result?: TrustedAdvisorCheckResult;
276
+ result?: TrustedAdvisorCheckResult | undefined;
277
277
  }
278
278
  export interface DescribeTrustedAdvisorChecksRequest {
279
279
  language: string | undefined;
@@ -295,7 +295,7 @@ export interface TrustedAdvisorCheckSummary {
295
295
  checkId: string | undefined;
296
296
  timestamp: string | undefined;
297
297
  status: string | undefined;
298
- hasFlaggedResources?: boolean;
298
+ hasFlaggedResources?: boolean | undefined;
299
299
  resourcesSummary: TrustedAdvisorResourcesSummary | undefined;
300
300
  categorySpecificSummary: TrustedAdvisorCategorySpecificSummary | undefined;
301
301
  }
@@ -309,9 +309,9 @@ export interface RefreshTrustedAdvisorCheckResponse {
309
309
  status: TrustedAdvisorCheckRefreshStatus | undefined;
310
310
  }
311
311
  export interface ResolveCaseRequest {
312
- caseId?: string;
312
+ caseId?: string | undefined;
313
313
  }
314
314
  export interface ResolveCaseResponse {
315
- initialCaseStatus?: string;
316
- finalCaseStatus?: string;
315
+ initialCaseStatus?: string | undefined;
316
+ finalCaseStatus?: string | undefined;
317
317
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-support",
3
3
  "description": "AWS SDK for JavaScript Support Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-support",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },