@aws-sdk/client-support 3.325.0 → 3.327.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.
@@ -54,6 +54,11 @@ export interface AddAttachmentsToSetCommandOutput extends AddAttachmentsToSetRes
54
54
  * };
55
55
  * const command = new AddAttachmentsToSetCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // { // AddAttachmentsToSetResponse
58
+ * // attachmentSetId: "STRING_VALUE",
59
+ * // expiryTime: "STRING_VALUE",
60
+ * // };
61
+ *
57
62
  * ```
58
63
  *
59
64
  * @param AddAttachmentsToSetCommandInput - {@link AddAttachmentsToSetCommandInput}
@@ -80,6 +85,8 @@ export interface AddAttachmentsToSetCommandOutput extends AddAttachmentsToSetRes
80
85
  * @throws {@link InternalServerError} (server fault)
81
86
  * <p>An internal server error occurred.</p>
82
87
  *
88
+ * @throws {@link SupportServiceException}
89
+ * <p>Base exception class for all service exceptions from Support service.</p>
83
90
  *
84
91
  */
85
92
  export declare class AddAttachmentsToSetCommand extends $Command<AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput, SupportClientResolvedConfig> {
@@ -54,6 +54,10 @@ export interface AddCommunicationToCaseCommandOutput extends AddCommunicationToC
54
54
  * };
55
55
  * const command = new AddCommunicationToCaseCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // { // AddCommunicationToCaseResponse
58
+ * // result: true || false,
59
+ * // };
60
+ *
57
61
  * ```
58
62
  *
59
63
  * @param AddCommunicationToCaseCommandInput - {@link AddCommunicationToCaseCommandInput}
@@ -75,6 +79,8 @@ export interface AddCommunicationToCaseCommandOutput extends AddCommunicationToC
75
79
  * @throws {@link InternalServerError} (server fault)
76
80
  * <p>An internal server error occurred.</p>
77
81
  *
82
+ * @throws {@link SupportServiceException}
83
+ * <p>Base exception class for all service exceptions from Support service.</p>
78
84
  *
79
85
  */
80
86
  export declare class AddCommunicationToCaseCommand extends $Command<AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput, SupportClientResolvedConfig> {
@@ -73,6 +73,10 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB
73
73
  * };
74
74
  * const command = new CreateCaseCommand(input);
75
75
  * const response = await client.send(command);
76
+ * // { // CreateCaseResponse
77
+ * // caseId: "STRING_VALUE",
78
+ * // };
79
+ *
76
80
  * ```
77
81
  *
78
82
  * @param CreateCaseCommandInput - {@link CreateCaseCommandInput}
@@ -94,6 +98,8 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB
94
98
  * @throws {@link InternalServerError} (server fault)
95
99
  * <p>An internal server error occurred.</p>
96
100
  *
101
+ * @throws {@link SupportServiceException}
102
+ * <p>Base exception class for all service exceptions from Support service.</p>
97
103
  *
98
104
  */
99
105
  export declare class CreateCaseCommand extends $Command<CreateCaseCommandInput, CreateCaseCommandOutput, SupportClientResolvedConfig> {
@@ -49,6 +49,13 @@ export interface DescribeAttachmentCommandOutput extends DescribeAttachmentRespo
49
49
  * };
50
50
  * const command = new DescribeAttachmentCommand(input);
51
51
  * const response = await client.send(command);
52
+ * // { // DescribeAttachmentResponse
53
+ * // attachment: { // Attachment
54
+ * // fileName: "STRING_VALUE",
55
+ * // data: "BLOB_VALUE",
56
+ * // },
57
+ * // };
58
+ *
52
59
  * ```
53
60
  *
54
61
  * @param DescribeAttachmentCommandInput - {@link DescribeAttachmentCommandInput}
@@ -67,6 +74,8 @@ export interface DescribeAttachmentCommandOutput extends DescribeAttachmentRespo
67
74
  * @throws {@link InternalServerError} (server fault)
68
75
  * <p>An internal server error occurred.</p>
69
76
  *
77
+ * @throws {@link SupportServiceException}
78
+ * <p>Base exception class for all service exceptions from Support service.</p>
70
79
  *
71
80
  */
72
81
  export declare class DescribeAttachmentCommand extends $Command<DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput, SupportClientResolvedConfig> {
@@ -71,6 +71,44 @@ export interface DescribeCasesCommandOutput extends DescribeCasesResponse, __Met
71
71
  * };
