@aws-sdk/client-batch 3.529.1 → 3.533.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/dist-cjs/index.js CHANGED
@@ -52,6 +52,8 @@ __export(src_exports, {
52
52
  JQState: () => JQState,
53
53
  JQStatus: () => JQStatus,
54
54
  JobDefinitionType: () => JobDefinitionType,
55
+ JobStateTimeLimitActionsAction: () => JobStateTimeLimitActionsAction,
56
+ JobStateTimeLimitActionsState: () => JobStateTimeLimitActionsState,
55
57
  JobStatus: () => JobStatus,
56
58
  ListJobsCommand: () => ListJobsCommand,
57
59
  ListSchedulingPoliciesCommand: () => ListSchedulingPoliciesCommand,
@@ -313,6 +315,12 @@ var CEType = {
313
315
  MANAGED: "MANAGED",
314
316
  UNMANAGED: "UNMANAGED"
315
317
  };
318
+ var JobStateTimeLimitActionsAction = {
319
+ CANCEL: "CANCEL"
320
+ };
321
+ var JobStateTimeLimitActionsState = {
322
+ RUNNABLE: "RUNNABLE"
323
+ };
316
324
  var JQState = {
317
325
  DISABLED: "DISABLED",
318
326
  ENABLED: "ENABLED"
@@ -441,6 +449,7 @@ var se_CreateJobQueueCommand = /* @__PURE__ */ __name(async (input, context) =>
441
449
  (0, import_smithy_client.take)(input, {
442
450
  computeEnvironmentOrder: (_) => (0, import_smithy_client._json)(_),
443
451
  jobQueueName: [],
452
+ jobStateTimeLimitActions: (_) => (0, import_smithy_client._json)(_),
444
453
  priority: [],
445
454
  schedulingPolicyArn: [],
446
455
  state: [],
@@ -791,6 +800,7 @@ var se_UpdateJobQueueCommand = /* @__PURE__ */ __name(async (input, context) =>
791
800
  (0, import_smithy_client.take)(input, {
792
801
  computeEnvironmentOrder: (_) => (0, import_smithy_client._json)(_),
793
802
  jobQueue: [],
803
+ jobStateTimeLimitActions: (_) => (0, import_smithy_client._json)(_),
794
804
  priority: [],
795
805
  schedulingPolicyArn: [],
796
806
  state: []
@@ -1832,6 +1842,8 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
1832
1842
  CRType,
1833
1843
  CEState,
1834
1844
  CEType,
1845
+ JobStateTimeLimitActionsAction,
1846
+ JobStateTimeLimitActionsState,
1835
1847
  JQState,
1836
1848
  OrchestrationType,
1837
1849
  CEStatus,
@@ -51,6 +51,12 @@ export const CEType = {
51
51
  MANAGED: "MANAGED",
52
52
  UNMANAGED: "UNMANAGED",
53
53
  };
54
+ export const JobStateTimeLimitActionsAction = {
55
+ CANCEL: "CANCEL",
56
+ };
57
+ export const JobStateTimeLimitActionsState = {
58
+ RUNNABLE: "RUNNABLE",
59
+ };
54
60
  export const JQState = {
55
61
  DISABLED: "DISABLED",
56
62
  ENABLED: "ENABLED",
@@ -47,6 +47,7 @@ export const se_CreateJobQueueCommand = async (input, context) => {
47
47
  body = JSON.stringify(take(input, {
48
48
  computeEnvironmentOrder: (_) => _json(_),
49
49
  jobQueueName: [],
50
+ jobStateTimeLimitActions: (_) => _json(_),
50
51
  priority: [],
51
52
  schedulingPolicyArn: [],
52
53
  state: [],
@@ -361,6 +362,7 @@ export const se_UpdateJobQueueCommand = async (input, context) => {
361
362
  body = JSON.stringify(take(input, {
362
363
  computeEnvironmentOrder: (_) => _json(_),
363
364
  jobQueue: [],
365
+ jobStateTimeLimitActions: (_) => _json(_),
364
366
  priority: [],
365
367
  schedulingPolicyArn: [],
366
368
  state: [],
@@ -53,6 +53,14 @@ declare const CreateJobQueueCommand_base: {
53
53
  * tags: { // TagrisTagsMap
54
54
  * "<keys>": "STRING_VALUE",
55
55
  * },
56
+ * jobStateTimeLimitActions: [ // JobStateTimeLimitActions
57
+ * { // JobStateTimeLimitAction
58
+ * reason: "STRING_VALUE", // required
59
+ * state: "RUNNABLE", // required
60
+ * maxTimeSeconds: Number("int"), // required
61
+ * action: "CANCEL", // required
62
+ * },
63
+ * ],
56
64
  * };
57
65
  * const command = new CreateJobQueueCommand(input);
58
66
  * const response = await client.send(command);
@@ -61,6 +61,14 @@ declare const DescribeJobQueuesCommand_base: {
61
61
  * // tags: { // TagrisTagsMap
62
62
  * // "<keys>": "STRING_VALUE",
63
63
  * // },
64
+ * // jobStateTimeLimitActions: [ // JobStateTimeLimitActions
65
+ * // { // JobStateTimeLimitAction
66
+ * // reason: "STRING_VALUE", // required
67
+ * // state: "RUNNABLE", // required
68
+ * // maxTimeSeconds: Number("int"), // required
69
+ * // action: "CANCEL", // required
70
+ * // },
71
+ * // ],
64
72
  * // },
65
73
  * // ],
66
74
  * // nextToken: "STRING_VALUE",
@@ -44,6 +44,14 @@ declare const UpdateJobQueueCommand_base: {
44
44
  * computeEnvironment: "STRING_VALUE", // required
45
45
  * },
46
46
  * ],
47
+ * jobStateTimeLimitActions: [ // JobStateTimeLimitActions
48
+ * { // JobStateTimeLimitAction
49
+ * reason: "STRING_VALUE", // required
50
+ * state: "RUNNABLE", // required
51
+ * maxTimeSeconds: Number("int"), // required
52
+ * action: "CANCEL", // required
53
+ * },
54
+ * ],
47
55
  * };
48
56
  * const command = new UpdateJobQueueCommand(input);
49
57
  * const response = await client.send(command);
@@ -868,6 +868,57 @@ export interface ComputeEnvironmentOrder {
868
868
  */
869
869
  computeEnvironment: string | undefined;
870
870
  }
871
+ /**
872
+ * @public
873
+ * @enum
874
+ */
875
+ export declare const JobStateTimeLimitActionsAction: {
876
+ readonly CANCEL: "CANCEL";
877
+ };
878
+ /**
879
+ * @public
880
+ */
881
+ export type JobStateTimeLimitActionsAction = (typeof JobStateTimeLimitActionsAction)[keyof typeof JobStateTimeLimitActionsAction];
882
+ /**
883
+ * @public
884
+ * @enum
885
+ */
886
+ export declare const JobStateTimeLimitActionsState: {
887
+ readonly RUNNABLE: "RUNNABLE";
888
+ };
889
+ /**
890
+ * @public
891
+ */
892
+ export type JobStateTimeLimitActionsState = (typeof JobStateTimeLimitActionsState)[keyof typeof JobStateTimeLimitActionsState];
893
+ /**
894
+ * @public
895
+ * <p>Specifies an action that Batch will take after the job has remained at the head of the queue in the specified
896
+ * state for longer than the specified time.</p>
897
+ */
898
+ export interface JobStateTimeLimitAction {
899
+ /**
900
+ * @public
901
+ * <p>The reason to log for the action being taken.</p>
902
+ */
903
+ reason: string | undefined;
904
+ /**
905
+ * @public
906
+ * <p>The state of the job needed to trigger the action. The only supported value is "<code>RUNNABLE</code>".</p>
907
+ */
908
+ state: JobStateTimeLimitActionsState | undefined;
909
+ /**
910
+ * @public
911
+ * <p>The approximate amount of time, in seconds, that must pass with the job in the specified state before the action
912
+ * is taken. The minimum value is 600 (10 minutes) and the maximum value is 86,400 (24 hours).</p>
913
+ */
914
+ maxTimeSeconds: number | undefined;
915
+ /**
916
+ * @public
917
+ * <p>The action to take when a job is at the head of the job queue in the specified state for the specified period of
918
+ * time. The only supported value is "<code>CANCEL</code>", which will cancel the job.</p>
919
+ */
920
+ action: JobStateTimeLimitActionsAction | undefined;
921
+ }
871
922
  /**
872
923
  * @public
873
924
  * @enum
@@ -944,6 +995,12 @@ export interface CreateJobQueueRequest {
944
995
  * in <i>Batch User Guide</i>.</p>
945
996
  */
946
997
  tags?: Record<string, string>;
998
+ /**
999
+ * @public
1000
+ * <p>The set of actions that Batch performs on jobs that remain at the head of the job queue in the specified state
1001
+ * longer than specified times. Batch will perform each action after <code>maxTimeSeconds</code> has passed.</p>
1002
+ */
1003
+ jobStateTimeLimitActions?: JobStateTimeLimitAction[];
947
1004
  }
948
1005
  /**
949
1006
  * @public
@@ -2593,7 +2650,7 @@ export interface TaskContainerProperties {
2593
2650
  * <code>essential</code> parameter of a container is marked as false, its failure doesn't affect
2594
2651
  * the rest of the containers in a task. If this parameter is omitted, a container is assumed to be
2595
2652
  * essential.</p>
2596
- * <p>All tasks must have at least one essential container. If you have an application that's
2653
+ * <p>All jobs must have at least one essential container. If you have an application that's
2597
2654
  * composed of multiple containers, group containers that are used for a common purpose into
2598
2655
  * components, and separate the different components into multiple task definitions. For more
2599
2656
  * information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html">Application
@@ -3780,6 +3837,12 @@ export interface JobQueueDetail {
3780
3837
  * <i>Batch User Guide</i>.</p>
3781
3838
  */
3782
3839
  tags?: Record<string, string>;
3840
+ /**
3841
+ * @public
3842
+ * <p>The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state
3843
+ * longer than specified times. Batch will perform each action after <code>maxTimeSeconds</code> has passed.</p>
3844
+ */
3845
+ jobStateTimeLimitActions?: JobStateTimeLimitAction[];
3783
3846
  }
3784
3847
  /**
3785
3848
  * @public
@@ -4095,7 +4158,7 @@ export interface TaskContainerDetails {
4095
4158
  * <code>essential</code> parameter of a container is marked as false, its failure doesn't affect
4096
4159
  * the rest of the containers in a task. If this parameter is omitted, a container is assumed to be
4097
4160
  * essential.</p>
4098
- * <p>All tasks must have at least one essential container. If you have an application that's
4161
+ * <p>All jobs must have at least one essential container. If you have an application that's
4099
4162
  * composed of multiple containers, group containers that are used for a common purpose into
4100
4163
  * components, and separate the different components into multiple task definitions. For more
4101
4164
  * information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html">Application
@@ -4737,8 +4800,29 @@ export interface JobDetail {
4737
4800
  attempts?: AttemptDetail[];
4738
4801
  /**
4739
4802
  * @public
4740
- * <p>A short, human-readable string to provide more details for the current status of the
4741
- * job.</p>
4803
+ * <p>A short, human-readable string to provide more details for the current status of the job.</p>
4804
+ * <ul>
4805
+ * <li>
4806
+ * <p>
4807
+ * <code>CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY</code> - All compute environments have insufficient capacity to
4808
+ * service the job.</p>
4809
+ * </li>
4810
+ * <li>
4811
+ * <p>
4812
+ * <code>MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE</code> - All compute environments have a
4813
+ * <code>maxVcpu</code> setting that is smaller than the job requirements.</p>
4814
+ * </li>
4815
+ * <li>
4816
+ * <p>
4817
+ * <code>MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT</code> - All compute environments have no connected instances
4818
+ * that meet the job requirements.</p>
4819
+ * </li>
4820
+ * <li>
4821
+ * <p>
4822
+ * <code>MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS</code> - All compute environments have problems with the
4823
+ * service role permissions.</p>
4824
+ * </li>
4825
+ * </ul>
4742
4826
  */
4743
4827
  statusReason?: string;
4744
4828
  /**
@@ -6443,6 +6527,12 @@ export interface UpdateJobQueueRequest {
6443
6527
  * </note>
6444
6528
  */
6445
6529
  computeEnvironmentOrder?: ComputeEnvironmentOrder[];
6530
+ /**
6531
+ * @public
6532
+ * <p>The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state
6533
+ * longer than specified times. Batch will perform each action after <code>maxTimeSeconds</code> has passed.</p>
6534
+ */
6535
+ jobStateTimeLimitActions?: JobStateTimeLimitAction[];
6446
6536
  }
6447
6537
  /**
6448
6538
  * @public
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: import("@smithy/types").Encoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: import("@smithy/types").Encoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@smithy/types").Logger;
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: import("@smithy/types").Encoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: import("@smithy/types").Encoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@smithy/types").Logger;
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
11
11
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
12
  streamCollector: import("@smithy/types").StreamCollector;
13
13
  base64Decoder: import("@smithy/types").Decoder;
14
- base64Encoder: import("@smithy/types").Encoder;
14
+ base64Encoder: (_input: string | Uint8Array) => string;
15
15
  utf8Decoder: import("@smithy/types").Decoder;
16
- utf8Encoder: import("@smithy/types").Encoder;
16
+ utf8Encoder: (input: string | Uint8Array) => string;
17
17
  disableHostPrefix: boolean;
18
18
  serviceId: string;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -5,7 +5,7 @@ import { BatchClientConfig } from "./BatchClient";
5
5
  export declare const getRuntimeConfig: (config: BatchClientConfig) => {
6
6
  apiVersion: string;
7
7
  base64Decoder: import("@smithy/types").Decoder;
8
- base64Encoder: import("@smithy/types").Encoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
11
  logger?: import("@smithy/types").Logger | undefined;
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
17
17
  serviceId: string;
18
18
  urlParser: import("@smithy/types").UrlParser;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  };
@@ -134,6 +134,22 @@ export interface ComputeEnvironmentOrder {
134
134
  order: number | undefined;
135
135
  computeEnvironment: string | undefined;
136
136
  }
137
+ export declare const JobStateTimeLimitActionsAction: {
138
+ readonly CANCEL: "CANCEL";
139
+ };
140
+ export type JobStateTimeLimitActionsAction =
141
+ (typeof JobStateTimeLimitActionsAction)[keyof typeof JobStateTimeLimitActionsAction];
142
+ export declare const JobStateTimeLimitActionsState: {
143
+ readonly RUNNABLE: "RUNNABLE";
144
+ };
145
+ export type JobStateTimeLimitActionsState =
146
+ (typeof JobStateTimeLimitActionsState)[keyof typeof JobStateTimeLimitActionsState];
147
+ export interface JobStateTimeLimitAction {
148
+ reason: string | undefined;
149
+ state: JobStateTimeLimitActionsState | undefined;
150
+ maxTimeSeconds: number | undefined;
151
+ action: JobStateTimeLimitActionsAction | undefined;
152
+ }
137
153
  export declare const JQState: {
138
154
  readonly DISABLED: "DISABLED";
139
155
  readonly ENABLED: "ENABLED";
@@ -146,6 +162,7 @@ export interface CreateJobQueueRequest {
146
162
  priority: number | undefined;
147
163
  computeEnvironmentOrder: ComputeEnvironmentOrder[] | undefined;
148
164
  tags?: Record<string, string>;
165
+ jobStateTimeLimitActions?: JobStateTimeLimitAction[];
149
166
  }
150
167
  export interface CreateJobQueueResponse {
151
168
  jobQueueName: string | undefined;
@@ -560,6 +577,7 @@ export interface JobQueueDetail {
560
577
  priority: number | undefined;
561
578
  computeEnvironmentOrder: ComputeEnvironmentOrder[] | undefined;
562
579
  tags?: Record<string, string>;
580
+ jobStateTimeLimitActions?: JobStateTimeLimitAction[];
563
581
  }
564
582
  export interface DescribeJobQueuesResponse {
565
583
  jobQueues?: JobQueueDetail[];
@@ -954,6 +972,7 @@ export interface UpdateJobQueueRequest {
954
972
  schedulingPolicyArn?: string;
955
973
  priority?: number;
956
974
  computeEnvironmentOrder?: ComputeEnvironmentOrder[];
975
+ jobStateTimeLimitActions?: JobStateTimeLimitAction[];
957
976
  }
958
977
  export interface UpdateJobQueueResponse {
959
978
  jobQueueName?: string;
@@ -25,9 +25,9 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
25
25
  apiVersion: string;
26
26
  urlParser: import("@smithy/types").UrlParser;
27
27
  base64Decoder: import("@smithy/types").Decoder;
28
- base64Encoder: import("@smithy/types").Encoder;
28
+ base64Encoder: (_input: string | Uint8Array) => string;
29
29
  utf8Decoder: import("@smithy/types").Decoder;
30
- utf8Encoder: import("@smithy/types").Encoder;
30
+ utf8Encoder: (input: string | Uint8Array) => string;
31
31
  disableHostPrefix: boolean;
32
32
  serviceId: string;
33
33
  logger: import("@smithy/types").Logger;
@@ -29,9 +29,9 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
29
29
  apiVersion: string;
30
30
  urlParser: import("@smithy/types").UrlParser;
31
31
  base64Decoder: import("@smithy/types").Decoder;
32
- base64Encoder: import("@smithy/types").Encoder;
32
+ base64Encoder: (_input: string | Uint8Array) => string;
33
33
  utf8Decoder: import("@smithy/types").Decoder;
34
- utf8Encoder: import("@smithy/types").Encoder;
34
+ utf8Encoder: (input: string | Uint8Array) => string;
35
35
  disableHostPrefix: boolean;
36
36
  serviceId: string;
37
37
  logger: import("@smithy/types").Logger;
@@ -13,9 +13,9 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
13
13
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
14
14
  streamCollector: import("@smithy/types").StreamCollector;
15
15
  base64Decoder: import("@smithy/types").Decoder;
16
- base64Encoder: import("@smithy/types").Encoder;
16
+ base64Encoder: (_input: string | Uint8Array) => string;
17
17
  utf8Decoder: import("@smithy/types").Decoder;
18
- utf8Encoder: import("@smithy/types").Encoder;
18
+ utf8Encoder: (input: string | Uint8Array) => string;
19
19
  disableHostPrefix: boolean;
20
20
  serviceId: string;
21
21
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -2,7 +2,7 @@ import { BatchClientConfig } from "./BatchClient";
2
2
  export declare const getRuntimeConfig: (config: BatchClientConfig) => {
3
3
  apiVersion: string;
4
4
  base64Decoder: import("@smithy/types").Decoder;
5
- base64Encoder: import("@smithy/types").Encoder;
5
+ base64Encoder: (_input: string | Uint8Array) => string;
6
6
  disableHostPrefix: boolean;
7
7
  endpointProvider: (
8
8
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
17
17
  serviceId: string;
18
18
  urlParser: import("@smithy/types").UrlParser;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-batch",
3
3
  "description": "AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native",
4
- "version": "3.529.1",
4
+ "version": "3.533.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-batch",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.529.1",
24
- "@aws-sdk/core": "3.529.1",
25
- "@aws-sdk/credential-provider-node": "3.529.1",
26
- "@aws-sdk/middleware-host-header": "3.523.0",
27
- "@aws-sdk/middleware-logger": "3.523.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.523.0",
29
- "@aws-sdk/middleware-user-agent": "3.525.0",
30
- "@aws-sdk/region-config-resolver": "3.525.0",
31
- "@aws-sdk/types": "3.523.0",
32
- "@aws-sdk/util-endpoints": "3.525.0",
33
- "@aws-sdk/util-user-agent-browser": "3.523.0",
34
- "@aws-sdk/util-user-agent-node": "3.525.0",
35
- "@smithy/config-resolver": "^2.1.4",
36
- "@smithy/core": "^1.3.5",
37
- "@smithy/fetch-http-handler": "^2.4.3",
38
- "@smithy/hash-node": "^2.1.3",
39
- "@smithy/invalid-dependency": "^2.1.3",
40
- "@smithy/middleware-content-length": "^2.1.3",
41
- "@smithy/middleware-endpoint": "^2.4.4",
42
- "@smithy/middleware-retry": "^2.1.4",
43
- "@smithy/middleware-serde": "^2.1.3",
44
- "@smithy/middleware-stack": "^2.1.3",
45
- "@smithy/node-config-provider": "^2.2.4",
46
- "@smithy/node-http-handler": "^2.4.1",
47
- "@smithy/protocol-http": "^3.2.1",
48
- "@smithy/smithy-client": "^2.4.2",
49
- "@smithy/types": "^2.10.1",
50
- "@smithy/url-parser": "^2.1.3",
51
- "@smithy/util-base64": "^2.1.1",
23
+ "@aws-sdk/client-sts": "3.533.0",
24
+ "@aws-sdk/core": "3.533.0",
25
+ "@aws-sdk/credential-provider-node": "3.533.0",
26
+ "@aws-sdk/middleware-host-header": "3.533.0",
27
+ "@aws-sdk/middleware-logger": "3.533.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
+ "@aws-sdk/middleware-user-agent": "3.533.0",
30
+ "@aws-sdk/region-config-resolver": "3.533.0",
31
+ "@aws-sdk/types": "3.533.0",
32
+ "@aws-sdk/util-endpoints": "3.533.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.533.0",
34
+ "@aws-sdk/util-user-agent-node": "3.533.0",
35
+ "@smithy/config-resolver": "^2.1.5",
36
+ "@smithy/core": "^1.3.8",
37
+ "@smithy/fetch-http-handler": "^2.4.5",
38
+ "@smithy/hash-node": "^2.1.4",
39
+ "@smithy/invalid-dependency": "^2.1.4",
40
+ "@smithy/middleware-content-length": "^2.1.4",
41
+ "@smithy/middleware-endpoint": "^2.4.6",
42
+ "@smithy/middleware-retry": "^2.1.7",
43
+ "@smithy/middleware-serde": "^2.2.1",
44
+ "@smithy/middleware-stack": "^2.1.4",
45
+ "@smithy/node-config-provider": "^2.2.5",
46
+ "@smithy/node-http-handler": "^2.4.3",
47
+ "@smithy/protocol-http": "^3.2.2",
48
+ "@smithy/smithy-client": "^2.4.5",
49
+ "@smithy/types": "^2.11.0",
50
+ "@smithy/url-parser": "^2.1.4",
51
+ "@smithy/util-base64": "^2.2.1",
52
52
  "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.1",
54
- "@smithy/util-defaults-mode-browser": "^2.1.4",
55
- "@smithy/util-defaults-mode-node": "^2.2.3",
56
- "@smithy/util-endpoints": "^1.1.4",
57
- "@smithy/util-middleware": "^2.1.3",
58
- "@smithy/util-retry": "^2.1.3",
59
- "@smithy/util-utf8": "^2.1.1",
53
+ "@smithy/util-body-length-node": "^2.2.2",
54
+ "@smithy/util-defaults-mode-browser": "^2.1.7",
55
+ "@smithy/util-defaults-mode-node": "^2.2.7",
56
+ "@smithy/util-endpoints": "^1.1.5",
57
+ "@smithy/util-middleware": "^2.1.4",
58
+ "@smithy/util-retry": "^2.1.4",
59
+ "@smithy/util-utf8": "^2.2.0",
60
60
  "tslib": "^2.5.0"
61
61
  },
62
62
  "devDependencies": {