@aws-sdk/client-codestar-notifications 3.171.0 → 3.178.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/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-codestar-notifications
9
+
10
+
11
+
12
+
13
+
14
+ # [3.173.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.172.0...v3.173.0) (2022-09-16)
15
+
16
+
17
+ ### Features
18
+
19
+ * **client-codestar-notifications:** This release adds tag based access control for the UntagResource API. ([5c923c2](https://github.com/aws/aws-sdk-js-v3/commit/5c923c2706dc6053287a8995a08092d2794d0276))
20
+
21
+
22
+
23
+
24
+
6
25
  # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
26
 
8
27
  **Note:** Version bump only for package @aws-sdk/client-codestar-notifications
package/README.md CHANGED
@@ -52,7 +52,7 @@ notification rule. </p>
52
52
  <ul>
53
53
  <li>
54
54
  <p>
55
- <a>DeleteTarget</a>, which removes a notification rule target (SNS topic) from a
55
+ <a>DeleteTarget</a>, which removes a notification rule target from a
56
56
  notification rule. </p>
57
57
  </li>
58
58
  <li>
@@ -89,7 +89,7 @@ your account. </p>
89
89
  </li>
90
90
  </ul>
91
91
 
92
- <p> For information about how to use AWS CodeStar Notifications, see link in the CodeStarNotifications User Guide.
92
+ <p> For information about how to use AWS CodeStar Notifications, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/what-is-dtconsole.html">Amazon Web Services Developer Tools Console User Guide</a>.
93
93
  </p>
94
94
 
95
95
  ## Installing
@@ -262,15 +262,13 @@ const serializeAws_restJson1UnsubscribeCommand = async (input, context) => {
262
262
  exports.serializeAws_restJson1UnsubscribeCommand = serializeAws_restJson1UnsubscribeCommand;
263
263
  const serializeAws_restJson1UntagResourceCommand = async (input, context) => {
264
264
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
265
- const headers = {
266
- "content-type": "application/json",
267
- };
268
- const resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/untagResource";
269
- let body;
270
- body = JSON.stringify({
271
- ...(input.Arn != null && { Arn: input.Arn }),
272
- ...(input.TagKeys != null && { TagKeys: serializeAws_restJson1TagKeys(input.TagKeys, context) }),
265
+ const headers = {};
266
+ let resolvedPath = `${(basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || ""}` + "/untagResource/{Arn}";
267
+ resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "Arn", () => input.Arn, "{Arn}", false);
268
+ const query = map({
269
+ tagKeys: [() => input.TagKeys !== void 0, () => (input.TagKeys || []).map((_entry) => _entry)],
273
270
  });
271
+ let body;
274
272
  return new protocol_http_1.HttpRequest({
275
273
  protocol,
276
274
  hostname,
@@ -278,6 +276,7 @@ const serializeAws_restJson1UntagResourceCommand = async (input, context) => {
278
276
  method: "POST",
279
277
  headers,
280
278
  path: resolvedPath,
279
+ query,
281
280
  body,
282
281
  });
283
282
  };
@@ -675,6 +674,9 @@ const deserializeAws_restJson1SubscribeCommandError = async (output, context) =>
675
674
  };
676
675
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
677
676
  switch (errorCode) {
677
+ case "ConfigurationException":
678
+ case "com.amazonaws.codestarnotifications#ConfigurationException":
679
+ throw await deserializeAws_restJson1ConfigurationExceptionResponse(parsedOutput, context);
678
680
  case "ResourceNotFoundException":
679
681
  case "com.amazonaws.codestarnotifications#ResourceNotFoundException":
680
682
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -715,6 +717,9 @@ const deserializeAws_restJson1TagResourceCommandError = async (output, context)
715
717
  case "ConcurrentModificationException":
716
718
  case "com.amazonaws.codestarnotifications#ConcurrentModificationException":
717
719
  throw await deserializeAws_restJson1ConcurrentModificationExceptionResponse(parsedOutput, context);
720
+ case "LimitExceededException":
721
+ case "com.amazonaws.codestarnotifications#LimitExceededException":
722
+ throw await deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context);
718
723
  case "ResourceNotFoundException":
719
724
  case "com.amazonaws.codestarnotifications#ResourceNotFoundException":
720
725
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -786,6 +791,9 @@ const deserializeAws_restJson1UntagResourceCommandError = async (output, context
786
791
  case "ConcurrentModificationException":
787
792
  case "com.amazonaws.codestarnotifications#ConcurrentModificationException":
788
793
  throw await deserializeAws_restJson1ConcurrentModificationExceptionResponse(parsedOutput, context);
794
+ case "LimitExceededException":
795
+ case "com.amazonaws.codestarnotifications#LimitExceededException":
796
+ throw await deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context);
789
797
  case "ResourceNotFoundException":
790
798
  case "com.amazonaws.codestarnotifications#ResourceNotFoundException":
791
799
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -820,6 +828,9 @@ const deserializeAws_restJson1UpdateNotificationRuleCommandError = async (output
820
828
  };
821
829
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
822
830
  switch (errorCode) {
831
+ case "ConfigurationException":
832
+ case "com.amazonaws.codestarnotifications#ConfigurationException":
833
+ throw await deserializeAws_restJson1ConfigurationExceptionResponse(parsedOutput, context);
823
834
  case "ResourceNotFoundException":
824
835
  case "com.amazonaws.codestarnotifications#ResourceNotFoundException":
825
836
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -979,13 +990,6 @@ const serializeAws_restJson1ListTargetsFilters = (input, context) => {
979
990
  return serializeAws_restJson1ListTargetsFilter(entry, context);
980
991
  });
981
992
  };
982
- const serializeAws_restJson1TagKeys = (input, context) => {
983
- return input
984
- .filter((e) => e != null)
985
- .map((entry) => {
986
- return entry;
987
- });
988
- };
989
993
  const serializeAws_restJson1Tags = (input, context) => {
990
994
  return Object.entries(input).reduce((acc, [key, value]) => {
991
995
  if (value === null) {
@@ -1,6 +1,6 @@
1
1
  import { __assign, __awaiter, __generator, __read } from "tslib";
2
2
  import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
3
- import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, map as __map, parseEpochTimestamp as __parseEpochTimestamp, throwDefaultError, } from "@aws-sdk/smithy-client";
3
+ import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, map as __map, parseEpochTimestamp as __parseEpochTimestamp, resolvedPath as __resolvedPath, throwDefaultError, } from "@aws-sdk/smithy-client";
4
4
  import { v4 as generateIdempotencyToken } from "uuid";
5
5
  import { CodestarNotificationsServiceException as __BaseException } from "../models/CodestarNotificationsServiceException";
6
6
  import { AccessDeniedException, ConcurrentModificationException, ConfigurationException, InvalidNextTokenException, LimitExceededException, ResourceAlreadyExistsException, ResourceNotFoundException, ValidationException, } from "../models/models_0";
@@ -274,17 +274,18 @@ export var serializeAws_restJson1UnsubscribeCommand = function (input, context)
274
274
  });
275
275
  }); };