72
72
  * const command = new DescribeCasesCommand(input);
73
73
  * const response = await client.send(command);
74
+ * // { // DescribeCasesResponse
75
+ * // cases: [ // CaseList
76
+ * // { // CaseDetails
77
+ * // caseId: "STRING_VALUE",
78
+ * // displayId: "STRING_VALUE",
79
+ * // subject: "STRING_VALUE",
80
+ * // status: "STRING_VALUE",
81
+ * // serviceCode: "STRING_VALUE",
82
+ * // categoryCode: "STRING_VALUE",
83
+ * // severityCode: "STRING_VALUE",
84
+ * // submittedBy: "STRING_VALUE",
85
+ * // timeCreated: "STRING_VALUE",
86
+ * // recentCommunications: { // RecentCaseCommunications
87
+ * // communications: [ // CommunicationList
88
+ * // { // Communication
89
+ * // caseId: "STRING_VALUE",
90
+ * // body: "STRING_VALUE",
91
+ * // submittedBy: "STRING_VALUE",
92
+ * // timeCreated: "STRING_VALUE",
93
+ * // attachmentSet: [ // AttachmentSet
94
+ * // { // AttachmentDetails
95
+ * // attachmentId: "STRING_VALUE",
96
+ * // fileName: "STRING_VALUE",
97
+ * // },
98
+ * // ],
99
+ * // },
100
+ * // ],
101
+ * // nextToken: "STRING_VALUE",
102
+ * // },
103
+ * // ccEmailAddresses: [ // CcEmailAddressList
104
+ * // "STRING_VALUE",
105
+ * // ],
106
+ * // language: "STRING_VALUE",
107
+ * // },
108
+ * // ],
109
+ * // nextToken: "STRING_VALUE",
110
+ * // };
111
+ *
74
112
  * ```
75
113
  *
76
114
  * @param DescribeCasesCommandInput - {@link DescribeCasesCommandInput}
@@ -85,6 +123,8 @@ export interface DescribeCasesCommandOutput extends DescribeCasesResponse, __Met
85
123
  * @throws {@link InternalServerError} (server fault)
86
124
  * <p>An internal server error occurred.</p>
87
125
  *
126
+ * @throws {@link SupportServiceException}
127
+ * <p>Base exception class for all service exceptions from Support service.</p>
88
128
  *
89
129
  */
90
130
  export declare class DescribeCasesCommand extends $Command<DescribeCasesCommandInput, DescribeCasesCommandOutput, SupportClientResolvedConfig> {
@@ -58,6 +58,24 @@ export interface DescribeCommunicationsCommandOutput extends DescribeCommunicati
58
58
  * };
59
59
  * const command = new DescribeCommunicationsCommand(input);
60
60
  * const response = await client.send(command);
61
+ * // { // DescribeCommunicationsResponse
62
+ * // communications: [ // CommunicationList
63
+ * // { // Communication
64
+ * // caseId: "STRING_VALUE",
65
+ * // body: "STRING_VALUE",
66
+ * // submittedBy: "STRING_VALUE",
67
+ * // timeCreated: "STRING_VALUE",
68
+ * // attachmentSet: [ // AttachmentSet
69
+ * // { // AttachmentDetails
70
+ * // attachmentId: "STRING_VALUE",
71
+ * // fileName: "STRING_VALUE",
72
+ * // },
73
+ * // ],
74
+ * // },
75
+ * // ],
76
+ * // nextToken: "STRING_VALUE",
77
+ * // };
78
+ *
61
79
  * ```
62
80
  *
63
81
  * @param DescribeCommunicationsCommandInput - {@link DescribeCommunicationsCommandInput}
@@ -72,6 +90,8 @@ export interface DescribeCommunicationsCommandOutput extends DescribeCommunicati
72
90
  * @throws {@link InternalServerError} (server fault)
73
91
  * <p>An internal server error occurred.</p>
74
92
  *
93
+ * @throws {@link SupportServiceException}
94
+ * <p>Base exception class for all service exceptions from Support service.</p>
75
95
  *
76
96
  */
77
97
  export declare class DescribeCommunicationsCommand extends $Command<DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput, SupportClientResolvedConfig> {
@@ -56,6 +56,21 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse,
56
56
  * };
57
57
  * const command = new DescribeServicesCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // DescribeServicesResponse
