@aws-sdk/client-codeguruprofiler 3.299.0 → 3.301.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.
Files changed (24) hide show
  1. package/dist-types/commands/AddNotificationChannelsCommand.d.ts +12 -0
  2. package/dist-types/commands/BatchGetFrameMetricDataCommand.d.ts +16 -0
  3. package/dist-types/commands/ConfigureAgentCommand.d.ts +7 -0
  4. package/dist-types/commands/CreateProfilingGroupCommand.d.ts +11 -0
  5. package/dist-types/commands/DeleteProfilingGroupCommand.d.ts +3 -0
  6. package/dist-types/commands/DescribeProfilingGroupCommand.d.ts +3 -0
  7. package/dist-types/commands/GetFindingsReportAccountSummaryCommand.d.ts +5 -0
  8. package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +3 -0
  9. package/dist-types/commands/GetPolicyCommand.d.ts +3 -0
  10. package/dist-types/commands/GetProfileCommand.d.ts +8 -0
  11. package/dist-types/commands/GetRecommendationsCommand.d.ts +6 -0
  12. package/dist-types/commands/ListFindingsReportsCommand.d.ts +8 -0
  13. package/dist-types/commands/ListProfileTimesCommand.d.ts +9 -0
  14. package/dist-types/commands/ListProfilingGroupsCommand.d.ts +5 -0
  15. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  16. package/dist-types/commands/PostAgentProfileCommand.d.ts +6 -0
  17. package/dist-types/commands/PutPermissionCommand.d.ts +8 -0
  18. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +4 -0
  19. package/dist-types/commands/RemovePermissionCommand.d.ts +5 -0
  20. package/dist-types/commands/SubmitFeedbackCommand.d.ts +6 -0
  21. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  22. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  23. package/dist-types/commands/UpdateProfilingGroupCommand.d.ts +6 -0
  24. package/package.json +8 -8