276
276
  export var serializeAws_restJson1UntagResourceCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
277
- var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, body;
277
+ var _a, hostname, _b, protocol, port, basePath, headers, resolvedPath, query, body;
278
278
  return __generator(this, function (_c) {
279
279
  switch (_c.label) {
280
280
  case 0: return [4, context.endpoint()];
281
281
  case 1:
282
282
  _a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
283
- headers = {
284
- "content-type": "application/json",
285
- };
286
- resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/untagResource";
287
- body = JSON.stringify(__assign(__assign({}, (input.Arn != null && { Arn: input.Arn })), (input.TagKeys != null && { TagKeys: serializeAws_restJson1TagKeys(input.TagKeys, context) })));
283
+ headers = {};
284
+ resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/untagResource/{Arn}";
285
+ resolvedPath = __resolvedPath(resolvedPath, input, "Arn", function () { return input.Arn; }, "{Arn}", false);
286
+ query = map({
287
+ tagKeys: [function () { return input.TagKeys !== void 0; }, function () { return (input.TagKeys || []).map(function (_entry) { return _entry; }); }],
288
+ });
288
289
  return [2, new __HttpRequest({
289
290
  protocol: protocol,
290
291
  hostname: hostname,
@@ -292,6 +293,7 @@ export var serializeAws_restJson1UntagResourceCommand = function (input, context
292
293
  method: "POST",
293
294
  headers: headers,
294
295
  path: resolvedPath,
296
+ query: query,
295
297
  body: body,
296
298
  })];
297
299
  }
@@ -890,17 +892,21 @@ var deserializeAws_restJson1SubscribeCommandError = function (output, context) {
890
892
  errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
891
893
  _b = errorCode;
892
894
  switch (_b) {
893
- case "ResourceNotFoundException": return [3, 2];
894
- case "com.amazonaws.codestarnotifications#ResourceNotFoundException": return [3, 2];
895
- case "ValidationException": return [3, 4];
896
- case "com.amazonaws.codestarnotifications#ValidationException": return [3, 4];
895
+ case "ConfigurationException": return [3, 2];
896
+ case "com.amazonaws.codestarnotifications#ConfigurationException": return [3, 2];
897
+ case "ResourceNotFoundException": return [3, 4];
898
+ case "com.amazonaws.codestarnotifications#ResourceNotFoundException": return [3, 4];
899
+ case "ValidationException": return [3, 6];
900
+ case "com.amazonaws.codestarnotifications#ValidationException": return [3, 6];
897
901
  }
898
- return [3, 6];
899
- case 2: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];
902
+ return [3, 8];
903
+ case 2: return [4, deserializeAws_restJson1ConfigurationExceptionResponse(parsedOutput, context)];
900
904
  case 3: throw _d.sent();
901
- case 4: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];
905
+ case 4: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];
902
906
  case 5: throw _d.sent();
903
- case 6:
907
+ case 6: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];
908
+ case 7: throw _d.sent();
909
+ case 8:
904
910
  parsedBody = parsedOutput.body;
905
911
  throwDefaultError({
906
912
  output: output,
@@ -908,8 +914,8 @@ var deserializeAws_restJson1SubscribeCommandError = function (output, context) {
908
914
  exceptionCtor: __BaseException,
909
915
  errorCode: errorCode,
910
916
  });
911
- _d.label = 7;
912
- case 7: return [2];
917
+ _d.label = 9;
918
+ case 9: return [2];
913
919
  }