60
+ * // services: [ // ServiceList
61
+ * // { // Service
62
+ * // code: "STRING_VALUE",
63
+ * // name: "STRING_VALUE",
64
+ * // categories: [ // CategoryList
65
+ * // { // Category
66
+ * // code: "STRING_VALUE",
67
+ * // name: "STRING_VALUE",
68
+ * // },
69
+ * // ],
70
+ * // },
71
+ * // ],
72
+ * // };
73
+ *
59
74
  * ```
60
75
  *
61
76
  * @param DescribeServicesCommandInput - {@link DescribeServicesCommandInput}
@@ -67,6 +82,8 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse,
67
82
  * @throws {@link InternalServerError} (server fault)
68
83
  * <p>An internal server error occurred.</p>
69
84
  *
85
+ * @throws {@link SupportServiceException}
86
+ * <p>Base exception class for all service exceptions from Support service.</p>
70
87
  *
71
88
  */
72
89
  export declare class DescribeServicesCommand extends $Command<DescribeServicesCommandInput, DescribeServicesCommandOutput, SupportClientResolvedConfig> {
@@ -47,6 +47,15 @@ export interface DescribeSeverityLevelsCommandOutput extends DescribeSeverityLev
47
47
  * };
48
48
  * const command = new DescribeSeverityLevelsCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // DescribeSeverityLevelsResponse
51
+ * // severityLevels: [ // SeverityLevelsList
52
+ * // { // SeverityLevel
53
+ * // code: "STRING_VALUE",
54
+ * // name: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // };
58
+ *
50
59
  * ```
51
60
  *
52
61
  * @param DescribeSeverityLevelsCommandInput - {@link DescribeSeverityLevelsCommandInput}
@@ -58,6 +67,8 @@ export interface DescribeSeverityLevelsCommandOutput extends DescribeSeverityLev
58
67
  * @throws {@link InternalServerError} (server fault)
59
68
  * <p>An internal server error occurred.</p>
60
69
  *
70
+ * @throws {@link SupportServiceException}
71
+ * <p>Base exception class for all service exceptions from Support service.</p>
61
72
  *
62
73
  */
63
74
  export declare class DescribeSeverityLevelsCommand extends $Command<DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput, SupportClientResolvedConfig> {
@@ -56,6 +56,16 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput extends
56
56
  * };
57
57
  * const command = new DescribeTrustedAdvisorCheckRefreshStatusesCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // DescribeTrustedAdvisorCheckRefreshStatusesResponse
60
+ * // statuses: [ // TrustedAdvisorCheckRefreshStatusList // required
61
+ * // { // TrustedAdvisorCheckRefreshStatus
62
+ * // checkId: "STRING_VALUE", // required
63
+ * // status: "STRING_VALUE", // required
64
+ * // millisUntilNextRefreshable: Number("long"), // required
65
+ * // },
66
+ * // ],
67
+ * // };
68
+ *
59
69
  * ```
60
70
  *
61
71
  * @param DescribeTrustedAdvisorCheckRefreshStatusesCommandInput - {@link DescribeTrustedAdvisorCheckRefreshStatusesCommandInput}
@@ -67,6 +77,8 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput extends
67
77
  * @throws {@link InternalServerError} (server fault)
68
78
  * <p>An internal server error occurred.</p>
69
79
  *
80
+ * @throws {@link SupportServiceException}
81
+ * <p>Base exception class for all service exceptions from Support service.</p>
70
82
  *
71
83
  */
72
84
  export declare class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command<DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput, SupportClientResolvedConfig> {
@@ -90,6 +90,37 @@ export interface DescribeTrustedAdvisorCheckResultCommandOutput extends Describe
90
90
  * };
91
91
  * const command = new DescribeTrustedAdvisorCheckResultCommand(input);
92
92
  * const response = await client.send(command);
93
+ * // { // DescribeTrustedAdvisorCheckResultResponse
94
+ * // result: { // TrustedAdvisorCheckResult
95
+ * // checkId: "STRING_VALUE", // required
96
+ * // timestamp: "STRING_VALUE", // required
97
+ * // status: "STRING_VALUE", // required
98
+ * // resourcesSummary: { // TrustedAdvisorResourcesSummary
99
+ * // resourcesProcessed: Number("long"), // required
100
+ * // resourcesFlagged: Number("long"), // required
101
+ * // resourcesIgnored: Number("long"), // required
102
+ * // resourcesSuppressed: Number("long"), // required
103
+ * // },
104
+ * // categorySpecificSummary: { // TrustedAdvisorCategorySpecificSummary
105
+ * // costOptimizing: { // TrustedAdvisorCostOptimizingSummary
106
+ * // estimatedMonthlySavings: Number("double"), // required
107
+ * // estimatedPercentMonthlySavings: Number("double"), // required
108
+ * // },
109
+ * // },
110
+ * // flaggedResources: [ // TrustedAdvisorResourceDetailList // required
111
+ * // { // TrustedAdvisorResourceDetail
112
+ * // status: "STRING_VALUE", // required
113
+ * // region: "STRING_VALUE",
114
+ * // resourceId: "STRING_VALUE", // required
115
+ * // isSuppressed: true || false,
116
+ * // metadata: [ // StringList // required
117
+ * // "STRING_VALUE",
118
+ * // ],
119
+ * // },
120
+ * // ],
121
+ * // },
122
+ * // };
123
+ *
93
124
  * ```
