@aws-sdk/client-arc-zonal-shift 3.461.0 → 3.464.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 (55) hide show
  1. package/README.md +74 -22
  2. package/dist-cjs/ARCZonalShift.js +10 -0
  3. package/dist-cjs/commands/CreatePracticeRunConfigurationCommand.js +51 -0
  4. package/dist-cjs/commands/DeletePracticeRunConfigurationCommand.js +51 -0
  5. package/dist-cjs/commands/ListAutoshiftsCommand.js +51 -0
  6. package/dist-cjs/commands/UpdatePracticeRunConfigurationCommand.js +51 -0
  7. package/dist-cjs/commands/UpdateZonalAutoshiftConfigurationCommand.js +51 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +61 -34
  10. package/dist-cjs/pagination/ListAutoshiftsPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +419 -2
  13. package/dist-es/ARCZonalShift.js +10 -0
  14. package/dist-es/commands/CreatePracticeRunConfigurationCommand.js +47 -0
  15. package/dist-es/commands/DeletePracticeRunConfigurationCommand.js +47 -0
  16. package/dist-es/commands/ListAutoshiftsCommand.js +47 -0
  17. package/dist-es/commands/UpdatePracticeRunConfigurationCommand.js +47 -0
  18. package/dist-es/commands/UpdateZonalAutoshiftConfigurationCommand.js +47 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +58 -31
  21. package/dist-es/pagination/ListAutoshiftsPaginator.js +25 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +408 -1
  24. package/dist-types/ARCZonalShift.d.ts +62 -15
  25. package/dist-types/ARCZonalShiftClient.d.ts +34 -17
  26. package/dist-types/commands/CancelZonalShiftCommand.d.ts +5 -2
  27. package/dist-types/commands/CreatePracticeRunConfigurationCommand.d.ts +138 -0
  28. package/dist-types/commands/DeletePracticeRunConfigurationCommand.d.ts +95 -0
  29. package/dist-types/commands/GetManagedResourceCommand.d.ts +33 -4
  30. package/dist-types/commands/ListAutoshiftsCommand.d.ts +95 -0
  31. package/dist-types/commands/ListManagedResourcesCommand.d.ts +28 -3
  32. package/dist-types/commands/ListZonalShiftsCommand.d.ts +8 -2
  33. package/dist-types/commands/StartZonalShiftCommand.d.ts +8 -7
  34. package/dist-types/commands/UpdatePracticeRunConfigurationCommand.d.ts +133 -0
  35. package/dist-types/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +96 -0
  36. package/dist-types/commands/UpdateZonalShiftCommand.d.ts +2 -2
  37. package/dist-types/commands/index.d.ts +5 -0
  38. package/dist-types/index.d.ts +27 -15
  39. package/dist-types/models/models_0.d.ts +698 -95
  40. package/dist-types/pagination/ListAutoshiftsPaginator.d.ts +7 -0
  41. package/dist-types/pagination/index.d.ts +1 -0
  42. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  43. package/dist-types/ts3.4/ARCZonalShift.d.ts +91 -0
  44. package/dist-types/ts3.4/ARCZonalShiftClient.d.ts +30 -0
  45. package/dist-types/ts3.4/commands/CreatePracticeRunConfigurationCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/DeletePracticeRunConfigurationCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/ListAutoshiftsCommand.d.ts +38 -0
  48. package/dist-types/ts3.4/commands/UpdatePracticeRunConfigurationCommand.d.ts +42 -0
  49. package/dist-types/ts3.4/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +42 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +143 -23
  52. package/dist-types/ts3.4/pagination/ListAutoshiftsPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  55. package/package.json +2 -2
@@ -12,23 +12,6 @@ export declare const AppliedStatus: {
12
12
  readonly NOT_APPLIED: "NOT_APPLIED";
13
13
  };
14
14
  export type AppliedStatus = (typeof AppliedStatus)[keyof typeof AppliedStatus];
