@aws-sdk/client-ssm-incidents 3.201.0 → 3.204.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.
@@ -17,6 +17,7 @@ const serializeAws_restJson1CreateReplicationSetCommand = async (input, context)
17
17
  body = JSON.stringify({
18
18
  clientToken: input.clientToken ?? (0, uuid_1.v4)(),
19
19
  ...(input.regions != null && { regions: serializeAws_restJson1RegionMapInput(input.regions, context) }),
20
+ ...(input.tags != null && { tags: serializeAws_restJson1TagMap(input.tags, context) }),
20
21
  });
21
22
  return new protocol_http_1.HttpRequest({
22
23
  protocol,
@@ -8,7 +8,6 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
8
8
  const fetch_http_handler_1 = require("@aws-sdk/fetch-http-handler");
9
9
  const invalid_dependency_1 = require("@aws-sdk/invalid-dependency");
10
10
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
11
- const util_base64_browser_1 = require("@aws-sdk/util-base64-browser");
12
11
  const util_body_length_browser_1 = require("@aws-sdk/util-body-length-browser");
13
12
  const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
14
13
  const util_utf8_browser_1 = require("@aws-sdk/util-utf8-browser");
@@ -24,8 +23,6 @@ const getRuntimeConfig = (config) => {
24
23
  ...config,
25
24
  runtime: "browser",
26
25
  defaultsMode,
27
- base64Decoder: config?.base64Decoder ?? util_base64_browser_1.fromBase64,
28
- base64Encoder: config?.base64Encoder ?? util_base64_browser_1.toBase64,
29
26
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
30
27
  credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
31
28
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -10,7 +10,6 @@ const hash_node_1 = require("@aws-sdk/hash-node");
10
10
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
11
11
  const node_config_provider_1 = require("@aws-sdk/node-config-provider");
12
12
  const node_http_handler_1 = require("@aws-sdk/node-http-handler");
13
- const util_base64_node_1 = require("@aws-sdk/util-base64-node");
14
13
  const util_body_length_node_1 = require("@aws-sdk/util-body-length-node");
15
14
  const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
16
15
  const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
@@ -28,8 +27,6 @@ const getRuntimeConfig = (config) => {
28
27
  ...config,
29
28
  runtime: "node",
30
29
  defaultsMode,
31
- base64Decoder: config?.base64Decoder ?? util_base64_node_1.fromBase64,
32
- base64Encoder: config?.base64Encoder ?? util_base64_node_1.toBase64,
33
30
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
34
31
  credentialDefaultProvider: config?.credentialDefaultProvider ?? (0, client_sts_1.decorateDefaultCredentialProvider)(credential_provider_node_1.defaultProvider),
35
32
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -2,9 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const url_parser_1 = require("@aws-sdk/url-parser");
5
+ const util_base64_1 = require("@aws-sdk/util-base64");
5
6
  const endpointResolver_1 = require("./endpoint/endpointResolver");
6
7
  const getRuntimeConfig = (config) => ({
7
8
  apiVersion: "2018-05-10",
9
+ base64Decoder: config?.base64Decoder ?? util_base64_1.fromBase64,
10
+ base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64,
8
11
  disableHostPrefix: config?.disableHostPrefix ?? false,
9
12
  endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
10
13
  logger: config?.logger ?? {},
@@ -13,6 +13,7 @@ export const serializeAws_restJson1CreateReplicationSetCommand = async (input, c
13
13
  body = JSON.stringify({
14
14
  clientToken: input.clientToken ?? generateIdempotencyToken(),
15
15
  ...(input.regions != null && { regions: serializeAws_restJson1RegionMapInput(input.regions, context) }),
16
+ ...(input.tags != null && { tags: serializeAws_restJson1TagMap(input.tags, context) }),
16
17
  });
17
18
  return new __HttpRequest({
18
19
  protocol,
@@ -4,7 +4,6 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-
4
4
  import { FetchHttpHandler as RequestHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
5
5
  import { invalidProvider } from "@aws-sdk/invalid-dependency";
6
6
  import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
7
- import { fromBase64, toBase64 } from "@aws-sdk/util-base64-browser";
8
7
  import { calculateBodyLength } from "@aws-sdk/util-body-length-browser";
9
8
  import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
10
9
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
@@ -20,8 +19,6 @@ export const getRuntimeConfig = (config) => {
20
19
  ...config,
21
20
  runtime: "browser",
22
21
  defaultsMode,
23
- base64Decoder: config?.base64Decoder ?? fromBase64,
24
- base64Encoder: config?.base64Encoder ?? toBase64,
25
22
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
26
23
  credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
27
24
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -6,7 +6,6 @@ import { Hash } from "@aws-sdk/hash-node";
6
6
  import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@aws-sdk/middleware-retry";
7
7
  import { loadConfig as loadNodeConfig } from "@aws-sdk/node-config-provider";
8
8
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@aws-sdk/node-http-handler";
9
- import { fromBase64, toBase64 } from "@aws-sdk/util-base64-node";
10
9
  import { calculateBodyLength } from "@aws-sdk/util-body-length-node";
11
10
  import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
12
11
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
@@ -24,8 +23,6 @@ export const getRuntimeConfig = (config) => {
24
23
  ...config,
25
24
  runtime: "node",
26
25
  defaultsMode,
27
- base64Decoder: config?.base64Decoder ?? fromBase64,
28
- base64Encoder: config?.base64Encoder ?? toBase64,
29
26
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
30
27
  credentialDefaultProvider: config?.credentialDefaultProvider ?? decorateDefaultCredentialProvider(credentialDefaultProvider),
31
28
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -1,7 +1,10 @@
1
1
  import { parseUrl } from "@aws-sdk/url-parser";
2
+ import { fromBase64, toBase64 } from "@aws-sdk/util-base64";
2
3
  import { defaultEndpointResolver } from "./endpoint/endpointResolver";
3
4
  export const getRuntimeConfig = (config) => ({
4
5
  apiVersion: "2018-05-10",
6
+ base64Decoder: config?.base64Decoder ?? fromBase64,
7
+ base64Encoder: config?.base64Encoder ?? toBase64,
5
8
  disableHostPrefix: config?.disableHostPrefix ?? false,
6
9
  endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
7
10
  logger: config?.logger ?? {},
@@ -167,8 +167,8 @@ export declare class SSMIncidents extends SSMIncidentsClient {
167
167
  /**
168
168
  * <p>Adds a resource policy to the specified response plan. The resource policy is used to
169
169
  * share the response plan using Resource Access Manager (RAM). For more
170
- * information about cross-account sharing, see <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/xa.html">Setting up
171
- * cross-account functionality</a>.</p>
170
+ * information about cross-account sharing, see <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/incident-manager-cross-account-cross-region.html">Cross-Region and cross-account incident
171
+ * management</a>.</p>
172
172
  */
173
173
  putResourcePolicy(args: PutResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePolicyCommandOutput>;
174
174
  putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
@@ -10,8 +10,8 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
10
10
  /**
11
11
  * <p>Adds a resource policy to the specified response plan. The resource policy is used to
12
12
  * share the response plan using Resource Access Manager (RAM). For more
13
- * information about cross-account sharing, see <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/xa.html">Setting up
14
- * cross-account functionality</a>.</p>
13
+ * information about cross-account sharing, see <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/incident-manager-cross-account-cross-region.html">Cross-Region and cross-account incident
14
+ * management</a>.</p>
15
15
  * @example
16
16
  * Use a bare-bones client and the command you need to make an API call.
17
17
  * ```javascript
@@ -306,10 +306,14 @@ export interface CreateReplicationSetInput {
306
306
  */
307
307
  regions: Record<string, RegionMapInputValue> | undefined;
308
308
  /**
309
- * <p>A token ensuring that the operation is called only once with the specified
309
+ * <p>A token that ensures that the operation is called only once with the specified
310
310
  * details.</p>
311
311
  */
312
312
  clientToken?: string;
313
+ /**
314
+ * <p>A list of tags to add to the replication set.</p>
315
+ */
316
+ tags?: Record<string, string>;
313
317
  }
314
318
  export interface CreateReplicationSetOutput {
315
319
  /**
@@ -441,7 +445,9 @@ export interface IncidentTemplate {
441
445
  */
442
446
  notificationTargets?: NotificationTargetItem[];
443
447
  /**
444
- * <p>Tags to apply to an incident when calling the <code>StartIncident</code> API action.</p>
448
+ * <p>Tags to assign to the template. When the <code>StartIncident</code> API action is
449
+ * called, Incident Manager assigns the tags specified in the template to the
450
+ * incident.</p>
445
451
  */
446
452
  incidentTags?: Record<string, string>;
447
453
  }
@@ -469,8 +475,8 @@ export interface CreateResponsePlanInput {
469
475
  */
470
476
  chatChannel?: ChatChannel;
471
477
  /**
472
- * <p>The contacts and escalation plans that the response plan engages during an
473
- * incident.</p>
478
+ * <p>The Amazon Resource Name (ARN) for the contacts and escalation plans that the response
479
+ * plan engages during an incident.</p>
474
480
  */
475
481
  engagements?: string[];
476
482
  /**
@@ -862,11 +868,12 @@ export interface GetReplicationSetOutput {
862
868
  }
863
869
  export interface GetResourcePoliciesInput {
864
870
  /**
865
- * <p>The Amazon Resource Name (ARN) of the response plan with the attached resource policy. </p>
871
+ * <p>The Amazon Resource Name (ARN) of the response plan with the attached resource policy.
872
+ * </p>
866
873
  */
867
874
  resourceArn: string | undefined;
868
875
  /**
869
- * <p>The maximum number of resource policies to display per page of results.</p>
876
+ * <p>The maximum number of resource policies to display for each page of results.</p>
870
877
  */
871
878
  maxResults?: number;
872
879
  /**
@@ -931,8 +938,8 @@ export interface GetResponsePlanOutput {
931
938
  */
932
939
  chatChannel?: ChatChannel;
933
940
  /**
934
- * <p>The contacts and escalation plans that the response plan engages during an
935
- * incident.</p>
941
+ * <p>The Amazon Resource Name (ARN) for the contacts and escalation plans that the response
942
+ * plan engages during an incident.</p>
936
943
  */
937
944
  engagements?: string[];
938
945
  /**
@@ -1337,7 +1344,7 @@ export interface ListTimelineEventsOutput {
1337
1344
  }
1338
1345
  export interface PutResourcePolicyInput {
1339
1346
  /**
1340
- * <p>The Amazon Resource Name (ARN) of the response plan you're adding the resource policy
1347
+ * <p>The Amazon Resource Name (ARN) of the response plan to add the resource policy
1341
1348
  * to.</p>
1342
1349
  */
1343
1350
  resourceArn: string | undefined;
@@ -1482,7 +1489,7 @@ export interface TagResourceRequest {
1482
1489
  */
1483
1490
  resourceArn: string | undefined;
1484
1491
  /**
1485
- * <p>A list of tags that you are adding to the response plan.</p>
1492
+ * <p>A list of tags to add to the response plan.</p>
1486
1493
  */
1487
1494
  tags: Record<string, string> | undefined;
1488
1495
  }
@@ -1494,7 +1501,7 @@ export interface UntagResourceRequest {
1494
1501
  */
1495
1502
  resourceArn: string | undefined;
1496
1503
  /**
1497
- * <p>The name of the tag you're removing from the response plan.</p>
1504
+ * <p>The name of the tag to remove from the response plan.</p>
1498
1505
  */
1499
1506
  tagKeys: string[] | undefined;
1500
1507
  }
@@ -1502,15 +1509,15 @@ export interface UntagResourceResponse {
1502
1509
  }
1503
1510
  export interface UpdateDeletionProtectionInput {
1504
1511
  /**
1505
- * <p>The Amazon Resource Name (ARN) of the replication set you're updating.</p>
1512
+ * <p>The Amazon Resource Name (ARN) of the replication set to update.</p>
1506
1513
  */
1507
1514
  arn: string | undefined;
1508
1515
  /**
1509
- * <p>Details if deletion protection is enabled or disabled in your account.</p>
1516
+ * <p>Specifies if deletion protection is turned on or off in your account. </p>
1510
1517
  */
1511
1518
  deletionProtected: boolean | undefined;
1512
1519
  /**
1513
- * <p>A token ensuring that the operation is called only once with the specified
1520
+ * <p>A token that ensures that the operation is called only once with the specified
1514
1521
  * details.</p>
1515
1522
  */
1516
1523
  clientToken?: string;
@@ -1652,7 +1659,7 @@ export interface UpdateReplicationSetInput {
1652
1659
  */
1653
1660
  actions: UpdateReplicationSetAction[] | undefined;
1654
1661
  /**
1655
- * <p>A token ensuring that the operation is called only once with the specified
1662
+ * <p>A token that ensures that the operation is called only once with the specified
1656
1663
  * details.</p>
1657
1664
  */
1658
1665
  clientToken?: string;
@@ -1730,8 +1737,8 @@ export interface UpdateResponsePlanInput {
1730
1737
  */
1731
1738
  chatChannel?: ChatChannel;
1732
1739
  /**
1733
- * <p>The contacts and escalation plans that Incident Manager engages at the start of the
1734
- * incident.</p>
1740
+ * <p>The Amazon Resource Name (ARN) for the contacts and escalation plans that the response
1741
+ * plan engages during an incident.</p>
1735
1742
  */
1736
1743
  engagements?: string[];
1737
1744
  /**
@@ -1739,9 +1746,10 @@ export interface UpdateResponsePlanInput {
1739
1746
  */
1740
1747
  actions?: Action[];
1741
1748
  /**
1742
- * <p>Tags to apply to an incident when calling the <code>StartIncident</code> API action.
1743
- * To call this action, you must also have permission to call the <code>TagResource</code>
1744
- * API action for the incident record resource.</p>
1749
+ * <p>Tags to assign to the template. When the <code>StartIncident</code> API action is
1750
+ * called, Incident Manager assigns the tags specified in the template to the
1751
+ * incident. To call this action, you must also have permission to call the
1752
+ * <code>TagResource</code> API action for the incident record resource.</p>
1745
1753
  */
1746
1754
  incidentTemplateTags?: Record<string, string>;
1747
1755
  }
@@ -6,8 +6,6 @@ import { SSMIncidentsClientConfig } from "./SSMIncidentsClient";
6
6
  export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
- base64Decoder: import("@aws-sdk/types").Decoder;
10
- base64Encoder: import("@aws-sdk/types").Encoder;
11
9
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
@@ -23,6 +21,8 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
23
21
  utf8Encoder: import("@aws-sdk/types").Encoder;
24
22
  apiVersion: string;
25
23
  urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
@@ -6,8 +6,6 @@ import { SSMIncidentsClientConfig } from "./SSMIncidentsClient";
6
6
  export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
- base64Decoder: import("@aws-sdk/types").Decoder;
10
- base64Encoder: import("@aws-sdk/types").Encoder;
11
9
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
@@ -23,6 +21,8 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
23
21
  utf8Encoder: import("@aws-sdk/types").Encoder;
24
22
  apiVersion: string;
25
23
  urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
@@ -5,6 +5,8 @@ import { SSMIncidentsClientConfig } from "./SSMIncidentsClient";
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
7
7
  apiVersion: string;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
8
10
  disableHostPrefix: boolean;
9
11
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
10
12
  logger?: __Logger | undefined;
@@ -193,6 +193,7 @@ export interface RegionMapInputValue {
193
193
  export interface CreateReplicationSetInput {
194
194
  regions: Record<string, RegionMapInputValue> | undefined;
195
195
  clientToken?: string;
196
+ tags?: Record<string, string>;
196
197
  }
197
198
  export interface CreateReplicationSetOutput {
198
199
  arn: string | undefined;
@@ -5,8 +5,6 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
5
5
  defaultsMode: import("@aws-sdk/types").Provider<
6
6
  import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
- base64Decoder: import("@aws-sdk/types").Decoder;
9
- base64Encoder: import("@aws-sdk/types").Encoder;
10
8
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
9
  credentialDefaultProvider: (
12
10
  input: any
@@ -33,6 +31,8 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
33
31
  utf8Encoder: import("@aws-sdk/types").Encoder;
34
32
  apiVersion: string;
35
33
  urlParser: import("@aws-sdk/types").UrlParser;
34
+ base64Decoder: import("@aws-sdk/types").Decoder;
35
+ base64Encoder: import("@aws-sdk/types").Encoder;
36
36
  disableHostPrefix: boolean;
37
37
  logger: import("@aws-sdk/types").Logger;
38
38
  serviceId: string;
@@ -5,8 +5,6 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
5
5
  defaultsMode: import("@aws-sdk/types").Provider<
6
6
  import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
- base64Decoder: import("@aws-sdk/types").Decoder;
9
- base64Encoder: import("@aws-sdk/types").Encoder;
10
8
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
9
  credentialDefaultProvider: (
12
10
  input: any
@@ -33,6 +31,8 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
33
31
  utf8Encoder: import("@aws-sdk/types").Encoder;
34
32
  apiVersion: string;
35
33
  urlParser: import("@aws-sdk/types").UrlParser;
34
+ base64Decoder: import("@aws-sdk/types").Decoder;
35
+ base64Encoder: import("@aws-sdk/types").Encoder;
36
36
  disableHostPrefix: boolean;
37
37
  logger: import("@aws-sdk/types").Logger;
38
38
  serviceId: string;
@@ -2,6 +2,8 @@ import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { SSMIncidentsClientConfig } from "./SSMIncidentsClient";
3
3
  export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
4
4
  apiVersion: string;
5
+ base64Decoder: import("@aws-sdk/types").Decoder;
6
+ base64Encoder: import("@aws-sdk/types").Encoder;
5
7
  disableHostPrefix: boolean;
6
8
  endpointProvider: (
7
9
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ssm-incidents",
3
3
  "description": "AWS SDK for JavaScript Ssm Incidents Client for Node.js, Browser and React Native",
4
- "version": "3.201.0",
4
+ "version": "3.204.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",
@@ -19,10 +19,10 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.201.0",
22
+ "@aws-sdk/client-sts": "3.204.0",
23
23
  "@aws-sdk/config-resolver": "3.201.0",
24
- "@aws-sdk/credential-provider-node": "3.201.0",
25
- "@aws-sdk/fetch-http-handler": "3.201.0",
24
+ "@aws-sdk/credential-provider-node": "3.204.0",
25
+ "@aws-sdk/fetch-http-handler": "3.204.0",
26
26
  "@aws-sdk/hash-node": "3.201.0",
27
27
  "@aws-sdk/invalid-dependency": "3.201.0",
28
28
  "@aws-sdk/middleware-content-length": "3.201.0",
@@ -41,13 +41,14 @@
41
41
  "@aws-sdk/smithy-client": "3.201.0",
42
42
  "@aws-sdk/types": "3.201.0",
43
43
  "@aws-sdk/url-parser": "3.201.0",
44
+ "@aws-sdk/util-base64": "3.202.0",
44
45
  "@aws-sdk/util-base64-browser": "3.188.0",
45
46
  "@aws-sdk/util-base64-node": "3.201.0",
46
47
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
48
  "@aws-sdk/util-body-length-node": "3.201.0",
48
49
  "@aws-sdk/util-defaults-mode-browser": "3.201.0",
49
50
  "@aws-sdk/util-defaults-mode-node": "3.201.0",
50
- "@aws-sdk/util-endpoints": "3.201.0",
51
+ "@aws-sdk/util-endpoints": "3.202.0",
51
52
  "@aws-sdk/util-user-agent-browser": "3.201.0",
52
53
  "@aws-sdk/util-user-agent-node": "3.201.0",
53
54
  "@aws-sdk/util-utf8-browser": "3.188.0",