94
125
  *
95
126
  * @param DescribeTrustedAdvisorCheckResultCommandInput - {@link DescribeTrustedAdvisorCheckResultCommandInput}
@@ -101,6 +132,8 @@ export interface DescribeTrustedAdvisorCheckResultCommandOutput extends Describe
101
132
  * @throws {@link InternalServerError} (server fault)
102
133
  * <p>An internal server error occurred.</p>
103
134
  *
135
+ * @throws {@link SupportServiceException}
136
+ * <p>Base exception class for all service exceptions from Support service.</p>
104
137
  *
105
138
  */
106
139
  export declare class DescribeTrustedAdvisorCheckResultCommand extends $Command<DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput, SupportClientResolvedConfig> {
@@ -54,6 +54,29 @@ export interface DescribeTrustedAdvisorCheckSummariesCommandOutput extends Descr
54
54
  * };
55
55
  * const command = new DescribeTrustedAdvisorCheckSummariesCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // { // DescribeTrustedAdvisorCheckSummariesResponse
58
+ * // summaries: [ // TrustedAdvisorCheckSummaryList // required
59
+ * // { // TrustedAdvisorCheckSummary
60
+ * // checkId: "STRING_VALUE", // required
61
+ * // timestamp: "STRING_VALUE", // required
62
+ * // status: "STRING_VALUE", // required
63
+ * // hasFlaggedResources: true || false,
64
+ * // resourcesSummary: { // TrustedAdvisorResourcesSummary
65
+ * // resourcesProcessed: Number("long"), // required
66
+ * // resourcesFlagged: Number("long"), // required
67
+ * // resourcesIgnored: Number("long"), // required
68
+ * // resourcesSuppressed: Number("long"), // required
69
+ * // },
70
+ * // categorySpecificSummary: { // TrustedAdvisorCategorySpecificSummary
71
+ * // costOptimizing: { // TrustedAdvisorCostOptimizingSummary
72
+ * // estimatedMonthlySavings: Number("double"), // required
73
+ * // estimatedPercentMonthlySavings: Number("double"), // required
74
+ * // },
75
+ * // },
76
+ * // },
77
+ * // ],
78
+ * // };
79
+ *
57
80
  * ```
58
81
  *
59
82
  * @param DescribeTrustedAdvisorCheckSummariesCommandInput - {@link DescribeTrustedAdvisorCheckSummariesCommandInput}
@@ -65,6 +88,8 @@ export interface DescribeTrustedAdvisorCheckSummariesCommandOutput extends Descr
65
88
  * @throws {@link InternalServerError} (server fault)
66
89
  * <p>An internal server error occurred.</p>
67
90
  *
91
+ * @throws {@link SupportServiceException}
92
+ * <p>Base exception class for all service exceptions from Support service.</p>
68
93
  *
69
94
  */
70
95
  export declare class DescribeTrustedAdvisorCheckSummariesCommand extends $Command<DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput, SupportClientResolvedConfig> {
@@ -56,6 +56,20 @@ export interface DescribeTrustedAdvisorChecksCommandOutput extends DescribeTrust
56
56
  * };
57
57
  * const command = new DescribeTrustedAdvisorChecksCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // DescribeTrustedAdvisorChecksResponse
60
+ * // checks: [ // TrustedAdvisorCheckList // required
61
+ * // { // TrustedAdvisorCheckDescription
62
+ * // id: "STRING_VALUE", // required
63
+ * // name: "STRING_VALUE", // required
64
+ * // description: "STRING_VALUE", // required
65
+ * // category: "STRING_VALUE", // required
66
+ * // metadata: [ // StringList // required
67
+ * // "STRING_VALUE",
68
+ * // ],
69
+ * // },
70
+ * // ],
71
+ * // };
72
+ *
59
73
  * ```