15
- export interface CancelZonalShiftRequest {
16
- zonalShiftId: string | undefined;
17
- }
18
- export declare const ConflictExceptionReason: {
19
- readonly SIMULTANEOUS_ZONAL_SHIFTS_CONFLICT: "SimultaneousZonalShiftsConflict";
20
- readonly ZONAL_SHIFT_ALREADY_EXISTS: "ZonalShiftAlreadyExists";
21
- readonly ZONAL_SHIFT_STATUS_NOT_ACTIVE: "ZonalShiftStatusNotActive";
22
- };
23
- export type ConflictExceptionReason =
24
- (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
25
- export declare class ConflictException extends __BaseException {
26
- readonly name: "ConflictException";
27
- readonly $fault: "client";
28
- reason: ConflictExceptionReason | undefined;
29
- zonalShiftId?: string;
30
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
31
- }
32
15
  export declare class InternalServerException extends __BaseException {
33
16
  readonly name: "InternalServerException";
34
17
  readonly $fault: "server";
@@ -36,12 +19,26 @@ export declare class InternalServerException extends __BaseException {
36
19
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
37
20
  );
38
21
  }
39
- export declare class ResourceNotFoundException extends __BaseException {
40
- readonly name: "ResourceNotFoundException";
41
- readonly $fault: "client";
42
- constructor(
43
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
44
- );
22
+ export declare const AutoshiftExecutionStatus: {
23
+ readonly ACTIVE: "ACTIVE";
24
+ readonly COMPLETED: "COMPLETED";
25
+ };
26
+ export type AutoshiftExecutionStatus =
27
+ (typeof AutoshiftExecutionStatus)[keyof typeof AutoshiftExecutionStatus];
28
+ export interface ListAutoshiftsRequest {
29
+ nextToken?: string;
30
+ status?: AutoshiftExecutionStatus;
31
+ maxResults?: number;
32
+ }
33
+ export interface AutoshiftSummary {
34
+ awayFrom: string | undefined;
35
+ endTime: Date | undefined;
36
+ startTime: Date | undefined;
37
+ status: AutoshiftExecutionStatus | undefined;
38
+ }
39
+ export interface ListAutoshiftsResponse {
40
+ items?: AutoshiftSummary[];
41
+ nextToken?: string;
45
42
  }
46
43
  export declare class ThrottlingException extends __BaseException {
47
44
  readonly name: "ThrottlingException";
@@ -51,8 +48,11 @@ export declare class ThrottlingException extends __BaseException {
51
48
  );
52
49
  }
53
50
  export declare const ValidationExceptionReason: {
51
+ readonly INVALID_ALARM_CONDITION: "InvalidAlarmCondition";
54
52
  readonly INVALID_AZ: "InvalidAz";
53
+ readonly INVALID_CONDITION_TYPE: "InvalidConditionType";
55
54
  readonly INVALID_EXPIRES_IN: "InvalidExpiresIn";
55
+ readonly INVALID_PRACTICE_BLOCKER: "InvalidPracticeBlocker";
56
56
  readonly INVALID_RESOURCE_IDENTIFIER: "InvalidResourceIdentifier";
57
57
  readonly INVALID_STATUS: "InvalidStatus";
58
58
  readonly INVALID_TOKEN: "InvalidToken";
@@ -69,6 +69,44 @@ export declare class ValidationException extends __BaseException {
69
69
  opts: __ExceptionOptionType<ValidationException, __BaseException>
70
70
  );
71
71
  }
72
+ export declare const AutoshiftAppliedStatus: {
73
+ readonly APPLIED: "APPLIED";
74
+ readonly NOT_APPLIED: "NOT_APPLIED";
75
+ };
76
+ export type AutoshiftAppliedStatus =
77
+ (typeof AutoshiftAppliedStatus)[keyof typeof AutoshiftAppliedStatus];
78
+ export interface AutoshiftInResource {
79
+ appliedStatus: AutoshiftAppliedStatus | undefined;
80
+ awayFrom: string | undefined;
81
+ startTime: Date | undefined;
82
+ }
83
+ export interface CancelZonalShiftRequest {
84
+ zonalShiftId: string | undefined;
85
+ }
86
+ export declare const ConflictExceptionReason: {
87
+ readonly AUTOSHIFT_ENABLED: "AutoShiftEnabled";
88
+ readonly PRACTICE_CONFIGURATION_ALREADY_EXISTS: "PracticeConfigurationAlreadyExists";
89
+ readonly PRACTICE_CONFIGURATION_DOES_NOT_EXIST: "PracticeConfigurationDoesNotExist";
90
+ readonly SIMULTANEOUS_ZONAL_SHIFTS_CONFLICT: "SimultaneousZonalShiftsConflict";
91
+ readonly ZONAL_SHIFT_ALREADY_EXISTS: "ZonalShiftAlreadyExists";
92
+ readonly ZONAL_SHIFT_STATUS_NOT_ACTIVE: "ZonalShiftStatusNotActive";
93
+ };
94
+ export type ConflictExceptionReason =
95
+ (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
96
+ export declare class ConflictException extends __BaseException {
97
+ readonly name: "ConflictException";
98
+ readonly $fault: "client";
99
+ reason: ConflictExceptionReason | undefined;
100
+ zonalShiftId?: string;
101
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
102
+ }
103
+ export declare class ResourceNotFoundException extends __BaseException {
104
+ readonly name: "ResourceNotFoundException";
105
+ readonly $fault: "client";
106
+ constructor(
107
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
108
+ );
109
+ }
72
110
  export declare const ZonalShiftStatus: {
73
111
  readonly ACTIVE: "ACTIVE";
74
112
  readonly CANCELED: "CANCELED";
@@ -85,9 +123,59 @@ export interface ZonalShift {
85
123
  status: ZonalShiftStatus | undefined;
86
124
  comment: string | undefined;
87
125
  }
126
+ export declare const ControlConditionType: {
127
+ readonly CLOUDWATCH: "CLOUDWATCH";
128
+ };
129
+ export type ControlConditionType =
130
+ (typeof ControlConditionType)[keyof typeof ControlConditionType];
131
+ export interface ControlCondition {
132
+ type: ControlConditionType | undefined;
133
+ alarmIdentifier: string | undefined;
134
+ }
135
+ export interface CreatePracticeRunConfigurationRequest {
136
+ resourceIdentifier: string | undefined;
137
+ blockedWindows?: string[];
138
+ blockedDates?: string[];
139
+ blockingAlarms?: ControlCondition[];
140
+ outcomeAlarms: ControlCondition[] | undefined;
141
+ }
142
+ export interface PracticeRunConfiguration {
143
+ blockingAlarms?: ControlCondition[];
144
+ outcomeAlarms: ControlCondition[] | undefined;
145
+ blockedWindows?: string[];
146
+ blockedDates?: string[];
147
+ }
148
+ export declare const ZonalAutoshiftStatus: {
149
+ readonly DISABLED: "DISABLED";
150
+ readonly ENABLED: "ENABLED";
151
+ };
152
+ export type ZonalAutoshiftStatus =
153
+ (typeof ZonalAutoshiftStatus)[keyof typeof ZonalAutoshiftStatus];
154
+ export interface CreatePracticeRunConfigurationResponse {
155
+ arn: string | undefined;
156
+ name: string | undefined;
157
+ zonalAutoshiftStatus: ZonalAutoshiftStatus | undefined;
158
+ practiceRunConfiguration: PracticeRunConfiguration | undefined;
159
+ }
160
+ export interface DeletePracticeRunConfigurationRequest {
161
+ resourceIdentifier: string | undefined;
162
+ }
163
+ export interface DeletePracticeRunConfigurationResponse {
164
+ arn: string | undefined;
165
+ name: string | undefined;
166
+ zonalAutoshiftStatus: ZonalAutoshiftStatus | undefined;
167
+ }
88
168
  export interface GetManagedResourceRequest {
89
169
  resourceIdentifier: string | undefined;
90
170
  }
171
+ export declare const PracticeRunOutcome: {
172
+ readonly FAILED: "FAILED";
173
+ readonly INTERRUPTED: "INTERRUPTED";
174
+ readonly PENDING: "PENDING";
175
+ readonly SUCCEEDED: "SUCCEEDED";
176
+ };
177
+ export type PracticeRunOutcome =
178
+ (typeof PracticeRunOutcome)[keyof typeof PracticeRunOutcome];
91
179
  export interface ZonalShiftInResource {
92
180
  appliedStatus: AppliedStatus | undefined;
93
181
  zonalShiftId: string | undefined;
@@ -96,12 +184,16 @@ export interface ZonalShiftInResource {
96
184
  expiryTime: Date | undefined;
97
185
  startTime: Date | undefined;
98
186
  comment: string | undefined;
187
+ practiceRunOutcome?: PracticeRunOutcome;
99
188
  }
100
189
  export interface GetManagedResourceResponse {
101
190
  arn?: string;
102
191
  name?: string;
103
192
  appliedWeights: Record<string, number> | undefined;
104
193
  zonalShifts: ZonalShiftInResource[] | undefined;
194
+ autoshifts?: AutoshiftInResource[];
195
+ practiceRunConfiguration?: PracticeRunConfiguration;
196
+ zonalAutoshiftStatus?: ZonalAutoshiftStatus;
105
197
  }
106
198
  export interface ListManagedResourcesRequest {
107
199
  nextToken?: string;
@@ -111,6 +203,11 @@ export interface ManagedResourceSummary {
111
203
  arn?: string;
112
204
  name?: string;
113
205
  availabilityZones: string[] | undefined;
206
+ appliedWeights?: Record<string, number>;
207
+ zonalShifts?: ZonalShiftInResource[];
208
+ autoshifts?: AutoshiftInResource[];
209
+ zonalAutoshiftStatus?: ZonalAutoshiftStatus;
210
+ practiceRunStatus?: ZonalAutoshiftStatus;
114
211
  }
115
212
  export interface ListManagedResourcesResponse {
116
213
  items: ManagedResourceSummary[] | undefined;
@@ -120,6 +217,7 @@ export interface ListZonalShiftsRequest {
120
217
  nextToken?: string;
121
218
  status?: ZonalShiftStatus;
122
219
  maxResults?: number;
220
+ resourceIdentifier?: string;
123
221
  }
124
222
  export interface ZonalShiftSummary {
125
223
  zonalShiftId: string | undefined;
@@ -129,11 +227,33 @@ export interface ZonalShiftSummary {
129
227
  startTime: Date | undefined;
130
228
  status: ZonalShiftStatus | undefined;
131
229
  comment: string | undefined;
230
+ practiceRunOutcome?: PracticeRunOutcome;
132
231
  }
133
232
  export interface ListZonalShiftsResponse {
134
233
  items?: ZonalShiftSummary[];
135
234
  nextToken?: string;
136
235
  }
236
+ export interface UpdateZonalAutoshiftConfigurationRequest {
237
+ resourceIdentifier: string | undefined;
238
+ zonalAutoshiftStatus: ZonalAutoshiftStatus | undefined;
239
+ }
240
+ export interface UpdateZonalAutoshiftConfigurationResponse {
241
+ resourceIdentifier: string | undefined;
242
+ zonalAutoshiftStatus: ZonalAutoshiftStatus | undefined;
243
+ }
244
+ export interface UpdatePracticeRunConfigurationRequest {
245
+ resourceIdentifier: string | undefined;
246
+ blockedWindows?: string[];
247
+ blockedDates?: string[];
248
+ blockingAlarms?: ControlCondition[];
249
+ outcomeAlarms?: ControlCondition[];
250
+ }
251
+ export interface UpdatePracticeRunConfigurationResponse {
252
+ arn: string | undefined;
253
+ name: string | undefined;
254
+ zonalAutoshiftStatus: ZonalAutoshiftStatus | undefined;
255
+ practiceRunConfiguration: PracticeRunConfiguration | undefined;
256
+ }
137
257
  export interface UpdateZonalShiftRequest {
138
258
  zonalShiftId: string | undefined;
139
259
  comment?: string;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListAutoshiftsCommandInput,
4
+ ListAutoshiftsCommandOutput,
5
+ } from "../commands/ListAutoshiftsCommand";
6
+ import { ARCZonalShiftPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAutoshifts(
8
+ config: ARCZonalShiftPaginationConfiguration,
9
+ input: ListAutoshiftsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAutoshiftsCommandOutput>;
@@ -1,3 +1,4 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListAutoshiftsPaginator";
2
3
  export * from "./ListManagedResourcesPaginator";
3
4
  export * from "./ListZonalShiftsPaginator";
@@ -7,10 +7,22 @@ import {
7
7
  CancelZonalShiftCommandInput,
8
8
  CancelZonalShiftCommandOutput,
9
9
  } from "../commands/CancelZonalShiftCommand";
10
+ import {
11
+ CreatePracticeRunConfigurationCommandInput,
12
+ CreatePracticeRunConfigurationCommandOutput,
13
+ } from "../commands/CreatePracticeRunConfigurationCommand";
14
+ import {
15
+ DeletePracticeRunConfigurationCommandInput,
16
+ DeletePracticeRunConfigurationCommandOutput,
17
+ } from "../commands/DeletePracticeRunConfigurationCommand";
10
18
  import {
11
19
  GetManagedResourceCommandInput,
12
20
  GetManagedResourceCommandOutput,
13
21
  } from "../commands/GetManagedResourceCommand";
22
+ import {
23
+ ListAutoshiftsCommandInput,
24
+ ListAutoshiftsCommandOutput,
25
+ } from "../commands/ListAutoshiftsCommand";
14
26
  import {
15
27
  ListManagedResourcesCommandInput,
16
28
  ListManagedResourcesCommandOutput,
@@ -23,6 +35,14 @@ import {
23
35
  StartZonalShiftCommandInput,
24
36
  StartZonalShiftCommandOutput,
25
37
  } from "../commands/StartZonalShiftCommand";
38
+ import {
39
+ UpdatePracticeRunConfigurationCommandInput,
40
+ UpdatePracticeRunConfigurationCommandOutput,
41
+ } from "../commands/UpdatePracticeRunConfigurationCommand";
42
+ import {
43
+ UpdateZonalAutoshiftConfigurationCommandInput,
44
+ UpdateZonalAutoshiftConfigurationCommandOutput,
45
+ } from "../commands/UpdateZonalAutoshiftConfigurationCommand";
26
46
  import {
27
47
  UpdateZonalShiftCommandInput,
28
48
  UpdateZonalShiftCommandOutput,
@@ -31,10 +51,22 @@ export declare const se_CancelZonalShiftCommand: (
31
51
  input: CancelZonalShiftCommandInput,
32
52
  context: __SerdeContext
33
53
  ) => Promise<__HttpRequest>;
54
+ export declare const se_CreatePracticeRunConfigurationCommand: (
55
+ input: CreatePracticeRunConfigurationCommandInput,
56
+ context: __SerdeContext
57
+ ) => Promise<__HttpRequest>;
58
+ export declare const se_DeletePracticeRunConfigurationCommand: (
59
+ input: DeletePracticeRunConfigurationCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
34
62
  export declare const se_GetManagedResourceCommand: (
35
63
  input: GetManagedResourceCommandInput,
36
64
  context: __SerdeContext
37
65
  ) => Promise<__HttpRequest>;
66
+ export declare const se_ListAutoshiftsCommand: (
67
+ input: ListAutoshiftsCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
38
70
  export declare const se_ListManagedResourcesCommand: (
39
71
  input: ListManagedResourcesCommandInput,
40
72
  context: __SerdeContext
@@ -47,6 +79,14 @@ export declare const se_StartZonalShiftCommand: (
47
79
  input: StartZonalShiftCommandInput,
48
80
  context: __SerdeContext
49
81
  ) => Promise<__HttpRequest>;
82
+ export declare const se_UpdatePracticeRunConfigurationCommand: (
83
+ input: UpdatePracticeRunConfigurationCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const se_UpdateZonalAutoshiftConfigurationCommand: (
87
+ input: UpdateZonalAutoshiftConfigurationCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
50
90
  export declare const se_UpdateZonalShiftCommand: (
51
91
  input: UpdateZonalShiftCommandInput,
52
92
  context: __SerdeContext
@@ -55,10 +95,22 @@ export declare const de_CancelZonalShiftCommand: (
55
95
  output: __HttpResponse,
56
96
  context: __SerdeContext
57
97
  ) => Promise<CancelZonalShiftCommandOutput>;
98
+ export declare const de_CreatePracticeRunConfigurationCommand: (
99
+ output: __HttpResponse,
100
+ context: __SerdeContext
101
+ ) => Promise<CreatePracticeRunConfigurationCommandOutput>;
102
+ export declare const de_DeletePracticeRunConfigurationCommand: (
103
+ output: __HttpResponse,
104
+ context: __SerdeContext
105
+ ) => Promise<DeletePracticeRunConfigurationCommandOutput>;
58
106
  export declare const de_GetManagedResourceCommand: (
59
107
  output: __HttpResponse,
60
108
  context: __SerdeContext
61
109
  ) => Promise<GetManagedResourceCommandOutput>;
110
+ export declare const de_ListAutoshiftsCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<ListAutoshiftsCommandOutput>;
62
114
  export declare const de_ListManagedResourcesCommand: (
63
115
  output: __HttpResponse,
64
116
  context: __SerdeContext
@@ -71,6 +123,14 @@ export declare const de_StartZonalShiftCommand: (
71
123
  output: __HttpResponse,
72
124
  context: __SerdeContext
73
125
  ) => Promise<StartZonalShiftCommandOutput>;
126
+ export declare const de_UpdatePracticeRunConfigurationCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<UpdatePracticeRunConfigurationCommandOutput>;
130
+ export declare const de_UpdateZonalAutoshiftConfigurationCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<UpdateZonalAutoshiftConfigurationCommandOutput>;
74
134
  export declare const de_UpdateZonalShiftCommand: (
75
135
  output: __HttpResponse,
76
136
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-arc-zonal-shift",
3
3
  "description": "AWS SDK for JavaScript Arc Zonal Shift Client for Node.js, Browser and React Native",
4
- "version": "3.461.0",
4
+ "version": "3.464.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,7 +21,7 @@
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.461.0",
24
+ "@aws-sdk/client-sts": "3.462.0",
25
25
  "@aws-sdk/core": "3.451.0",
26
26
  "@aws-sdk/credential-provider-node": "3.460.0",
27
27
  "@aws-sdk/middleware-host-header": "3.460.0",