914
920
  });
915
921
  }); };
@@ -952,19 +958,23 @@ var deserializeAws_restJson1TagResourceCommandError = function (output, context)
952
958
  switch (_b) {
953
959
  case "ConcurrentModificationException": return [3, 2];
954
960
  case "com.amazonaws.codestarnotifications#ConcurrentModificationException": return [3, 2];
955
- case "ResourceNotFoundException": return [3, 4];
956
- case "com.amazonaws.codestarnotifications#ResourceNotFoundException": return [3, 4];
957
- case "ValidationException": return [3, 6];
958
- case "com.amazonaws.codestarnotifications#ValidationException": return [3, 6];
961
+ case "LimitExceededException": return [3, 4];
962
+ case "com.amazonaws.codestarnotifications#LimitExceededException": return [3, 4];
963
+ case "ResourceNotFoundException": return [3, 6];
964
+ case "com.amazonaws.codestarnotifications#ResourceNotFoundException": return [3, 6];
965
+ case "ValidationException": return [3, 8];
966
+ case "com.amazonaws.codestarnotifications#ValidationException": return [3, 8];
959
967
  }
960
- return [3, 8];
968
+ return [3, 10];
961
969
  case 2: return [4, deserializeAws_restJson1ConcurrentModificationExceptionResponse(parsedOutput, context)];
962
970
  case 3: throw _d.sent();
963
- case 4: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];
971
+ case 4: return [4, deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context)];
964
972
  case 5: throw _d.sent();
965
- case 6: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];
973
+ case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];
966
974
  case 7: throw _d.sent();
967
- case 8:
975
+ case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];
976
+ case 9: throw _d.sent();
977
+ case 10:
968
978
  parsedBody = parsedOutput.body;
969
979
  throwDefaultError({
970
980
  output: output,
@@ -972,8 +982,8 @@ var deserializeAws_restJson1TagResourceCommandError = function (output, context)
972
982
  exceptionCtor: __BaseException,
973
983
  errorCode: errorCode,
974
984
  });
975
- _d.label = 9;
976
- case 9: return [2];
985
+ _d.label = 11;
986
+ case 11: return [2];
977
987
  }
978
988
  });
979
989
  }); };
@@ -1067,19 +1077,23 @@ var deserializeAws_restJson1UntagResourceCommandError = function (output, contex
1067
1077
  switch (_b) {
1068
1078
  case "ConcurrentModificationException": return [3, 2];
1069
1079
  case "com.amazonaws.codestarnotifications#ConcurrentModificationException": return [3, 2];
1070
- case "ResourceNotFoundException": return [3, 4];
1071
- case "com.amazonaws.codestarnotifications#ResourceNotFoundException": return [3, 4];
1072
- case "ValidationException": return [3, 6];
1073
- case "com.amazonaws.codestarnotifications#ValidationException": return [3, 6];
1080
+ case "LimitExceededException": return [3, 4];
1081
+ case "com.amazonaws.codestarnotifications#LimitExceededException": return [3, 4];
1082
+ case "ResourceNotFoundException": return [3, 6];
1083
+ case "com.amazonaws.codestarnotifications#ResourceNotFoundException": return [3, 6];
1084
+ case "ValidationException": return [3, 8];
1085
+ case "com.amazonaws.codestarnotifications#ValidationException": return [3, 8];
1074
1086
  }
1075
- return [3, 8];
1087
+ return [3, 10];
1076
1088
  case 2: return [4, deserializeAws_restJson1ConcurrentModificationExceptionResponse(parsedOutput, context)];
1077
1089
  case 3: throw _d.sent();
1078
- case 4: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];
1090
+ case 4: return [4, deserializeAws_restJson1LimitExceededExceptionResponse(parsedOutput, context)];
1079
1091
  case 5: throw _d.sent();
1080
- case 6: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];
1092
+ case 6: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];
1081
1093
  case 7: throw _d.sent();
1082
- case 8:
1094
+ case 8: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];
1095
+ case 9: throw _d.sent();
1096
+ case 10:
1083
1097
  parsedBody = parsedOutput.body;
1084
1098
  throwDefaultError({
1085
1099
  output: output,
@@ -1087,8 +1101,8 @@ var deserializeAws_restJson1UntagResourceCommandError = function (output, contex
1087
1101
  exceptionCtor: __BaseException,
1088
1102
  errorCode: errorCode,
1089
1103
  });
1090
- _d.label = 9;
1091
- case 9: return [2];
1104
+ _d.label = 11;
1105
+ case 11: return [2];
1092
1106
  }
1093
1107
  });
1094
1108
  }); };
@@ -1124,17 +1138,21 @@ var deserializeAws_restJson1UpdateNotificationRuleCommandError = function (outpu
1124
1138
  errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
1125
1139
  _b = errorCode;
1126
1140
  switch (_b) {
1127
- case "ResourceNotFoundException": return [3, 2];
1128
- case "com.amazonaws.codestarnotifications#ResourceNotFoundException": return [3, 2];
1129
- case "ValidationException": return [3, 4];
1130
- case "com.amazonaws.codestarnotifications#ValidationException": return [3, 4];
1141
+ case "ConfigurationException": return [3, 2];
1142
+ case "com.amazonaws.codestarnotifications#ConfigurationException": return [3, 2];
1143
+ case "ResourceNotFoundException": return [3, 4];
1144
+ case "com.amazonaws.codestarnotifications#ResourceNotFoundException": return [3, 4];
1145
+ case "ValidationException": return [3, 6];
1146
+ case "com.amazonaws.codestarnotifications#ValidationException": return [3, 6];
1131
1147
  }
1132
- return [3, 6];
1133
- case 2: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];
1148
+ return [3, 8];
1149
+ case 2: return [4, deserializeAws_restJson1ConfigurationExceptionResponse(parsedOutput, context)];
1134
1150
  case 3: throw _d.sent();