60
74
  *
61
75
  * @param DescribeTrustedAdvisorChecksCommandInput - {@link DescribeTrustedAdvisorChecksCommandInput}
@@ -67,6 +81,8 @@ export interface DescribeTrustedAdvisorChecksCommandOutput extends DescribeTrust
67
81
  * @throws {@link InternalServerError} (server fault)
68
82
  * <p>An internal server error occurred.</p>
69
83
  *
84
+ * @throws {@link SupportServiceException}
85
+ * <p>Base exception class for all service exceptions from Support service.</p>
70
86
  *
71
87
  */
72
88
  export declare class DescribeTrustedAdvisorChecksCommand extends $Command<DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput, SupportClientResolvedConfig> {
@@ -56,6 +56,14 @@ export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedA
56
56
  * };
57
57
  * const command = new RefreshTrustedAdvisorCheckCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // RefreshTrustedAdvisorCheckResponse
60
+ * // status: { // TrustedAdvisorCheckRefreshStatus
61
+ * // checkId: "STRING_VALUE", // required
62
+ * // status: "STRING_VALUE", // required
63
+ * // millisUntilNextRefreshable: Number("long"), // required
64
+ * // },
65
+ * // };
66
+ *
59
67
  * ```
60
68
  *
61
69
  * @param RefreshTrustedAdvisorCheckCommandInput - {@link RefreshTrustedAdvisorCheckCommandInput}
@@ -67,6 +75,8 @@ export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedA
67
75
  * @throws {@link InternalServerError} (server fault)
68
76
  * <p>An internal server error occurred.</p>
69
77
  *
78
+ * @throws {@link SupportServiceException}
79
+ * <p>Base exception class for all service exceptions from Support service.</p>
70
80
  *
71
81
  */
72
82
  export declare class RefreshTrustedAdvisorCheckCommand extends $Command<RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput, SupportClientResolvedConfig> {
@@ -46,6 +46,11 @@ export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __Metadat
46
46
  * };
47
47
  * const command = new ResolveCaseCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // { // ResolveCaseResponse
50
+ * // initialCaseStatus: "STRING_VALUE",
51
+ * // finalCaseStatus: "STRING_VALUE",
52
+ * // };
53
+ *
49
54
  * ```
50
55
  *
51
56
  * @param ResolveCaseCommandInput - {@link ResolveCaseCommandInput}
@@ -60,6 +65,8 @@ export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __Metadat
60
65
  * @throws {@link InternalServerError} (server fault)
61
66
  * <p>An internal server error occurred.</p>
62
67
  *
68
+ * @throws {@link SupportServiceException}
69
+ * <p>Base exception class for all service exceptions from Support service.</p>
63
70
  *
64
71
  */
65
72
  export declare class ResolveCaseCommand extends $Command<ResolveCaseCommandInput, ResolveCaseCommandOutput, SupportClientResolvedConfig> {
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.325.0",
4
+ "version": "3.327.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.327.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.327.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -32,11 +32,11 @@
32
32
  "@aws-sdk/middleware-host-header": "3.325.0",
33
33
  "@aws-sdk/middleware-logger": "3.325.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
- "@aws-sdk/middleware-retry": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.327.0",
36
36
  "@aws-sdk/middleware-serde": "3.325.0",
37
37
  "@aws-sdk/middleware-signing": "3.325.0",
38
38
  "@aws-sdk/middleware-stack": "3.325.0",
39
- "@aws-sdk/middleware-user-agent": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.327.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
@@ -48,8 +48,8 @@
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
50
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
- "@aws-sdk/util-endpoints": "3.319.0",
52
- "@aws-sdk/util-retry": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.327.0",
52
+ "@aws-sdk/util-retry": "3.327.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",
54
54
  "@aws-sdk/util-user-agent-node": "3.310.0",
55
55
  "@aws-sdk/util-utf8": "3.310.0",