@@ -26,6 +26,18 @@ export interface AddNotificationChannelsCommandOutput extends AddNotificationCha
26
26
  * import { CodeGuruProfilerClient, AddNotificationChannelsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
27
27
  * // const { CodeGuruProfilerClient, AddNotificationChannelsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
28
28
  * const client = new CodeGuruProfilerClient(config);
29
+ * const input = { // AddNotificationChannelsRequest
30
+ * profilingGroupName: "STRING_VALUE", // required
31
+ * channels: [ // Channels // required
32
+ * { // Channel
33
+ * id: "STRING_VALUE",
34
+ * uri: "STRING_VALUE", // required
35
+ * eventPublishers: [ // EventPublishers // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * },
39
+ * ],
40
+ * };
29
41
  * const command = new AddNotificationChannelsCommand(input);
30
42
  * const response = await client.send(command);
31
43
  * ```
@@ -28,6 +28,22 @@ export interface BatchGetFrameMetricDataCommandOutput extends BatchGetFrameMetri
28
28
  * import { CodeGuruProfilerClient, BatchGetFrameMetricDataCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
29
29
  * // const { CodeGuruProfilerClient, BatchGetFrameMetricDataCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
30
30
  * const client = new CodeGuruProfilerClient(config);
31
+ * const input = { // BatchGetFrameMetricDataRequest
32
+ * profilingGroupName: "STRING_VALUE", // required
33
+ * startTime: new Date("TIMESTAMP"),
34
+ * endTime: new Date("TIMESTAMP"),
35
+ * period: "STRING_VALUE",
36
+ * targetResolution: "STRING_VALUE",
37
+ * frameMetrics: [ // FrameMetrics
38
+ * { // FrameMetric
39
+ * frameName: "STRING_VALUE", // required
40
+ * type: "STRING_VALUE", // required
41
+ * threadStates: [ // ThreadStates // required
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * },
45
+ * ],
46
+ * };
31
47
  * const command = new BatchGetFrameMetricDataCommand(input);
32
48
  * const response = await client.send(command);
33
49
  * ```
@@ -30,6 +30,13 @@ export interface ConfigureAgentCommandOutput extends ConfigureAgentResponse, __M
30
30
  * import { CodeGuruProfilerClient, ConfigureAgentCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
31
31
  * // const { CodeGuruProfilerClient, ConfigureAgentCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
32
32
  * const client = new CodeGuruProfilerClient(config);
33
+ * const input = { // ConfigureAgentRequest
34
+ * profilingGroupName: "STRING_VALUE", // required
35
+ * fleetInstanceId: "STRING_VALUE",
36
+ * metadata: { // Metadata
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * };
33
40
  * const command = new ConfigureAgentCommand(input);
34
41
  * const response = await client.send(command);
35
42
  * ```
@@ -26,6 +26,17 @@ export interface CreateProfilingGroupCommandOutput extends CreateProfilingGroupR
26
26
  * import { CodeGuruProfilerClient, CreateProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
27
27
  * // const { CodeGuruProfilerClient, CreateProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
28
28
  * const client = new CodeGuruProfilerClient(config);
29
+ * const input = { // CreateProfilingGroupRequest
30
+ * profilingGroupName: "STRING_VALUE", // required
31
+ * computePlatform: "STRING_VALUE",
32
+ * clientToken: "STRING_VALUE", // required
33
+ * agentOrchestrationConfig: { // AgentOrchestrationConfig
34
+ * profilingEnabled: true || false, // required
35
+ * },
36
+ * tags: { // TagsMap
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * };
29
40
  * const command = new CreateProfilingGroupCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
@@ -26,6 +26,9 @@ export interface DeleteProfilingGroupCommandOutput extends DeleteProfilingGroupR
26
26
  * import { CodeGuruProfilerClient, DeleteProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
27
27
  * // const { CodeGuruProfilerClient, DeleteProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
28
28
  * const client = new CodeGuruProfilerClient(config);
29
+ * const input = { // DeleteProfilingGroupRequest
30
+ * profilingGroupName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteProfilingGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -31,6 +31,9 @@ export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGr
31
31
  * import { CodeGuruProfilerClient, DescribeProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
32
32
  * // const { CodeGuruProfilerClient, DescribeProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
33
33
  * const client = new CodeGuruProfilerClient(config);
34
+ * const input = { // DescribeProfilingGroupRequest
35
+ * profilingGroupName: "STRING_VALUE", // required
36
+ * };
34
37
  * const command = new DescribeProfilingGroupCommand(input);
35
38
  * const response = await client.send(command);
36
39
  * ```
@@ -32,6 +32,11 @@ export interface GetFindingsReportAccountSummaryCommandOutput extends GetFinding
32
32
  * import { CodeGuruProfilerClient, GetFindingsReportAccountSummaryCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
33
33
  * // const { CodeGuruProfilerClient, GetFindingsReportAccountSummaryCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
34
34
  * const client = new CodeGuruProfilerClient(config);
35
+ * const input = { // GetFindingsReportAccountSummaryRequest
36
+ * nextToken: "STRING_VALUE",
37
+ * maxResults: Number("int"),
38
+ * dailyReportsOnly: true || false,
39
+ * };
35
40
  * const command = new GetFindingsReportAccountSummaryCommand(input);
36
41
  * const response = await client.send(command);
37
42
  * ```
@@ -26,6 +26,9 @@ export interface GetNotificationConfigurationCommandOutput extends GetNotificati
26
26
  * import { CodeGuruProfilerClient, GetNotificationConfigurationCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
27
27
  * // const { CodeGuruProfilerClient, GetNotificationConfigurationCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
28
28
  * const client = new CodeGuruProfilerClient(config);
29
+ * const input = { // GetNotificationConfigurationRequest
30
+ * profilingGroupName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetNotificationConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -28,6 +28,9 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
28
28
  * import { CodeGuruProfilerClient, GetPolicyCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
29
29
  * // const { CodeGuruProfilerClient, GetPolicyCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
30
30
  * const client = new CodeGuruProfilerClient(config);
31
+ * const input = { // GetPolicyRequest
32
+ * profilingGroupName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new GetPolicyCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -97,6 +97,14 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB
97
97
  * import { CodeGuruProfilerClient, GetProfileCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
98
98
  * // const { CodeGuruProfilerClient, GetProfileCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
99
99
  * const client = new CodeGuruProfilerClient(config);
100
+ * const input = { // GetProfileRequest
101
+ * profilingGroupName: "STRING_VALUE", // required
102
+ * startTime: new Date("TIMESTAMP"),
103
+ * period: "STRING_VALUE",
104
+ * endTime: new Date("TIMESTAMP"),
105
+ * maxDepth: Number("int"),
106
+ * accept: "STRING_VALUE",
107
+ * };
100
108
  * const command = new GetProfileCommand(input);
101
109
  * const response = await client.send(command);
102
110
  * ```
@@ -37,6 +37,12 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo
37
37
  * import { CodeGuruProfilerClient, GetRecommendationsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
38
38
  * // const { CodeGuruProfilerClient, GetRecommendationsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
39
39
  * const client = new CodeGuruProfilerClient(config);
40
+ * const input = { // GetRecommendationsRequest
41
+ * profilingGroupName: "STRING_VALUE", // required
42
+ * startTime: new Date("TIMESTAMP"), // required
43
+ * endTime: new Date("TIMESTAMP"), // required
44
+ * locale: "STRING_VALUE",
45
+ * };
40
46
  * const command = new GetRecommendationsCommand(input);
41
47
  * const response = await client.send(command);
42
48
  * ```
@@ -26,6 +26,14 @@ export interface ListFindingsReportsCommandOutput extends ListFindingsReportsRes
26
26
  * import { CodeGuruProfilerClient, ListFindingsReportsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
27
27
  * // const { CodeGuruProfilerClient, ListFindingsReportsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
28
28
  * const client = new CodeGuruProfilerClient(config);
29
+ * const input = { // ListFindingsReportsRequest
30
+ * profilingGroupName: "STRING_VALUE", // required
31
+ * startTime: new Date("TIMESTAMP"), // required
32
+ * endTime: new Date("TIMESTAMP"), // required
33
+ * nextToken: "STRING_VALUE",
34
+ * maxResults: Number("int"),
35
+ * dailyReportsOnly: true || false,
36
+ * };
29
37
  * const command = new ListFindingsReportsCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -27,6 +27,15 @@ export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse,
27
27
  * import { CodeGuruProfilerClient, ListProfileTimesCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
28
28
  * // const { CodeGuruProfilerClient, ListProfileTimesCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
29
29
  * const client = new CodeGuruProfilerClient(config);
30
+ * const input = { // ListProfileTimesRequest
31
+ * profilingGroupName: "STRING_VALUE", // required
32
+ * startTime: new Date("TIMESTAMP"), // required
33
+ * endTime: new Date("TIMESTAMP"), // required
34
+ * period: "STRING_VALUE", // required
35
+ * orderBy: "STRING_VALUE",
36
+ * maxResults: Number("int"),
37
+ * nextToken: "STRING_VALUE",
38
+ * };
30
39
  * const command = new ListProfileTimesCommand(input);
31
40
  * const response = await client.send(command);
32
41
  * ```
@@ -32,6 +32,11 @@ export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsRes
32
32
  * import { CodeGuruProfilerClient, ListProfilingGroupsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
33
33
  * // const { CodeGuruProfilerClient, ListProfilingGroupsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
34
34
  * const client = new CodeGuruProfilerClient(config);
35
+ * const input = { // ListProfilingGroupsRequest
36
+ * nextToken: "STRING_VALUE",
37
+ * maxResults: Number("int"),
38
+ * includeDescription: true || false,
39
+ * };
35
40
  * const command = new ListProfilingGroupsCommand(input);
36
41
  * const response = await client.send(command);
37
42
  * ```
@@ -28,6 +28,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
28
28
  * import { CodeGuruProfilerClient, ListTagsForResourceCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
29
29
  * // const { CodeGuruProfilerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
30
30
  * const client = new CodeGuruProfilerClient(config);
31
+ * const input = { // ListTagsForResourceRequest
32
+ * resourceArn: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new ListTagsForResourceCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -32,6 +32,12 @@ export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse,
32
32
  * import { CodeGuruProfilerClient, PostAgentProfileCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
33
33
  * // const { CodeGuruProfilerClient, PostAgentProfileCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
34
34
  * const client = new CodeGuruProfilerClient(config);
35
+ * const input = { // PostAgentProfileRequest
36
+ * profilingGroupName: "STRING_VALUE", // required
37
+ * agentProfile: "BLOB_VALUE", // required
38
+ * profileToken: "STRING_VALUE",
39
+ * contentType: "STRING_VALUE", // required
40
+ * };
35
41
  * const command = new PostAgentProfileCommand(input);
36
42
  * const response = await client.send(command);
37
43
  * ```
@@ -51,6 +51,14 @@ export interface PutPermissionCommandOutput extends PutPermissionResponse, __Met
51
51
  * import { CodeGuruProfilerClient, PutPermissionCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
52
52
  * // const { CodeGuruProfilerClient, PutPermissionCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
53
53
  * const client = new CodeGuruProfilerClient(config);
54
+ * const input = { // PutPermissionRequest
55
+ * profilingGroupName: "STRING_VALUE", // required
56
+ * actionGroup: "STRING_VALUE", // required
57
+ * principals: [ // Principals // required
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * revisionId: "STRING_VALUE",
61
+ * };
54
62
  * const command = new PutPermissionCommand(input);
55
63
  * const response = await client.send(command);
56
64
  * ```
@@ -26,6 +26,10 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
26
26
  * import { CodeGuruProfilerClient, RemoveNotificationChannelCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
27
27
  * // const { CodeGuruProfilerClient, RemoveNotificationChannelCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
28
28
  * const client = new CodeGuruProfilerClient(config);
29
+ * const input = { // RemoveNotificationChannelRequest
30
+ * profilingGroupName: "STRING_VALUE", // required
31
+ * channelId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new RemoveNotificationChannelCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -34,6 +34,11 @@ export interface RemovePermissionCommandOutput extends RemovePermissionResponse,
34
34
  * import { CodeGuruProfilerClient, RemovePermissionCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
35
35
  * // const { CodeGuruProfilerClient, RemovePermissionCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
36
36
  * const client = new CodeGuruProfilerClient(config);
37
+ * const input = { // RemovePermissionRequest
38
+ * profilingGroupName: "STRING_VALUE", // required
39
+ * actionGroup: "STRING_VALUE", // required
40
+ * revisionId: "STRING_VALUE", // required
41
+ * };
37
42
  * const command = new RemovePermissionCommand(input);
38
43
  * const response = await client.send(command);
39
44
  * ```
@@ -27,6 +27,12 @@ export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __M
27
27
  * import { CodeGuruProfilerClient, SubmitFeedbackCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
28
28
  * // const { CodeGuruProfilerClient, SubmitFeedbackCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
29
29
  * const client = new CodeGuruProfilerClient(config);
30
+ * const input = { // SubmitFeedbackRequest
31
+ * profilingGroupName: "STRING_VALUE", // required
32
+ * anomalyInstanceId: "STRING_VALUE", // required
33
+ * type: "STRING_VALUE", // required
34
+ * comment: "STRING_VALUE",
35
+ * };
30
36
  * const command = new SubmitFeedbackCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -28,6 +28,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
28
28
  * import { CodeGuruProfilerClient, TagResourceCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
29
29
  * // const { CodeGuruProfilerClient, TagResourceCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
30
30
  * const client = new CodeGuruProfilerClient(config);
31
+ * const input = { // TagResourceRequest
32
+ * resourceArn: "STRING_VALUE", // required
33
+ * tags: { // TagsMap // required
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * };
31
37
  * const command = new TagResourceCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
@@ -28,6 +28,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
28
28
  * import { CodeGuruProfilerClient, UntagResourceCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
29
29
  * // const { CodeGuruProfilerClient, UntagResourceCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
30
30
  * const client = new CodeGuruProfilerClient(config);
31
+ * const input = { // UntagResourceRequest
32
+ * resourceArn: "STRING_VALUE", // required
33
+ * tagKeys: [ // TagKeys // required
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * };
31
37
  * const command = new UntagResourceCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
@@ -26,6 +26,12 @@ export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupR
26
26
  * import { CodeGuruProfilerClient, UpdateProfilingGroupCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import
27
27
  * // const { CodeGuruProfilerClient, UpdateProfilingGroupCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import
28
28
  * const client = new CodeGuruProfilerClient(config);
29
+ * const input = { // UpdateProfilingGroupRequest
30
+ * profilingGroupName: "STRING_VALUE", // required
31
+ * agentOrchestrationConfig: { // AgentOrchestrationConfig
32
+ * profilingEnabled: true || false, // required
33
+ * },
34
+ * };
29
35
  * const command = new UpdateProfilingGroupCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codeguruprofiler",
3
3
  "description": "AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"