1135
- case 4: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];
1151
+ case 4: return [4, deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context)];
1136
1152
  case 5: throw _d.sent();
1137
- case 6:
1153
+ case 6: return [4, deserializeAws_restJson1ValidationExceptionResponse(parsedOutput, context)];
1154
+ case 7: throw _d.sent();
1155
+ case 8:
1138
1156
  parsedBody = parsedOutput.body;
1139
1157
  throwDefaultError({
1140
1158
  output: output,
@@ -1142,8 +1160,8 @@ var deserializeAws_restJson1UpdateNotificationRuleCommandError = function (outpu
1142
1160
  exceptionCtor: __BaseException,
1143
1161
  errorCode: errorCode,
1144
1162
  });
1145
- _d.label = 7;
1146
- case 7: return [2];
1163
+ _d.label = 9;
1164
+ case 9: return [2];
1147
1165
  }
1148
1166
  });
1149
1167
  }); };
@@ -1281,13 +1299,6 @@ var serializeAws_restJson1ListTargetsFilters = function (input, context) {
1281
1299
  return serializeAws_restJson1ListTargetsFilter(entry, context);
1282
1300
  });
1283
1301
  };
1284
- var serializeAws_restJson1TagKeys = function (input, context) {
1285
- return input
1286
- .filter(function (e) { return e != null; })
1287
- .map(function (entry) {
1288
- return entry;
1289
- });
1290
- };
1291
1302
  var serializeAws_restJson1Tags = function (input, context) {
1292
1303
  return Object.entries(input).reduce(function (acc, _a) {
1293
1304
  var _b;
@@ -57,7 +57,7 @@ import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput
57
57
  * <ul>
58
58
  * <li>
59
59
  * <p>
60
- * <a>DeleteTarget</a>, which removes a notification rule target (SNS topic) from a
60
+ * <a>DeleteTarget</a>, which removes a notification rule target from a
61
61
  * notification rule. </p>
62
62
  * </li>
63
63
  * <li>
@@ -96,13 +96,13 @@ import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput
96
96
  *
97
97
  *
98
98
  *
99
- * <p> For information about how to use AWS CodeStar Notifications, see link in the CodeStarNotifications User Guide.
99
+ * <p> For information about how to use AWS CodeStar Notifications, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/what-is-dtconsole.html">Amazon Web Services Developer Tools Console User Guide</a>.
100
100
  * </p>
101
101
  */
102
102
  export declare class CodestarNotifications extends CodestarNotificationsClient {
103
103
  /**
104
104
  * <p>Creates a notification rule for a resource. The rule specifies the events you want
105
- * notifications about and the targets (such as SNS topics) where you want to receive
105
+ * notifications about and the targets (such as Chatbot topics or Chatbot clients configured for Slack) where you want to receive
106
106
  * them.</p>
107
107
  */
108
108
  createNotificationRule(args: CreateNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateNotificationRuleCommandOutput>;
@@ -133,7 +133,7 @@ export declare class CodestarNotifications extends CodestarNotificationsClient {
133
133
  listEventTypes(args: ListEventTypesCommandInput, cb: (err: any, data?: ListEventTypesCommandOutput) => void): void;
134
134
  listEventTypes(args: ListEventTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventTypesCommandOutput) => void): void;
135
135
  /**
136
- * <p>Returns a list of the notification rules for an AWS account.</p>
136
+ * <p>Returns a list of the notification rules for an Amazon Web Services account.</p>
137
137
  */
138
138
  listNotificationRules(args: ListNotificationRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListNotificationRulesCommandOutput>;
139
139
  listNotificationRules(args: ListNotificationRulesCommandInput, cb: (err: any, data?: ListNotificationRulesCommandOutput) => void): void;
@@ -145,13 +145,13 @@ export declare class CodestarNotifications extends CodestarNotificationsClient {
145
145
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
146
146
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
147
147
  /**
148
- * <p>Returns a list of the notification rule targets for an AWS account.</p>
148
+ * <p>Returns a list of the notification rule targets for an Amazon Web Services account.</p>
149
149
  */
150
150
  listTargets(args: ListTargetsCommandInput, options?: __HttpHandlerOptions): Promise<ListTargetsCommandOutput>;
151
151
  listTargets(args: ListTargetsCommandInput, cb: (err: any, data?: ListTargetsCommandOutput) => void): void;
152
152
  listTargets(args: ListTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTargetsCommandOutput) => void): void;
153
153
  /**
154
- * <p>Creates an association between a notification rule and an SNS topic so that the
154
+ * <p>Creates an association between a notification rule and an Chatbot topic or Chatbot client so that the
155
155
  * associated target can receive notifications when the events described in the rule are
156
156
  * triggered.</p>
157
157
  */
@@ -165,7 +165,7 @@ export declare class CodestarNotifications extends CodestarNotificationsClient {
165
165
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
166
166
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
167
167
  /**
168
- * <p>Removes an association between a notification rule and an Amazon SNS topic so that
168
+ * <p>Removes an association between a notification rule and an Chatbot topic so that
169
169
  * subscribers to that topic stop receiving notifications when the events described in the
170
170
  * rule are triggered.</p>
171
171
  */
@@ -182,7 +182,7 @@ export interface CodestarNotificationsClientResolvedConfig extends CodestarNotif
182
182
  * <ul>
183
183
  * <li>
184
184
  * <p>
185
- * <a>DeleteTarget</a>, which removes a notification rule target (SNS topic) from a
185
+ * <a>DeleteTarget</a>, which removes a notification rule target from a
186
186
  * notification rule. </p>
187
187
  * </li>
188
188
  * <li>
@@ -221,7 +221,7 @@ export interface CodestarNotificationsClientResolvedConfig extends CodestarNotif
221
221
  *
222
222
  *
223
223
  *
224
- * <p> For information about how to use AWS CodeStar Notifications, see link in the CodeStarNotifications User Guide.
224
+ * <p> For information about how to use AWS CodeStar Notifications, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/what-is-dtconsole.html">Amazon Web Services Developer Tools Console User Guide</a>.
225
225
  * </p>
226
226
  */
227
227
  export declare class CodestarNotificationsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodestarNotificationsClientResolvedConfig> {
@@ -8,7 +8,7 @@ export interface CreateNotificationRuleCommandOutput extends CreateNotificationR
8
8
  }
9
9
  /**
10
10
  * <p>Creates a notification rule for a resource. The rule specifies the events you want
11
- * notifications about and the targets (such as SNS topics) where you want to receive
11
+ * notifications about and the targets (such as Chatbot topics or Chatbot clients configured for Slack) where you want to receive
12
12
  * them.</p>
13
13
  * @example
14
14
  * Use a bare-bones client and the command you need to make an API call.
@@ -7,7 +7,7 @@ export interface ListNotificationRulesCommandInput extends ListNotificationRules
7
7
  export interface ListNotificationRulesCommandOutput extends ListNotificationRulesResult, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns a list of the notification rules for an AWS account.</p>
10
+ * <p>Returns a list of the notification rules for an Amazon Web Services account.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -7,7 +7,7 @@ export interface ListTargetsCommandInput extends ListTargetsRequest {
7
7
  export interface ListTargetsCommandOutput extends ListTargetsResult, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns a list of the notification rule targets for an AWS account.</p>
10
+ * <p>Returns a list of the notification rule targets for an Amazon Web Services account.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -7,7 +7,7 @@ export interface SubscribeCommandInput extends SubscribeRequest {
7
7
  export interface SubscribeCommandOutput extends SubscribeResult, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Creates an association between a notification rule and an SNS topic so that the
10
+ * <p>Creates an association between a notification rule and an Chatbot topic or Chatbot client so that the
11
11
  * associated target can receive notifications when the events described in the rule are
12
12
  * triggered.</p>
13
13
  * @example
@@ -7,7 +7,7 @@ export interface UnsubscribeCommandInput extends UnsubscribeRequest {
7
7
  export interface UnsubscribeCommandOutput extends UnsubscribeResult, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Removes an association between a notification rule and an Amazon SNS topic so that
10
+ * <p>Removes an association between a notification rule and an Chatbot topic so that
11
11
  * subscribers to that topic stop receiving notifications when the events described in the
12
12
  * rule are triggered.</p>
13
13
  * @example
@@ -47,22 +47,29 @@ export declare enum NotificationRuleStatus {
47
47
  ENABLED = "ENABLED"
48
48
  }
49
49
  /**
50
- * <p>Information about the SNS topics associated with a notification rule.</p>
50
+ * <p>Information about the Chatbot topics or Chatbot clients associated with a notification rule.</p>
51
51
  */
52
52
  export interface Target {
53
53
  /**
54
- * <p>The target type. Can be an Amazon SNS topic.</p>
54
+ * <p>The target type. Can be an Chatbot topic or Chatbot client.</p>
55
+ * <ul>
56
+ * <li>
57
+ * <p>Chatbot topics are specified as <code>SNS</code>.</p>
58
+ * </li>
59
+ * <li>
60
+ * <p>Chatbot clients are specified as <code>AWSChatbotSlack</code>.</p>
61
+ * </li>
62
+ * </ul>
55
63
  */
56
64
  TargetType?: string;
57
65
  /**
58
- * <p>The Amazon Resource Name (ARN) of the SNS topic.</p>
66
+ * <p>The Amazon Resource Name (ARN) of the Chatbot topic or Chatbot client.</p>
59
67
  */
60
68
  TargetAddress?: string;
61
69
  }
62
70
  export interface CreateNotificationRuleRequest {
63
71
  /**
64
- * <p>The name for the notification rule. Notifictaion rule names must be unique in your AWS
65
- * account.</p>
72
+ * <p>The name for the notification rule. Notification rule names must be unique in your Amazon Web Services account.</p>
66
73
  */
67
74
  Name: string | undefined;
68
75
  /**
@@ -71,18 +78,18 @@ export interface CreateNotificationRuleRequest {
71
78
  */
72
79
  EventTypeIds: string[] | undefined;
73
80
  /**
74
- * <p>The Amazon Resource Name (ARN) of the resource to associate with the notification rule. Supported resources include pipelines in AWS CodePipeline,
75
- * repositories in AWS CodeCommit, and build projects in AWS CodeBuild.</p>
81
+ * <p>The Amazon Resource Name (ARN) of the resource to associate with the notification rule. Supported resources include pipelines in CodePipeline,
82
+ * repositories in CodeCommit, and build projects in CodeBuild.</p>
76
83
  */
77
84
  Resource: string | undefined;
78
85
  /**
79
- * <p>A list of Amazon Resource Names (ARNs) of SNS topics to associate with the
86
+ * <p>A list of Amazon Resource Names (ARNs) of Amazon Simple Notification Service topics and Chatbot clients to associate with the
80
87
  * notification rule.</p>
81
88
  */
82
89
  Targets: Target[] | undefined;
83
90
  /**
84
- * <p>The level of detail to include in the notifications for this resource. BASIC will include only the
85
- * contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information
91
+ * <p>The level of detail to include in the notifications for this resource. <code>BASIC</code> will include only the
92
+ * contents of the event as it would appear in Amazon CloudWatch. <code>FULL</code> will include any supplemental information
86
93
  * provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created.</p>
87
94
  */
88
95
  DetailType: DetailType | string | undefined;
@@ -92,18 +99,18 @@ export interface CreateNotificationRuleRequest {
92
99
  * parameters is received and a token is included, the request returns information about
93
100
  * the initial request that used that token.</p>
94
101
  * <note>
95
- * <p>The AWS SDKs prepopulate client request tokens. If you are using an AWS SDK, an
102
+ * <p>The Amazon Web Services SDKs prepopulate client request tokens. If you are using an Amazon Web Services SDK, an
96
103
  * idempotency token is created for you.</p>
97
104
  * </note>
98
105
  */
99
106
  ClientRequestToken?: string;
100
107
  /**
101
- * <p>A list of tags to apply to this notification rule. Key names cannot start with "aws". </p>
108
+ * <p>A list of tags to apply to this notification rule. Key names cannot start with "<code>aws</code>". </p>
102
109
  */
103
110
  Tags?: Record<string, string>;
104
111
  /**
105
- * <p>The status of the notification rule. The default value is ENABLED. If the status is
106
- * set to DISABLED, notifications aren't sent for the notification rule.</p>
112
+ * <p>The status of the notification rule. The default value is <code>ENABLED</code>. If the status is
113
+ * set to <code>DISABLED</code>, notifications aren't sent for the notification rule.</p>
107
114
  */
108
115
  Status?: NotificationRuleStatus | string;
109
116
  }
@@ -129,7 +136,7 @@ export declare class LimitExceededException extends __BaseException {
129
136
  }
130
137
  /**
131
138
  * <p>A resource with the same name or ID already exists. Notification rule names must be
132
- * unique in your AWS account.</p>
139
+ * unique in your Amazon Web Services account.</p>
133
140
  */
134
141
  export declare class ResourceAlreadyExistsException extends __BaseException {
135
142
  readonly name: "ResourceAlreadyExistsException";
@@ -166,13 +173,13 @@ export interface DeleteNotificationRuleResult {
166
173
  }
167
174
  export interface DeleteTargetRequest {
168
175
  /**
169
- * <p>The Amazon Resource Name (ARN) of the SNS topic to delete.</p>
176
+ * <p>The Amazon Resource Name (ARN) of the Chatbot topic or Chatbot client to delete.</p>
170
177
  */
171
178
  TargetAddress: string | undefined;
172
179
  /**
173
- * <p>A Boolean value that can be used to delete all associations with this SNS topic. The
180
+ * <p>A Boolean value that can be used to delete all associations with this Chatbot topic. The
174
181
  * default value is FALSE. If set to TRUE, all associations between that target and every
175
- * notification rule in your AWS account are deleted.</p>
182
+ * notification rule in your Amazon Web Services account are deleted.</p>
176
183
  */
177
184
  ForceUnsubscribeAll?: boolean;
178
185
  }
@@ -189,7 +196,9 @@ export interface DescribeNotificationRuleRequest {
189
196
  */
190
197
  export interface EventTypeSummary {
191
198
  /**
192
- * <p>The system-generated ID of the event.</p>
199
+ * <p>The system-generated ID of the event. For a complete list of event types and IDs, see
200
+ * <a href="https://docs.aws.amazon.com/codestar-notifications/latest/userguide/concepts.html#concepts-api">Notification concepts</a>
201
+ * in the <i>Developer Tools Console User Guide</i>.</p>
193
202
  */
194
203
  EventTypeId?: string;
195
204
  /**
@@ -217,11 +226,19 @@ export declare enum TargetStatus {
217
226
  */
218
227
  export interface TargetSummary {
219
228
  /**
220
- * <p>The Amazon Resource Name (ARN) of the SNS topic.</p>
229
+ * <p>The Amazon Resource Name (ARN) of the Chatbot topic or Chatbot client.</p>
221
230
  */
222
231
  TargetAddress?: string;
223
232
  /**
224
- * <p>The type of the target (for example, SNS).</p>
233
+ * <p>The type of the target (for example, <code>SNS</code>).</p>
234
+ * <ul>
235
+ * <li>
236
+ * <p>Chatbot topics are specified as <code>SNS</code>.</p>
237
+ * </li>
238
+ * <li>
239
+ * <p>Chatbot clients are specified as <code>AWSChatbotSlack</code>.</p>
240
+ * </li>
241
+ * </ul>
225
242
  */
226
243
  TargetType?: string;
227
244
  /**
@@ -248,12 +265,12 @@ export interface DescribeNotificationRuleResult {
248
265
  */
249
266
  Resource?: string;
250
267
  /**
251
- * <p>A list of the SNS topics associated with the notification rule.</p>
268
+ * <p>A list of the Chatbot topics and Chatbot clients associated with the notification rule.</p>
252
269
  */
253
270
  Targets?: TargetSummary[];
254
271
  /**
255
272
  * <p>The level of detail included in the notifications for this resource. BASIC will include only the
256
- * contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information
273
+ * contents of the event as it would appear in Amazon CloudWatch. FULL will include any supplemental information
257
274
  * provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created.</p>
258
275
  */
259
276
  DetailType?: DetailType | string;
@@ -367,7 +384,7 @@ export interface ListNotificationRulesFilter {
367
384
  Name: ListNotificationRulesFilterName | string | undefined;
368
385
  /**
369
386
  * <p>The value of the attribute you want to use to filter the returned notification rules. For example, if you specify filtering by <i>RESOURCE</i>
370
- * in Name, you might specify the ARN of a pipeline in AWS CodePipeline for the value.</p>
387
+ * in Name, you might specify the ARN of a pipeline in CodePipeline for the value.</p>
371
388
  */
372
389
  Value: string | undefined;
373
390
  }
@@ -410,7 +427,7 @@ export interface ListNotificationRulesResult {
410
427
  */
411
428
  NextToken?: string;
412
429
  /**
413
- * <p>The list of notification rules for the AWS account, by Amazon Resource Name (ARN) and ID. </p>
430
+ * <p>The list of notification rules for the Amazon Web Services account, by Amazon Resource Name (ARN) and ID. </p>
414
431
  */
415
432
  NotificationRules?: NotificationRuleSummary[];
416
433
  }
@@ -434,9 +451,9 @@ export declare enum ListTargetsFilterName {
434
451
  /**
435
452
  * <p>Information about a filter to apply to the list of returned targets. You can filter by
436
453
  * target type, address, or status. For example, to filter results to notification rules
437
- * that have active Amazon SNS topics as targets, you could specify a ListTargetsFilter
438
- * Name as TargetType and a Value of SNS, and a Name of TARGET_STATUS and a Value of
439
- * ACTIVE.</p>
454
+ * that have active Chatbot topics as targets, you could specify a ListTargetsFilter
455
+ * Name as <code>TargetType</code> and a Value of <code>SNS</code>, and a Name of <code>TARGET_STATUS</code> and a Value of
456
+ * <code>ACTIVE</code>.</p>
440
457
  */
441
458
  export interface ListTargetsFilter {
442
459
  /**
@@ -445,7 +462,7 @@ export interface ListTargetsFilter {
445
462
  Name: ListTargetsFilterName | string | undefined;
446
463
  /**
447
464
  * <p>The value of the attribute you want to use to filter the returned targets. For example,
448
- * if you specify <i>SNS</i> for the Target type, you could specify an Amazon
465
+ * if you specify <code>SNS</code> for the Target type, you could specify an Amazon
449
466
  * Resource Name (ARN) for a topic as the value.</p>
450
467
  */
451
468
  Value: string | undefined;
@@ -487,7 +504,7 @@ export interface SubscribeRequest {
487
504
  */
488
505
  Arn: string | undefined;
489
506
  /**
490
- * <p>Information about the SNS topics associated with a notification rule.</p>
507
+ * <p>Information about the Chatbot topics or Chatbot clients associated with a notification rule.</p>
491
508
  */
492
509
  Target: Target | undefined;
493
510
  /**
@@ -508,7 +525,7 @@ export interface TagResourceRequest {
508
525
  */
509
526
  Arn: string | undefined;
510
527
  /**
511
- * <p>The list of tags to associate with the resource. Tag key names cannot start with "aws".</p>
528
+ * <p>The list of tags to associate with the resource. Tag key names cannot start with "<code>aws</code>".</p>
512
529
  */
513
530
  Tags: Record<string, string> | undefined;
514
531
  }
@@ -524,7 +541,7 @@ export interface UnsubscribeRequest {
524
541
  */
525
542
  Arn: string | undefined;
526
543
  /**
527
- * <p>The ARN of the SNS topic to unsubscribe from the notification rule.</p>
544
+ * <p>The ARN of the Chatbot topic to unsubscribe from the notification rule.</p>
528
545
  */
529
546
  TargetAddress: string | undefined;
530
547
  }
@@ -562,7 +579,9 @@ export interface UpdateNotificationRuleRequest {
562
579
  */
563
580
  Status?: NotificationRuleStatus | string;
564
581
  /**
565
- * <p>A list of event types associated with this notification rule.</p>
582
+ * <p>A list of event types associated with this notification rule. For a complete list of event types and IDs, see
583
+ * <a href="https://docs.aws.amazon.com/codestar-notifications/latest/userguide/concepts.html#concepts-api">Notification concepts</a>
584
+ * in the <i>Developer Tools Console User Guide</i>.</p>
566
585
  */
567
586
  EventTypeIds?: string[];
568
587
  /**
@@ -572,7 +591,7 @@ export interface UpdateNotificationRuleRequest {
572
591
  Targets?: Target[];
573
592
  /**
574
593
  * <p>The level of detail to include in the notifications for this resource. BASIC will include only the
575
- * contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information
594
+ * contents of the event as it would appear in Amazon CloudWatch. FULL will include any supplemental information
576
595
  * provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created.</p>
577
596
  */
578
597
  DetailType?: DetailType | string;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfi
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfi
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfi
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -52,7 +52,9 @@ export declare const getRuntimeConfig: (
52
52
  | undefined;
53
53
  signer?:
54
54
  | import("@aws-sdk/types").RequestSigner
55
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | ((
56
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
57
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
56
58
  | undefined;
57
59
  signingEscapePath?: boolean | undefined;
58
60
  systemClockOffset?: number | undefined;
@@ -52,7 +52,9 @@ export declare const getRuntimeConfig: (
52
52
  | undefined;
53
53
  signer?:
54
54
  | import("@aws-sdk/types").RequestSigner
55
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | ((
56
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
57
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
56
58
  | undefined;
57
59
  signingEscapePath?: boolean | undefined;
58
60
  systemClockOffset?: number | undefined;
@@ -53,7 +53,9 @@ export declare const getRuntimeConfig: (
53
53
  | undefined;
54
54
  signer?:
55
55
  | import("@aws-sdk/types").RequestSigner
56
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | ((
57
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
58
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
57
59
  | undefined;
58
60
  signingEscapePath?: boolean | undefined;
59
61
  systemClockOffset?: number | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codestar-notifications",
3
3
  "description": "AWS SDK for JavaScript Codestar Notifications Client for Node.js, Browser and React Native",
4
- "version": "3.171.0",
4
+ "version": "3.178.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,35 +19,35 @@
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.171.0",
23
- "@aws-sdk/config-resolver": "3.171.0",
24
- "@aws-sdk/credential-provider-node": "3.171.0",
25
- "@aws-sdk/fetch-http-handler": "3.171.0",
26
- "@aws-sdk/hash-node": "3.171.0",
27
- "@aws-sdk/invalid-dependency": "3.171.0",
28
- "@aws-sdk/middleware-content-length": "3.171.0",
29
- "@aws-sdk/middleware-host-header": "3.171.0",
30
- "@aws-sdk/middleware-logger": "3.171.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.171.0",
32
- "@aws-sdk/middleware-retry": "3.171.0",
33
- "@aws-sdk/middleware-serde": "3.171.0",
34
- "@aws-sdk/middleware-signing": "3.171.0",
35
- "@aws-sdk/middleware-stack": "3.171.0",
36
- "@aws-sdk/middleware-user-agent": "3.171.0",
37
- "@aws-sdk/node-config-provider": "3.171.0",
38
- "@aws-sdk/node-http-handler": "3.171.0",
39
- "@aws-sdk/protocol-http": "3.171.0",
40
- "@aws-sdk/smithy-client": "3.171.0",
41
- "@aws-sdk/types": "3.171.0",
42
- "@aws-sdk/url-parser": "3.171.0",
22
+ "@aws-sdk/client-sts": "3.178.0",
23
+ "@aws-sdk/config-resolver": "3.178.0",
24
+ "@aws-sdk/credential-provider-node": "3.178.0",
25
+ "@aws-sdk/fetch-http-handler": "3.178.0",
26
+ "@aws-sdk/hash-node": "3.178.0",
27
+ "@aws-sdk/invalid-dependency": "3.178.0",
28
+ "@aws-sdk/middleware-content-length": "3.178.0",
29
+ "@aws-sdk/middleware-host-header": "3.178.0",
30
+ "@aws-sdk/middleware-logger": "3.178.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.178.0",
32
+ "@aws-sdk/middleware-retry": "3.178.0",
33
+ "@aws-sdk/middleware-serde": "3.178.0",
34
+ "@aws-sdk/middleware-signing": "3.178.0",
35
+ "@aws-sdk/middleware-stack": "3.178.0",
36
+ "@aws-sdk/middleware-user-agent": "3.178.0",
37
+ "@aws-sdk/node-config-provider": "3.178.0",
38
+ "@aws-sdk/node-http-handler": "3.178.0",
39
+ "@aws-sdk/protocol-http": "3.178.0",
40
+ "@aws-sdk/smithy-client": "3.178.0",
41
+ "@aws-sdk/types": "3.178.0",
42
+ "@aws-sdk/url-parser": "3.178.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.171.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.171.0",
49
- "@aws-sdk/util-user-agent-browser": "3.171.0",
50
- "@aws-sdk/util-user-agent-node": "3.171.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.178.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.178.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.178.0",
50
+ "@aws-sdk/util-user-agent-node": "3.178.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1",