@aws-sdk/client-support 3.43.0 → 3.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +17 -17
- package/dist-cjs/endpoints.js +1 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-types/Support.d.ts +91 -91
- package/dist-types/SupportClient.d.ts +17 -17
- package/dist-types/commands/AddAttachmentsToSetCommand.d.ts +4 -4
- package/dist-types/commands/AddCommunicationToCaseCommand.d.ts +5 -5
- package/dist-types/commands/CreateCaseCommand.d.ts +11 -11
- package/dist-types/commands/DescribeAttachmentCommand.d.ts +4 -4
- package/dist-types/commands/DescribeCasesCommand.d.ts +4 -4
- package/dist-types/commands/DescribeCommunicationsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeServicesCommand.d.ts +7 -7
- package/dist-types/commands/DescribeSeverityLevelsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +5 -5
- package/dist-types/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +5 -5
- package/dist-types/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +5 -5
- package/dist-types/commands/DescribeTrustedAdvisorChecksCommand.d.ts +7 -7
- package/dist-types/commands/RefreshTrustedAdvisorCheckCommand.d.ts +5 -5
- package/dist-types/commands/ResolveCaseCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +51 -51
- package/package.json +5 -5
|
@@ -276,45 +276,45 @@ export declare namespace CaseCreationLimitExceeded {
|
|
|
276
276
|
}
|
|
277
277
|
export interface CreateCaseRequest {
|
|
278
278
|
/**
|
|
279
|
-
* <p>The title of the support case. The title appears in the <b>Subject</b> field on the
|
|
279
|
+
* <p>The title of the support case. The title appears in the <b>Subject</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>
|
|
280
280
|
*/
|
|
281
281
|
subject: string | undefined;
|
|
282
282
|
/**
|
|
283
|
-
* <p>The code for the
|
|
283
|
+
* <p>The code for the Amazon Web Services service. You can use the <a>DescribeServices</a>
|
|
284
284
|
* operation to get the possible <code>serviceCode</code> values.</p>
|
|
285
285
|
*/
|
|
286
286
|
serviceCode?: string;
|
|
287
287
|
/**
|
|
288
288
|
* <p>A value that indicates the urgency of the case. This value determines the response
|
|
289
|
-
* time according to your service level agreement with
|
|
289
|
+
* 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
|
|
290
290
|
* <code>severityCode</code>. </p>
|
|
291
291
|
* <p>For more information, see <a>SeverityLevel</a> and <a href="https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#choosing-severity">Choosing a
|
|
292
|
-
* Severity</a> in the <i>
|
|
292
|
+
* Severity</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
|
|
293
293
|
* <note>
|
|
294
|
-
* <p>The availability of severity levels depends on the support plan for the
|
|
295
|
-
* account.</p>
|
|
294
|
+
* <p>The availability of severity levels depends on the support plan for the
|
|
295
|
+
* Amazon Web Services account.</p>
|
|
296
296
|
* </note>
|
|
297
297
|
*/
|
|
298
298
|
severityCode?: string;
|
|
299
299
|
/**
|
|
300
300
|
* <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
|
|
301
|
-
*
|
|
301
|
+
* Amazon Web Services service defines its own set of category codes.</p>
|
|
302
302
|
*/
|
|
303
303
|
categoryCode?: string;
|
|
304
304
|
/**
|
|
305
305
|
* <p>The communication body text that describes the issue. This text appears in the
|
|
306
|
-
* <b>Description</b> field on the
|
|
306
|
+
* <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>
|
|
307
307
|
*/
|
|
308
308
|
communicationBody: string | undefined;
|
|
309
309
|
/**
|
|
310
|
-
* <p>A list of email addresses that
|
|
311
|
-
* identifies the account that creates the case when you specify your
|
|
312
|
-
* HTTP POST method or use the <a href="http://aws.amazon.com/tools/">
|
|
310
|
+
* <p>A list of email addresses that Amazon Web Services Support copies on case correspondence. Amazon Web Services Support
|
|
311
|
+
* identifies the account that creates the case when you specify your Amazon Web Services credentials in an
|
|
312
|
+
* HTTP POST method or use the <a href="http://aws.amazon.com/tools/">Amazon Web Services SDKs</a>.
|
|
313
313
|
* </p>
|
|
314
314
|
*/
|
|
315
315
|
ccEmailAddresses?: string[];
|
|
316
316
|
/**
|
|
317
|
-
* <p>The language in which
|
|
317
|
+
* <p>The language in which Amazon Web Services Support handles the case. You must specify the ISO 639-1
|
|
318
318
|
* code for the <code>language</code> parameter if you want support in that language.
|
|
319
319
|
* Currently, English ("en") and Japanese ("ja") are supported.</p>
|
|
320
320
|
*/
|
|
@@ -412,7 +412,7 @@ export interface DescribeCasesRequest {
|
|
|
412
412
|
*/
|
|
413
413
|
caseIdList?: string[];
|
|
414
414
|
/**
|
|
415
|
-
* <p>The ID displayed for a case in the
|
|
415
|
+
* <p>The ID displayed for a case in the Amazon Web Services Support Center user interface.</p>
|
|
416
416
|
*/
|
|
417
417
|
displayId?: string;
|
|
418
418
|
/**
|
|
@@ -439,7 +439,7 @@ export interface DescribeCasesRequest {
|
|
|
439
439
|
*/
|
|
440
440
|
maxResults?: number;
|
|
441
441
|
/**
|
|
442
|
-
* <p>The ISO 639-1 code for the language in which
|
|
442
|
+
* <p>The ISO 639-1 code for the language in which Amazon Web Services provides support. Amazon Web Services Support
|
|
443
443
|
* currently supports English ("en") and Japanese ("ja"). Language parameters must be
|
|
444
444
|
* passed explicitly for operations that take them.</p>
|
|
445
445
|
*/
|
|
@@ -470,13 +470,13 @@ export interface Communication {
|
|
|
470
470
|
*/
|
|
471
471
|
caseId?: string;
|
|
472
472
|
/**
|
|
473
|
-
* <p>The text of the communication between the customer and
|
|
473
|
+
* <p>The text of the communication between the customer and Amazon Web Services Support.</p>
|
|
474
474
|
*/
|
|
475
475
|
body?: string;
|
|
476
476
|
/**
|
|
477
477
|
* <p>The identity of the account that submitted, or responded to, the support case.
|
|
478
478
|
* Customer entries include the role or IAM user as well as the email address. For example,
|
|
479
|
-
* "AdminRole (Role) <janedoe@example.com>. Entries from the
|
|
479
|
+
* "AdminRole (Role) <janedoe@example.com>. Entries from the Amazon Web Services Support team display
|
|
480
480
|
* "Amazon Web Services," and don't show an email address.
|
|
481
481
|
* </p>
|
|
482
482
|
*/
|
|
@@ -535,12 +535,12 @@ export declare namespace RecentCaseCommunications {
|
|
|
535
535
|
* <li>
|
|
536
536
|
* <p>
|
|
537
537
|
* <b>displayId</b> - The identifier for the case on pages
|
|
538
|
-
* in the
|
|
538
|
+
* in the Amazon Web Services Support Center.</p>
|
|
539
539
|
* </li>
|
|
540
540
|
* <li>
|
|
541
541
|
* <p>
|
|
542
542
|
* <b>language</b> - The ISO 639-1 code for the language
|
|
543
|
-
* in which
|
|
543
|
+
* in which Amazon Web Services provides support. Amazon Web Services Support currently supports English ("en") and
|
|
544
544
|
* Japanese ("ja"). Language parameters must be passed explicitly for operations
|
|
545
545
|
* that take them.</p>
|
|
546
546
|
* </li>
|
|
@@ -557,7 +557,7 @@ export declare namespace RecentCaseCommunications {
|
|
|
557
557
|
* </li>
|
|
558
558
|
* <li>
|
|
559
559
|
* <p>
|
|
560
|
-
* <b>serviceCode</b> - The identifier for the
|
|
560
|
+
* <b>serviceCode</b> - The identifier for the Amazon Web Services service
|
|
561
561
|
* that corresponds to the service code defined in the call to <a>DescribeServices</a>.</p>
|
|
562
562
|
* </li>
|
|
563
563
|
* <li>
|
|
@@ -569,7 +569,7 @@ export declare namespace RecentCaseCommunications {
|
|
|
569
569
|
* </li>
|
|
570
570
|
* <li>
|
|
571
571
|
* <p>
|
|
572
|
-
* <b>status</b> - The status of the case in the
|
|
572
|
+
* <b>status</b> - The status of the case in the Amazon Web Services Support Center. Valid values:</p>
|
|
573
573
|
* <ul>
|
|
574
574
|
* <li>
|
|
575
575
|
* <p>
|
|
@@ -628,12 +628,12 @@ export interface CaseDetails {
|
|
|
628
628
|
*/
|
|
629
629
|
caseId?: string;
|
|
630
630
|
/**
|
|
631
|
-
* <p>The ID displayed for the case in the
|
|
631
|
+
* <p>The ID displayed for the case in the Amazon Web Services Support Center. This is a numeric
|
|
632
632
|
* string.</p>
|
|
633
633
|
*/
|
|
634
634
|
displayId?: string;
|
|
635
635
|
/**
|
|
636
|
-
* <p>The subject line for the case in the
|
|
636
|
+
* <p>The subject line for the case in the Amazon Web Services Support Center.</p>
|
|
637
637
|
*/
|
|
638
638
|
subject?: string;
|
|
639
639
|
/**
|
|
@@ -674,7 +674,7 @@ export interface CaseDetails {
|
|
|
674
674
|
*/
|
|
675
675
|
status?: string;
|
|
676
676
|
/**
|
|
677
|
-
* <p>The code for the
|
|
677
|
+
* <p>The code for the Amazon Web Services service. You can get a list of codes and the corresponding
|
|
678
678
|
* service names by calling <a>DescribeServices</a>.</p>
|
|
679
679
|
*/
|
|
680
680
|
serviceCode?: string;
|
|
@@ -691,11 +691,11 @@ export interface CaseDetails {
|
|
|
691
691
|
*/
|
|
692
692
|
submittedBy?: string;
|
|
693
693
|
/**
|
|
694
|
-
* <p>The time that the case was created in the
|
|
694
|
+
* <p>The time that the case was created in the Amazon Web Services Support Center.</p>
|
|
695
695
|
*/
|
|
696
696
|
timeCreated?: string;
|
|
697
697
|
/**
|
|
698
|
-
* <p>The five most recent communications between you and
|
|
698
|
+
* <p>The five most recent communications between you and Amazon Web Services Support Center, including the
|
|
699
699
|
* IDs of any attachments to the communications. Also includes a <code>nextToken</code>
|
|
700
700
|
* that you can use to retrieve earlier communications.</p>
|
|
701
701
|
*/
|
|
@@ -705,7 +705,7 @@ export interface CaseDetails {
|
|
|
705
705
|
*/
|
|
706
706
|
ccEmailAddresses?: string[];
|
|
707
707
|
/**
|
|
708
|
-
* <p>The ISO 639-1 code for the language in which
|
|
708
|
+
* <p>The ISO 639-1 code for the language in which Amazon Web Services provides support. Amazon Web Services Support
|
|
709
709
|
* currently supports English ("en") and Japanese ("ja"). Language parameters must be
|
|
710
710
|
* passed explicitly for operations that take them.</p>
|
|
711
711
|
*/
|
|
@@ -793,11 +793,11 @@ export declare namespace DescribeCommunicationsResponse {
|
|
|
793
793
|
}
|
|
794
794
|
export interface DescribeServicesRequest {
|
|
795
795
|
/**
|
|
796
|
-
* <p>A JSON-formatted list of service codes available for
|
|
796
|
+
* <p>A JSON-formatted list of service codes available for Amazon Web Services services.</p>
|
|
797
797
|
*/
|
|
798
798
|
serviceCodeList?: string[];
|
|
799
799
|
/**
|
|
800
|
-
* <p>The ISO 639-1 code for the language in which
|
|
800
|
+
* <p>The ISO 639-1 code for the language in which Amazon Web Services provides support. Amazon Web Services Support
|
|
801
801
|
* currently supports English ("en") and Japanese ("ja"). Language parameters must be
|
|
802
802
|
* passed explicitly for operations that take them.</p>
|
|
803
803
|
*/
|
|
@@ -812,7 +812,7 @@ export declare namespace DescribeServicesRequest {
|
|
|
812
812
|
/**
|
|
813
813
|
* <p>A JSON-formatted name/value pair that represents the category name and category code
|
|
814
814
|
* of the problem, selected from the <a>DescribeServices</a> response for each
|
|
815
|
-
*
|
|
815
|
+
* Amazon Web Services service.</p>
|
|
816
816
|
*/
|
|
817
817
|
export interface Category {
|
|
818
818
|
/**
|
|
@@ -831,24 +831,24 @@ export declare namespace Category {
|
|
|
831
831
|
const filterSensitiveLog: (obj: Category) => any;
|
|
832
832
|
}
|
|
833
833
|
/**
|
|
834
|
-
* <p>Information about an
|
|
834
|
+
* <p>Information about an Amazon Web Services service returned by the <a>DescribeServices</a>
|
|
835
835
|
* operation.</p>
|
|
836
836
|
*/
|
|
837
837
|
export interface Service {
|
|
838
838
|
/**
|
|
839
|
-
* <p>The code for an
|
|
839
|
+
* <p>The code for an Amazon Web Services service returned by the <a>DescribeServices</a>
|
|
840
840
|
* response. The <code>name</code> element contains the corresponding friendly name.</p>
|
|
841
841
|
*/
|
|
842
842
|
code?: string;
|
|
843
843
|
/**
|
|
844
|
-
* <p>The friendly name for an
|
|
844
|
+
* <p>The friendly name for an Amazon Web Services service. The <code>code</code> element contains the
|
|
845
845
|
* corresponding code.</p>
|
|
846
846
|
*/
|
|
847
847
|
name?: string;
|
|
848
848
|
/**
|
|
849
849
|
* <p>A list of categories that describe the type of support issue a case describes.
|
|
850
850
|
* Categories consist of a category name and a category code. Category names and codes are
|
|
851
|
-
* passed to
|
|
851
|
+
* passed to Amazon Web Services Support when you call <a>CreateCase</a>.</p>
|
|
852
852
|
*/
|
|
853
853
|
categories?: Category[];
|
|
854
854
|
}
|
|
@@ -859,12 +859,12 @@ export declare namespace Service {
|
|
|
859
859
|
const filterSensitiveLog: (obj: Service) => any;
|
|
860
860
|
}
|
|
861
861
|
/**
|
|
862
|
-
* <p>The list of
|
|
862
|
+
* <p>The list of Amazon Web Services services returned by the <a>DescribeServices</a>
|
|
863
863
|
* operation.</p>
|
|
864
864
|
*/
|
|
865
865
|
export interface DescribeServicesResponse {
|
|
866
866
|
/**
|
|
867
|
-
* <p>A JSON-formatted list of
|
|
867
|
+
* <p>A JSON-formatted list of Amazon Web Services services.</p>
|
|
868
868
|
*/
|
|
869
869
|
services?: Service[];
|
|
870
870
|
}
|
|
@@ -876,7 +876,7 @@ export declare namespace DescribeServicesResponse {
|
|
|
876
876
|
}
|
|
877
877
|
export interface DescribeSeverityLevelsRequest {
|
|
878
878
|
/**
|
|
879
|
-
* <p>The ISO 639-1 code for the language in which
|
|
879
|
+
* <p>The ISO 639-1 code for the language in which Amazon Web Services provides support. Amazon Web Services Support
|
|
880
880
|
* currently supports English ("en") and Japanese ("ja"). Language parameters must be
|
|
881
881
|
* passed explicitly for operations that take them.</p>
|
|
882
882
|
*/
|
|
@@ -892,7 +892,7 @@ export declare namespace DescribeSeverityLevelsRequest {
|
|
|
892
892
|
* <p>A code and name pair that represents the severity level of a support case. The
|
|
893
893
|
* available values depend on the support plan for the account. For more information, see
|
|
894
894
|
* <a href="https://docs.aws.amazon.com/awssupport/latest/user/case-management.html#choosing-severity">Choosing a
|
|
895
|
-
* severity</a> in the <i>
|
|
895
|
+
* severity</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
|
|
896
896
|
*/
|
|
897
897
|
export interface SeverityLevel {
|
|
898
898
|
/**
|
|
@@ -906,7 +906,7 @@ export interface SeverityLevel {
|
|
|
906
906
|
* <p>The name of the severity level that corresponds to the severity level code.</p>
|
|
907
907
|
* <note>
|
|
908
908
|
* <p>The values returned by the API are different from the values that appear in the
|
|
909
|
-
*
|
|
909
|
+
* Amazon Web Services Support Center. For example, the API uses the code <code>low</code>, but the name
|
|
910
910
|
* appears as General guidance in Support Center. </p>
|
|
911
911
|
* <p>The following are the API code names and how they appear in the console:</p>
|
|
912
912
|
* <ul>
|
|
@@ -933,7 +933,7 @@ export interface SeverityLevel {
|
|
|
933
933
|
* </ul>
|
|
934
934
|
* </note>
|
|
935
935
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/case-management.html#choosing-severity">Choosing a
|
|
936
|
-
* severity</a> in the <i>
|
|
936
|
+
* severity</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
|
|
937
937
|
*/
|
|
938
938
|
name?: string;
|
|
939
939
|
}
|
|
@@ -950,7 +950,7 @@ export declare namespace SeverityLevel {
|
|
|
950
950
|
export interface DescribeSeverityLevelsResponse {
|
|
951
951
|
/**
|
|
952
952
|
* <p>The available severity levels for the support case. Available severity levels are
|
|
953
|
-
* defined by your service level agreement with
|
|
953
|
+
* defined by your service level agreement with Amazon Web Services.</p>
|
|
954
954
|
*/
|
|
955
955
|
severityLevels?: SeverityLevel[];
|
|
956
956
|
}
|
|
@@ -1050,7 +1050,7 @@ export interface DescribeTrustedAdvisorCheckResultRequest {
|
|
|
1050
1050
|
*/
|
|
1051
1051
|
checkId: string | undefined;
|
|
1052
1052
|
/**
|
|
1053
|
-
* <p>The ISO 639-1 code for the language in which
|
|
1053
|
+
* <p>The ISO 639-1 code for the language in which Amazon Web Services provides support. Amazon Web Services Support
|
|
1054
1054
|
* currently supports English ("en") and Japanese ("ja"). Language parameters must be
|
|
1055
1055
|
* passed explicitly for operations that take them.</p>
|
|
1056
1056
|
*/
|
|
@@ -1109,7 +1109,7 @@ export interface TrustedAdvisorResourceDetail {
|
|
|
1109
1109
|
*/
|
|
1110
1110
|
status: string | undefined;
|
|
1111
1111
|
/**
|
|
1112
|
-
* <p>The
|
|
1112
|
+
* <p>The Amazon Web Services Region in which the identified resource is located.</p>
|
|
1113
1113
|
*/
|
|
1114
1114
|
region?: string;
|
|
1115
1115
|
/**
|
|
@@ -1117,7 +1117,7 @@ export interface TrustedAdvisorResourceDetail {
|
|
|
1117
1117
|
*/
|
|
1118
1118
|
resourceId: string | undefined;
|
|
1119
1119
|
/**
|
|
1120
|
-
* <p>Specifies whether the
|
|
1120
|
+
* <p>Specifies whether the Amazon Web Services resource was ignored by Trusted Advisor because it was
|
|
1121
1121
|
* marked as suppressed by the user.</p>
|
|
1122
1122
|
*/
|
|
1123
1123
|
isSuppressed?: boolean;
|
|
@@ -1136,25 +1136,25 @@ export declare namespace TrustedAdvisorResourceDetail {
|
|
|
1136
1136
|
const filterSensitiveLog: (obj: TrustedAdvisorResourceDetail) => any;
|
|
1137
1137
|
}
|
|
1138
1138
|
/**
|
|
1139
|
-
* <p>Details about
|
|
1139
|
+
* <p>Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor <a>DescribeTrustedAdvisorCheckSummaries</a>.</p>
|
|
1140
1140
|
*/
|
|
1141
1141
|
export interface TrustedAdvisorResourcesSummary {
|
|
1142
1142
|
/**
|
|
1143
|
-
* <p>The number of
|
|
1143
|
+
* <p>The number of Amazon Web Services resources that were analyzed by the Trusted Advisor check.</p>
|
|
1144
1144
|
*/
|
|
1145
1145
|
resourcesProcessed: number | undefined;
|
|
1146
1146
|
/**
|
|
1147
|
-
* <p>The number of
|
|
1147
|
+
* <p>The number of Amazon Web Services resources that were flagged (listed) by the Trusted Advisor
|
|
1148
1148
|
* check.</p>
|
|
1149
1149
|
*/
|
|
1150
1150
|
resourcesFlagged: number | undefined;
|
|
1151
1151
|
/**
|
|
1152
|
-
* <p>The number of
|
|
1152
|
+
* <p>The number of Amazon Web Services resources ignored by Trusted Advisor because information was
|
|
1153
1153
|
* unavailable.</p>
|
|
1154
1154
|
*/
|
|
1155
1155
|
resourcesIgnored: number | undefined;
|
|
1156
1156
|
/**
|
|
1157
|
-
* <p>The number of
|
|
1157
|
+
* <p>The number of Amazon Web Services resources ignored by Trusted Advisor because they were marked as
|
|
1158
1158
|
* suppressed by the user.</p>
|
|
1159
1159
|
*/
|
|
1160
1160
|
resourcesSuppressed: number | undefined;
|
|
@@ -1183,7 +1183,7 @@ export interface TrustedAdvisorCheckResult {
|
|
|
1183
1183
|
*/
|
|
1184
1184
|
status: string | undefined;
|
|
1185
1185
|
/**
|
|
1186
|
-
* <p>Details about
|
|
1186
|
+
* <p>Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor <a>DescribeTrustedAdvisorCheckSummaries</a>.</p>
|
|
1187
1187
|
*/
|
|
1188
1188
|
resourcesSummary: TrustedAdvisorResourcesSummary | undefined;
|
|
1189
1189
|
/**
|
|
@@ -1219,7 +1219,7 @@ export declare namespace DescribeTrustedAdvisorCheckResultResponse {
|
|
|
1219
1219
|
}
|
|
1220
1220
|
export interface DescribeTrustedAdvisorChecksRequest {
|
|
1221
1221
|
/**
|
|
1222
|
-
* <p>The ISO 639-1 code for the language in which
|
|
1222
|
+
* <p>The ISO 639-1 code for the language in which Amazon Web Services provides support. Amazon Web Services Support
|
|
1223
1223
|
* currently supports English ("en") and Japanese ("ja"). Language parameters must be
|
|
1224
1224
|
* passed explicitly for operations that take them.</p>
|
|
1225
1225
|
*/
|
|
@@ -1317,7 +1317,7 @@ export interface TrustedAdvisorCheckSummary {
|
|
|
1317
1317
|
*/
|
|
1318
1318
|
hasFlaggedResources?: boolean;
|
|
1319
1319
|
/**
|
|
1320
|
-
* <p>Details about
|
|
1320
|
+
* <p>Details about Amazon Web Services resources that were analyzed in a call to Trusted Advisor <a>DescribeTrustedAdvisorCheckSummaries</a>.</p>
|
|
1321
1321
|
*/
|
|
1322
1322
|
resourcesSummary: TrustedAdvisorResourcesSummary | undefined;
|
|
1323
1323
|
/**
|
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.
|
|
4
|
+
"version": "3.45.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.45.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.45.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.45.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.40.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
33
|
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.45.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
37
|
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
38
|
"@aws-sdk/node-config-provider": "3.40.0",
|