@cdklabs/cdk-ecs-codedeploy 0.0.438 → 0.0.439

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 (310) hide show
  1. package/.jsii +3 -3
  2. package/lib/api-canary/index.js +1 -1
  3. package/lib/ecs-appspec/index.js +1 -1
  4. package/lib/ecs-deployment/index.js +1 -1
  5. package/lib/ecs-patterns/application-load-balanced-codedeployed-fargate-service.js +1 -1
  6. package/node_modules/@aws-sdk/client-codedeploy/dist-cjs/endpoint/bdd.js +49 -0
  7. package/node_modules/@aws-sdk/client-codedeploy/dist-cjs/endpoint/endpointResolver.js +2 -2
  8. package/node_modules/@aws-sdk/client-codedeploy/dist-es/endpoint/bdd.js +46 -0
  9. package/node_modules/@aws-sdk/client-codedeploy/dist-es/endpoint/endpointResolver.js +3 -3
  10. package/node_modules/@aws-sdk/client-codedeploy/dist-types/endpoint/bdd.d.ts +2 -0
  11. package/node_modules/@aws-sdk/client-codedeploy/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  12. package/node_modules/@aws-sdk/client-codedeploy/package.json +18 -18
  13. package/node_modules/@aws-sdk/core/dist-cjs/index.js +20 -11
  14. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +3 -0
  15. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +18 -11
  16. package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +2 -0
  17. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +6 -4
  18. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +6 -3
  19. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +2 -1
  20. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +2 -1
  21. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +0 -1
  22. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +4 -2
  23. package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +1 -1
  24. package/node_modules/@aws-sdk/core/package.json +7 -5
  25. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  26. package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
  27. package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
  28. package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
  29. package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
  30. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  31. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  32. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
  33. package/node_modules/@aws-sdk/middleware-sdk-s3/LICENSE +201 -0
  34. package/node_modules/@aws-sdk/middleware-sdk-s3/README.md +4 -0
  35. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +581 -0
  36. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +11 -0
  37. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +7 -0
  38. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/bucket-endpoint-middleware.js +36 -0
  39. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +32 -0
  40. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +9 -0
  41. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/protocol/S3RestXmlProtocol.js +25 -0
  42. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-endpoint-middleware.js +41 -0
  43. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-middleware.js +42 -0
  44. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +33 -0
  45. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCache.js +39 -0
  46. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCacheEntry.js +14 -0
  47. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityProviderImpl.js +49 -0
  48. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +41 -0
  49. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +13 -0
  50. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +38 -0
  51. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +41 -0
  52. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/signS3Express.js +7 -0
  53. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +7 -0
  54. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentity.js +1 -0
  55. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentityProvider.js +1 -0
  56. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +17 -0
  57. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +51 -0
  58. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.browser.js +8 -0
  59. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.js +4 -0
  60. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +25 -0
  61. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/bucket-endpoint-middleware.d.ts +13 -0
  62. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/check-content-length-header.d.ts +16 -0
  63. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +9 -0
  64. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/protocol/S3RestXmlProtocol.d.ts +20 -0
  65. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-endpoint-middleware.d.ts +10 -0
  66. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-middleware.d.ts +20 -0
  67. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-expires-middleware.d.ts +26 -0
  68. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCache.d.ts +16 -0
  69. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +16 -0
  70. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +32 -0
  71. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +17 -0
  72. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +37 -0
  73. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +27 -0
  74. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressMiddleware.d.ts +32 -0
  75. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/signS3Express.d.ts +9 -0
  76. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +9 -0
  77. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentity.d.ts +6 -0
  78. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +12 -0
  79. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +79 -0
  80. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +21 -0
  81. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.browser.d.ts +4 -0
  82. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.d.ts +5 -0
  83. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/bucket-endpoint-middleware.d.ts +9 -0
  84. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/check-content-length-header.d.ts +13 -0
  85. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +9 -0
  86. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/protocol/S3RestXmlProtocol.d.ts +15 -0
  87. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-endpoint-middleware.d.ts +6 -0
  88. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-middleware.d.ts +17 -0
  89. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-expires-middleware.d.ts +14 -0
  90. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCache.d.ts +14 -0
  91. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +12 -0
  92. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +31 -0
  93. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +19 -0
  94. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +11 -0
  95. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +40 -0
  96. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressMiddleware.d.ts +27 -0
  97. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/signS3Express.d.ts +21 -0
  98. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +17 -0
  99. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentity.d.ts +2 -0
  100. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +8 -0
  101. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +33 -0
  102. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +19 -0
  103. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.browser.d.ts +1 -0
  104. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.d.ts +2 -0
  105. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +13 -0
  106. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +14 -0
  107. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +79 -0
  108. package/node_modules/@aws-sdk/middleware-user-agent/package.json +5 -5
  109. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +100 -0
  110. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +2 -2
  111. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/bdd.js +90 -0
  112. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +2 -2
  113. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +80 -0
  114. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +2 -2
  115. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +80 -0
  116. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +2 -2
  117. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +1 -0
  118. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +87 -5
  119. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +150 -0
  120. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +2 -2
  121. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +1 -0
  122. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +6 -0
  123. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +7 -0
  124. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +97 -0
  125. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +3 -3
  126. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +87 -0
  127. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +3 -3
  128. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +77 -0
  129. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +3 -3
  130. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +77 -0
  131. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +3 -3
  132. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +1 -0
  133. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +88 -4
  134. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +147 -0
  135. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +3 -3
  136. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +1 -0
  137. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +7 -1
  138. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +8 -1
  139. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
  140. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +2 -0
  141. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +2 -0
  142. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
  143. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +15 -7
  144. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +2 -0
  145. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +1 -0
  146. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +3 -2
  147. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +10 -4
  148. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +3 -2
  149. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +3 -1
  150. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
  151. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +2 -0
  152. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +2 -0
  153. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
  154. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +20 -9
  155. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +2 -0
  156. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +1 -0
  157. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +11 -5
  158. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +35 -16
  159. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +11 -5
  160. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +8 -1
  161. package/node_modules/@aws-sdk/nested-clients/package.json +18 -17
  162. package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
  163. package/node_modules/@aws-sdk/signature-v4-multi-region/LICENSE +201 -0
  164. package/node_modules/@aws-sdk/signature-v4-multi-region/README.md +32 -0
  165. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +121 -0
  166. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +112 -0
  167. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +2 -0
  168. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/signature-v4-crt-container.js +3 -0
  169. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +35 -0
  170. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +5 -0
  171. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/signature-v4-crt-container.d.ts +28 -0
  172. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4MultiRegion.d.ts +41 -0
  173. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +2 -0
  174. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/signature-v4-crt-container.d.ts +20 -0
  175. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +61 -0
  176. package/node_modules/@aws-sdk/token-providers/package.json +3 -3
  177. package/node_modules/@aws-sdk/util-arn-parser/LICENSE +201 -0
  178. package/node_modules/@aws-sdk/util-arn-parser/README.md +4 -0
  179. package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +27 -0
  180. package/node_modules/@aws-sdk/util-arn-parser/dist-es/index.js +21 -0
  181. package/node_modules/@aws-sdk/util-arn-parser/dist-types/index.d.ts +32 -0
  182. package/node_modules/@aws-sdk/util-arn-parser/dist-types/ts3.4/index.d.ts +14 -0
  183. package/node_modules/@aws-sdk/util-arn-parser/package.json +55 -0
  184. package/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
  185. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  186. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -2
  187. package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +0 -2
  188. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  189. package/node_modules/@nodable/entities/README.md +41 -0
  190. package/node_modules/@nodable/entities/package.json +54 -0
  191. package/node_modules/@nodable/entities/src/EntityDecoder.js +543 -0
  192. package/node_modules/@nodable/entities/src/EntityEncoder.js +194 -0
  193. package/node_modules/@nodable/entities/src/entities.js +1177 -0
  194. package/node_modules/@nodable/entities/src/entityTries.js +49 -0
  195. package/node_modules/@nodable/entities/src/index.d.ts +264 -0
  196. package/node_modules/@nodable/entities/src/index.js +29 -0
  197. package/node_modules/@smithy/core/package.json +2 -2
  198. package/node_modules/@smithy/middleware-endpoint/package.json +3 -3
  199. package/node_modules/@smithy/middleware-retry/package.json +5 -5
  200. package/node_modules/@smithy/middleware-serde/package.json +2 -2
  201. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +27 -16
  202. package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +5 -0
  203. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +22 -16
  204. package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +4 -0
  205. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +2 -4
  206. package/node_modules/@smithy/node-http-handler/package.json +1 -1
  207. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +1 -0
  208. package/node_modules/@smithy/service-error-classification/dist-es/index.js +1 -0
  209. package/node_modules/@smithy/service-error-classification/package.json +1 -1
  210. package/node_modules/@smithy/smithy-client/package.json +4 -4
  211. package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
  212. package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
  213. package/node_modules/@smithy/util-retry/dist-cjs/index.js +20 -10
  214. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +20 -10
  215. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +12 -4
  216. package/node_modules/@smithy/util-retry/package.json +2 -2
  217. package/node_modules/@smithy/util-stream/package.json +2 -2
  218. package/node_modules/@smithy/util-waiter/dist-cjs/index.js +59 -34
  219. package/node_modules/@smithy/util-waiter/dist-es/poller.js +61 -34
  220. package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +1 -1
  221. package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +2 -1
  222. package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +13 -13
  223. package/node_modules/@smithy/util-waiter/package.json +1 -1
  224. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/CHANGELOG.md +53 -0
  225. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/README.md +8 -28
  226. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
  227. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
  228. package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
  229. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxp.d.cts +172 -6
  230. package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
  231. package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
  232. package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
  233. package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
  234. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/package.json +5 -4
  235. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.d.ts +162 -3
  236. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/DocTypeReader.js +2 -5
  237. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OptionsBuilder.js +15 -11
  238. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OrderedObjParser.js +168 -244
  239. package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/XMLParser.js +1 -1
  240. package/package.json +3 -3
  241. package/node_modules/@aws-sdk/client-codedeploy/dist-cjs/endpoint/ruleset.js +0 -7
  242. package/node_modules/@aws-sdk/client-codedeploy/dist-es/endpoint/ruleset.js +0 -4
  243. package/node_modules/@aws-sdk/client-codedeploy/dist-types/endpoint/ruleset.d.ts +0 -2
  244. package/node_modules/@aws-sdk/client-codedeploy/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
  245. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +0 -146
  246. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +0 -133
  247. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/ruleset.js +0 -106
  248. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +0 -106
  249. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +0 -145
  250. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js +0 -143
  251. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +0 -130
  252. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js +0 -103
  253. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +0 -103
  254. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +0 -142
  255. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
  256. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +0 -2
  257. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/ruleset.d.ts +0 -2
  258. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
  259. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +0 -2
  260. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
  261. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +0 -2
  262. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +0 -2
  263. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
  264. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +0 -2
  265. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
  266. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
  267. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
  268. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
  269. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
  270. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
  271. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
  272. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/pem.d.cts +0 -148
  273. package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/pem.d.ts +0 -135
  274. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/LICENSE +0 -0
  275. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js +0 -0
  276. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js.map +0 -0
  277. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/cli.js +0 -0
  278. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/man.js +0 -0
  279. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/read.js +0 -0
  280. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.js +0 -0
  281. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/ignoreAttributes.js +0 -0
  282. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/util.js +0 -0
  283. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/CharsSymbol.js +0 -0
  284. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/EntitiesParser.js +0 -0
  285. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OptionsBuilder.js +0 -0
  286. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -0
  287. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsArrBuilder.js +0 -0
  288. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -0
  289. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsObjBuilder.js +0 -0
  290. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -0
  291. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Report.js +0 -0
  292. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPath.js +0 -0
  293. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPathMatcher.js +0 -0
  294. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XMLParser.js +0 -0
  295. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Xml2JsParser.js +0 -0
  296. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlPartReader.js +0 -0
  297. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlSpecialTagsReader.js +0 -0
  298. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/BufferSource.js +0 -0
  299. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/StringSource.js +0 -0
  300. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/EntitiesParser.js +0 -0
  301. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParser.js +0 -0
  302. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParserExt.js +0 -0
  303. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/currency.js +0 -0
  304. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/join.js +0 -0
  305. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/number.js +0 -0
  306. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/trim.js +0 -0
  307. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/validator.js +0 -0
  308. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlbuilder/json2xml.js +0 -0
  309. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/node2json.js +0 -0
  310. /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/xmlNode.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-defaults-mode-browser",
3
- "version": "4.3.48",
3
+ "version": "4.3.49",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
6
6
  "build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline util-defaults-mode-browser",
@@ -24,7 +24,7 @@
24
24
  "sideEffects": false,
25
25
  "dependencies": {
26
26
  "@smithy/property-provider": "^4.2.14",
27
- "@smithy/smithy-client": "^4.12.12",
27
+ "@smithy/smithy-client": "^4.12.13",
28
28
  "@smithy/types": "^4.14.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-defaults-mode-node",
3
- "version": "4.2.53",
3
+ "version": "4.2.54",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
6
6
  "build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline util-defaults-mode-node",
@@ -27,7 +27,7 @@
27
27
  "@smithy/credential-provider-imds": "^4.2.14",
28
28
  "@smithy/node-config-provider": "^4.3.14",
29
29
  "@smithy/property-provider": "^4.2.14",
30
- "@smithy/smithy-client": "^4.12.12",
30
+ "@smithy/smithy-client": "^4.12.13",
31
31
  "@smithy/types": "^4.14.1",
32
32
  "tslib": "^2.6.2"
33
33
  },
@@ -187,6 +187,11 @@ class DefaultRetryToken {
187
187
  }
188
188
  }
189
189
 
190
+ const refusal = {
191
+ incompatible: 1,
192
+ attempts: 2,
193
+ capacity: 3,
194
+ };
190
195
  class StandardRetryStrategy {
191
196
  mode = exports.RETRY_MODES.STANDARD;
192
197
  capacity = INITIAL_RETRY_TOKENS;
@@ -214,8 +219,10 @@ class StandardRetryStrategy {
214
219
  }
215
220
  async refreshRetryTokenForRetry(token, errorInfo) {
216
221
  const maxAttempts = await this.getMaxAttempts();
217
- const shouldRetry = this.shouldRetry(token, errorInfo, maxAttempts);
218
- if (shouldRetry || token.isLongPoll?.()) {
222
+ const retryCode = this.retryCode(token, errorInfo, maxAttempts);
223
+ const shouldRetry = retryCode === 0;
224
+ const isLongPoll = token.isLongPoll?.();
225
+ if (shouldRetry || isLongPoll) {
219
226
  const errorType = errorInfo.errorType;
220
227
  this.retryBackoffStrategy.setDelayBase(errorType === "THROTTLING" ? Retry.throttlingDelay() : this.baseDelay);
221
228
  const delayFromErrorType = this.retryBackoffStrategy.computeNextBackoffDelay(token.getRetryCount());
@@ -224,7 +231,9 @@ class StandardRetryStrategy {
224
231
  retryDelay = Math.max(delayFromErrorType, Math.min(errorInfo.retryAfterHint.getTime() - Date.now(), delayFromErrorType + 5_000));
225
232
  }
226
233
  if (!shouldRetry) {
227
- throw Object.assign(new Error("No retry token available"), { $backoff: Retry.v2026 ? retryDelay : 0 });
234
+ throw Object.assign(new Error("No retry token available"), {
235
+ $backoff: Retry.v2026 && retryCode === refusal.capacity && isLongPoll ? retryDelay : 0,
236
+ });
228
237
  }
229
238
  else {
230
239
  const capacityCost = this.getCapacityCost(errorType);
@@ -240,6 +249,9 @@ class StandardRetryStrategy {
240
249
  getCapacity() {
241
250
  return this.capacity;
242
251
  }
252
+ async maxAttempts() {
253
+ return this.maxAttemptsProvider();
254
+ }
243
255
  async getMaxAttempts() {
244
256
  try {
245
257
  return await this.maxAttemptsProvider();
@@ -249,11 +261,12 @@ class StandardRetryStrategy {
249
261
  return DEFAULT_MAX_ATTEMPTS;
250
262
  }
251
263
  }
252
- shouldRetry(tokenToRenew, errorInfo, maxAttempts) {
264
+ retryCode(tokenToRenew, errorInfo, maxAttempts) {
253
265
  const attempts = tokenToRenew.getRetryCount() + 1;
254
- return (attempts < maxAttempts &&
255
- this.capacity >= this.getCapacityCost(errorInfo.errorType) &&
256
- this.isRetryableError(errorInfo.errorType));
266
+ const retryableStatus = this.isRetryableError(errorInfo.errorType) ? 0 : refusal.incompatible;
267
+ const attemptStatus = attempts < maxAttempts ? 0 : refusal.attempts;
268
+ const capacityStatus = this.capacity >= this.getCapacityCost(errorInfo.errorType) ? 0 : refusal.capacity;
269
+ return retryableStatus || attemptStatus || capacityStatus;
257
270
  }
258
271
  getCapacityCost(errorType) {
259
272
  return errorType === Retry.modifiedCostType() ? Retry.throttlingCost() : Retry.cost();
@@ -261,9 +274,6 @@ class StandardRetryStrategy {
261
274
  isRetryableError(errorType) {
262
275
  return errorType === "THROTTLING" || errorType === "TRANSIENT";
263
276
  }
264
- async maxAttempts() {
265
- return this.maxAttemptsProvider();
266
- }
267
277
  }
268
278
 
269
279
  class AdaptiveRetryStrategy {
@@ -3,6 +3,11 @@ import { INITIAL_RETRY_TOKENS, NO_RETRY_INCREMENT } from "./constants";
3
3
  import { DefaultRetryBackoffStrategy } from "./DefaultRetryBackoffStrategy";
4
4
  import { DefaultRetryToken } from "./DefaultRetryToken";
5
5
  import { Retry } from "./retries-2026-config";
6
+ const refusal = {
7
+ incompatible: 1,
8
+ attempts: 2,
9
+ capacity: 3,
10
+ };
6
11
  export class StandardRetryStrategy {
7
12
  mode = RETRY_MODES.STANDARD;
8
13
  capacity = INITIAL_RETRY_TOKENS;
@@ -30,8 +35,10 @@ export class StandardRetryStrategy {
30
35
  }
31
36
  async refreshRetryTokenForRetry(token, errorInfo) {
32
37
  const maxAttempts = await this.getMaxAttempts();
33
- const shouldRetry = this.shouldRetry(token, errorInfo, maxAttempts);
34
- if (shouldRetry || token.isLongPoll?.()) {
38
+ const retryCode = this.retryCode(token, errorInfo, maxAttempts);
39
+ const shouldRetry = retryCode === 0;
40
+ const isLongPoll = token.isLongPoll?.();
41
+ if (shouldRetry || isLongPoll) {
35
42
  const errorType = errorInfo.errorType;
36
43
  this.retryBackoffStrategy.setDelayBase(errorType === "THROTTLING" ? Retry.throttlingDelay() : this.baseDelay);
37
44
  const delayFromErrorType = this.retryBackoffStrategy.computeNextBackoffDelay(token.getRetryCount());
@@ -40,7 +47,9 @@ export class StandardRetryStrategy {
40
47
  retryDelay = Math.max(delayFromErrorType, Math.min(errorInfo.retryAfterHint.getTime() - Date.now(), delayFromErrorType + 5_000));
41
48
  }
42
49
  if (!shouldRetry) {
43
- throw Object.assign(new Error("No retry token available"), { $backoff: Retry.v2026 ? retryDelay : 0 });
50
+ throw Object.assign(new Error("No retry token available"), {
51
+ $backoff: Retry.v2026 && retryCode === refusal.capacity && isLongPoll ? retryDelay : 0,
52
+ });
44
53
  }
45
54
  else {
46
55
  const capacityCost = this.getCapacityCost(errorType);
@@ -56,6 +65,9 @@ export class StandardRetryStrategy {
56
65
  getCapacity() {
57
66
  return this.capacity;
58
67
  }
68
+ async maxAttempts() {
69
+ return this.maxAttemptsProvider();
70
+ }
59
71
  async getMaxAttempts() {
60
72
  try {
61
73
  return await this.maxAttemptsProvider();
@@ -65,11 +77,12 @@ export class StandardRetryStrategy {
65
77
  return DEFAULT_MAX_ATTEMPTS;
66
78
  }
67
79
  }
68
- shouldRetry(tokenToRenew, errorInfo, maxAttempts) {
80
+ retryCode(tokenToRenew, errorInfo, maxAttempts) {
69
81
  const attempts = tokenToRenew.getRetryCount() + 1;
70
- return (attempts < maxAttempts &&
71
- this.capacity >= this.getCapacityCost(errorInfo.errorType) &&
72
- this.isRetryableError(errorInfo.errorType));
82
+ const retryableStatus = this.isRetryableError(errorInfo.errorType) ? 0 : refusal.incompatible;
83
+ const attemptStatus = attempts < maxAttempts ? 0 : refusal.attempts;
84
+ const capacityStatus = this.capacity >= this.getCapacityCost(errorInfo.errorType) ? 0 : refusal.capacity;
85
+ return retryableStatus || attemptStatus || capacityStatus;
73
86
  }
74
87
  getCapacityCost(errorType) {
75
88
  return errorType === Retry.modifiedCostType() ? Retry.throttlingCost() : Retry.cost();
@@ -77,7 +90,4 @@ export class StandardRetryStrategy {
77
90
  isRetryableError(errorType) {
78
91
  return errorType === "THROTTLING" || errorType === "TRANSIENT";
79
92
  }
80
- async maxAttempts() {
81
- return this.maxAttemptsProvider();
82
- }
83
93
  }
@@ -36,13 +36,21 @@ export declare class StandardRetryStrategy implements RetryStrategyV2 {
36
36
  * @returns the current available retry capacity.
37
37
  */
38
38
  getCapacity(): number;
39
- private getMaxAttempts;
40
- private shouldRetry;
41
- private getCapacityCost;
42
- private isRetryableError;
43
39
  /**
44
40
  * There is an existing integration which accesses this field.
45
41
  * @deprecated
46
42
  */
47
43
  maxAttempts(): Promise<number>;
44
+ private getMaxAttempts;
45
+ /**
46
+ * 0 - OK to retry.
47
+ * 1 - error is not classified as retryable.
48
+ * 2 - attempt count exhausted.
49
+ * 3 - no capacity left (retry tokens exhausted).
50
+ *
51
+ * @returns 0 or the number of the highest priority (lowest integer) reason why retry is not possible.
52
+ */
53
+ private retryCode;
54
+ private getCapacityCost;
55
+ private isRetryableError;
48
56
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-retry",
3
- "version": "4.3.3",
3
+ "version": "4.3.5",
4
4
  "description": "Shared retry utilities to be used in middleware packages.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -30,7 +30,7 @@
30
30
  "license": "Apache-2.0",
31
31
  "sideEffects": false,
32
32
  "dependencies": {
33
- "@smithy/service-error-classification": "^4.3.0",
33
+ "@smithy/service-error-classification": "^4.3.1",
34
34
  "@smithy/types": "^4.14.1",
35
35
  "tslib": "^2.6.2"
36
36
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-stream",
3
- "version": "4.5.24",
3
+ "version": "4.5.25",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
6
6
  "build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline util-stream",
@@ -29,7 +29,7 @@
29
29
  "sideEffects": false,
30
30
  "dependencies": {
31
31
  "@smithy/fetch-http-handler": "^5.3.17",
32
- "@smithy/node-http-handler": "^4.6.0",
32
+ "@smithy/node-http-handler": "^4.6.1",
33
33
  "@smithy/types": "^4.14.1",
34
34
  "@smithy/util-base64": "^4.3.2",
35
35
  "@smithy/util-buffer-from": "^4.2.2",
@@ -52,39 +52,27 @@ const checkExceptions = (result) => {
52
52
  return result;
53
53
  };
54
54
 
55
- const exponentialBackoffWithJitter = (minDelay, maxDelay, attemptCeiling, attempt) => {
56
- if (attempt > attemptCeiling)
57
- return maxDelay;
58
- const delay = minDelay * 2 ** (attempt - 1);
59
- return randomInRange(minDelay, delay);
60
- };
61
- const randomInRange = (min, max) => min + Math.random() * (max - min);
62
55
  const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }, input, acceptorChecks) => {
63
56
  const observedResponses = {};
64
- const { state, reason } = await acceptorChecks(client, input);
65
- if (reason) {
66
- const message = createMessageFromResponse(reason);
67
- observedResponses[message] |= 0;
68
- observedResponses[message] += 1;
69
- }
70
- if (state !== exports.WaiterState.RETRY) {
71
- return { state, reason, observedResponses };
72
- }
73
- let currentAttempt = 1;
57
+ const [minDelayMs, maxDelayMs] = [minDelay * 1000, maxDelay * 1000];
58
+ let currentAttempt = 0;
74
59
  const waitUntil = Date.now() + maxWaitTime * 1000;
75
- const attemptCeiling = Math.log(maxDelay / minDelay) / Math.log(2) + 1;
60
+ const warn403Time = Date.now() + 60_000;
61
+ let didWarn403 = false;
76
62
  while (true) {
77
- if (abortController?.signal?.aborted || abortSignal?.aborted) {
78
- const message = "AbortController signal aborted.";
79
- observedResponses[message] |= 0;
80
- observedResponses[message] += 1;
81
- return { state: exports.WaiterState.ABORTED, observedResponses };
82
- }
83
- const delay = exponentialBackoffWithJitter(minDelay, maxDelay, attemptCeiling, currentAttempt);
84
- if (Date.now() + delay * 1000 > waitUntil) {
85
- return { state: exports.WaiterState.TIMEOUT, observedResponses };
63
+ if (currentAttempt > 0) {
64
+ const delayMs = exponentialBackoffWithJitter(minDelayMs, maxDelayMs, currentAttempt, waitUntil);
65
+ if (abortController?.signal?.aborted || abortSignal?.aborted) {
66
+ const message = "AbortController signal aborted.";
67
+ observedResponses[message] |= 0;
68
+ observedResponses[message] += 1;
69
+ return { state: exports.WaiterState.ABORTED, observedResponses };
70
+ }
71
+ if (Date.now() + delayMs > waitUntil) {
72
+ return { state: exports.WaiterState.TIMEOUT, observedResponses };
73
+ }
74
+ await sleep(delayMs / 1_000);
86
75
  }
87
- await sleep(delay);
88
76
  const { state, reason } = await acceptorChecks(client, input);
89
77
  if (reason) {
90
78
  const message = createMessageFromResponse(reason);
@@ -92,23 +80,60 @@ const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortController, cl
92
80
  observedResponses[message] += 1;
93
81
  }
94
82
  if (state !== exports.WaiterState.RETRY) {
95
- return { state, reason, observedResponses };
83
+ return { state, reason, final: reason, observedResponses };
96
84
  }
97
85
  currentAttempt += 1;
86
+ if (!didWarn403 && Date.now() >= warn403Time) {
87
+ checkWarn403(observedResponses, client);
88
+ didWarn403 = true;
89
+ }
90
+ }
91
+ };
92
+ const checkWarn403 = (observedResponses = {}, client) => {
93
+ const orderedErrors = Object.keys(observedResponses);
94
+ let count403 = 0;
95
+ for (const response of orderedErrors) {
96
+ const n = observedResponses[response] | 0;
97
+ if (response.startsWith("403:")) {
98
+ count403 += n;
99
+ }
100
+ }
101
+ const clientLogger = client?.config?.logger;
102
+ const warningLogger = typeof clientLogger?.warn === "function" && !clientLogger.constructor?.name?.includes?.("NoOpLogger")
103
+ ? clientLogger
104
+ : console;
105
+ if (count403 >= 3 || orderedErrors[orderedErrors.length - 1].startsWith("403:")) {
106
+ warningLogger.warn(`@smithy/util-waiter WARN - 403 status code encountered during waiter polling.`);
98
107
  }
99
108
  };
100
109
  const createMessageFromResponse = (reason) => {
110
+ const status = reason?.$response?.statusCode ?? reason?.$metadata?.httpStatusCode;
101
111
  if (reason?.$responseBodyText) {
102
- return `Deserialization error for body: ${reason.$responseBodyText}`;
112
+ return `${status ? status + ": " : ""}Deserialization error for body: ${reason.$responseBodyText}`;
103
113
  }
104
- if (reason?.$metadata?.httpStatusCode) {
105
- if (reason.$response || reason.message) {
106
- return `${reason.$response?.statusCode ?? reason.$metadata.httpStatusCode ?? "Unknown"}: ${reason.message}`;
114
+ if (status) {
115
+ if (reason?.$response || reason?.message) {
116
+ return `${status ?? "Unknown"}: ${reason?.message}`;
107
117
  }
108
- return `${reason.$metadata.httpStatusCode}: OK`;
118
+ return `${status}: OK`;
109
119
  }
110
120
  return String(reason?.message ?? JSON.stringify(reason, getCircularReplacer()) ?? "Unknown");
111
121
  };
122
+ const exponentialBackoffWithJitter = (minDelayMs, maxDelayMs, attempt, waitUntil) => {
123
+ const attemptCountCeiling = Math.log(maxDelayMs / minDelayMs) / Math.log(2) + 1;
124
+ if (attempt > attemptCountCeiling) {
125
+ return maxDelayMs;
126
+ }
127
+ const delay = minDelayMs * 2 ** (attempt - 1);
128
+ const capped = Math.min(delay, maxDelayMs);
129
+ const waitFor = randomInRange(minDelayMs, capped);
130
+ if (Date.now() + waitFor > waitUntil) {
131
+ const timeRemaining = waitUntil - Date.now();
132
+ return Math.max(0, timeRemaining - 500);
133
+ }
134
+ return waitFor;
135
+ };
136
+ const randomInRange = (min, max) => min + Math.random() * (max - min);
112
137
 
113
138
  const validateWaiterOptions = (options) => {
114
139
  if (options.maxWaitTime <= 0) {
@@ -1,39 +1,27 @@
1
1
  import { getCircularReplacer } from "./circularReplacer";
2
2
  import { sleep } from "./utils/sleep";
3
3
  import { WaiterState } from "./waiter";
4
- const exponentialBackoffWithJitter = (minDelay, maxDelay, attemptCeiling, attempt) => {
5
- if (attempt > attemptCeiling)
6
- return maxDelay;
7
- const delay = minDelay * 2 ** (attempt - 1);
8
- return randomInRange(minDelay, delay);
9
- };
10
- const randomInRange = (min, max) => min + Math.random() * (max - min);
11
4
  export const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }, input, acceptorChecks) => {
12
5
  const observedResponses = {};
13
- const { state, reason } = await acceptorChecks(client, input);
14
- if (reason) {
15
- const message = createMessageFromResponse(reason);
16
- observedResponses[message] |= 0;
17
- observedResponses[message] += 1;
18
- }
19
- if (state !== WaiterState.RETRY) {
20
- return { state, reason, observedResponses };
21
- }
22
- let currentAttempt = 1;
6
+ const [minDelayMs, maxDelayMs] = [minDelay * 1000, maxDelay * 1000];
7
+ let currentAttempt = 0;
23
8
  const waitUntil = Date.now() + maxWaitTime * 1000;
24
- const attemptCeiling = Math.log(maxDelay / minDelay) / Math.log(2) + 1;
9
+ const warn403Time = Date.now() + 60_000;
10
+ let didWarn403 = false;
25
11
  while (true) {
26
- if (abortController?.signal?.aborted || abortSignal?.aborted) {
27
- const message = "AbortController signal aborted.";
28
- observedResponses[message] |= 0;
29
- observedResponses[message] += 1;
30
- return { state: WaiterState.ABORTED, observedResponses };
12
+ if (currentAttempt > 0) {
13
+ const delayMs = exponentialBackoffWithJitter(minDelayMs, maxDelayMs, currentAttempt, waitUntil);
14
+ if (abortController?.signal?.aborted || abortSignal?.aborted) {
15
+ const message = "AbortController signal aborted.";
16
+ observedResponses[message] |= 0;
17
+ observedResponses[message] += 1;
18
+ return { state: WaiterState.ABORTED, observedResponses };
19
+ }
20
+ if (Date.now() + delayMs > waitUntil) {
21
+ return { state: WaiterState.TIMEOUT, observedResponses };
22
+ }
23
+ await sleep(delayMs / 1_000);
31
24
  }
32
- const delay = exponentialBackoffWithJitter(minDelay, maxDelay, attemptCeiling, currentAttempt);
33
- if (Date.now() + delay * 1000 > waitUntil) {
34
- return { state: WaiterState.TIMEOUT, observedResponses };
35
- }
36
- await sleep(delay);
37
25
  const { state, reason } = await acceptorChecks(client, input);
38
26
  if (reason) {
39
27
  const message = createMessageFromResponse(reason);
@@ -41,20 +29,59 @@ export const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortControl
41
29
  observedResponses[message] += 1;
42
30
  }
43
31
  if (state !== WaiterState.RETRY) {
44
- return { state, reason, observedResponses };
32
+ return { state, reason, final: reason, observedResponses };
45
33
  }
46
34
  currentAttempt += 1;
35
+ if (!didWarn403 && Date.now() >= warn403Time) {
36
+ checkWarn403(observedResponses, client);
37
+ didWarn403 = true;
38
+ }
39
+ }
40
+ };
41
+ const checkWarn403 = (observedResponses = {}, client) => {
42
+ const orderedErrors = Object.keys(observedResponses);
43
+ let maxCount = 0;
44
+ let count403 = 0;
45
+ for (const response of orderedErrors) {
46
+ const n = observedResponses[response] | 0;
47
+ maxCount = Math.max(n, maxCount);
48
+ if (response.startsWith("403:")) {
49
+ count403 += n;
50
+ }
51
+ }
52
+ const clientLogger = client?.config?.logger;
53
+ const warningLogger = typeof clientLogger?.warn === "function" && !clientLogger.constructor?.name?.includes?.("NoOpLogger")
54
+ ? clientLogger
55
+ : console;
56
+ if (count403 >= 3 || orderedErrors[orderedErrors.length - 1].startsWith("403:")) {
57
+ warningLogger.warn(`@smithy/util-waiter WARN - 403 status code encountered during waiter polling.`);
47
58
  }
48
59
  };
49
60
  const createMessageFromResponse = (reason) => {
61
+ const status = reason?.$response?.statusCode ?? reason?.$metadata?.httpStatusCode;
50
62
  if (reason?.$responseBodyText) {
51
- return `Deserialization error for body: ${reason.$responseBodyText}`;
63
+ return `${status ? status + ": " : ""}Deserialization error for body: ${reason.$responseBodyText}`;
52
64
  }
53
- if (reason?.$metadata?.httpStatusCode) {
54
- if (reason.$response || reason.message) {
55
- return `${reason.$response?.statusCode ?? reason.$metadata.httpStatusCode ?? "Unknown"}: ${reason.message}`;
65
+ if (status) {
66
+ if (reason?.$response || reason?.message) {
67
+ return `${status ?? "Unknown"}: ${reason?.message}`;
56
68
  }
57
- return `${reason.$metadata.httpStatusCode}: OK`;
69
+ return `${status}: OK`;
58
70
  }
59
71
  return String(reason?.message ?? JSON.stringify(reason, getCircularReplacer()) ?? "Unknown");
60
72
  };
73
+ const exponentialBackoffWithJitter = (minDelayMs, maxDelayMs, attempt, waitUntil) => {
74
+ const attemptCountCeiling = Math.log(maxDelayMs / minDelayMs) / Math.log(2) + 1;
75
+ if (attempt > attemptCountCeiling) {
76
+ return maxDelayMs;
77
+ }
78
+ const delay = minDelayMs * 2 ** (attempt - 1);
79
+ const capped = Math.min(delay, maxDelayMs);
80
+ const waitFor = randomInRange(minDelayMs, capped);
81
+ if (Date.now() + waitFor > waitUntil) {
82
+ const timeRemaining = waitUntil - Date.now();
83
+ return Math.max(0, timeRemaining - 500);
84
+ }
85
+ return waitFor;
86
+ };
87
+ const randomInRange = (min, max) => min + Math.random() * (max - min);
@@ -8,4 +8,4 @@ import type { WaiterOptions, WaiterResult } from "./waiter";
8
8
  *
9
9
  * @internal
10
10
  */
11
- export declare const createWaiter: <Client, Input>(options: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult>) => Promise<WaiterResult>;
11
+ export declare const createWaiter: <Client, Input, Reason = any>(options: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult<Reason>>) => Promise<WaiterResult<Reason>>;
@@ -2,9 +2,10 @@ import type { WaiterOptions, WaiterResult } from "./waiter";
2
2
  /**
3
3
  * Function that runs polling as part of waiters. This will make one inital attempt and then
4
4
  * subsequent attempts with an increasing delay.
5
+ *
5
6
  * @param params - options passed to the waiter.
6
7
  * @param client - AWS SDK Client
7
8
  * @param input - client input
8
9
  * @param acceptorChecks - function that checks the acceptor states on each poll.
9
10
  */
10
- export declare const runPolling: <Client, Input>({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult>) => Promise<WaiterResult>;
11
+ export declare const runPolling: <Client, Input, Reason = any>({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult<Reason>>) => Promise<WaiterResult<Reason>>;
@@ -1,9 +1,5 @@
1
- import type { WaiterConfiguration as WaiterConfiguration__ } from "@smithy/types";
2
- /**
3
- * @internal
4
- */
5
- export interface WaiterConfiguration<T> extends WaiterConfiguration__<T> {
6
- }
1
+ import type { WaiterConfiguration } from "@smithy/types";
2
+ export { WaiterConfiguration };
7
3
  /**
8
4
  * @internal
9
5
  */
@@ -16,7 +12,7 @@ export declare const waiterServiceDefaults: {
16
12
  */
17
13
  export type WaiterOptions<Client> = WaiterConfiguration<Client> & Required<Pick<WaiterConfiguration<Client>, "minDelay" | "maxDelay">>;
18
14
  /**
19
- * @internal
15
+ * @public
20
16
  */
21
17
  export declare enum WaiterState {
22
18
  ABORTED = "ABORTED",
@@ -26,14 +22,19 @@ export declare enum WaiterState {
26
22
  TIMEOUT = "TIMEOUT"
27
23
  }
28
24
  /**
29
- * @internal
25
+ * @public
30
26
  */
31
- export type WaiterResult = {
27
+ export type WaiterResult<R = any> = {
32
28
  state: WaiterState;
33
29
  /**
34
- * (optional) Indicates a reason for why a waiter has reached its state.
30
+ * @deprecated because this was untyped as `any`, new code should use the field 'final',
31
+ * which is the same value, but typed.
35
32
  */
36
33
  reason?: any;
34
+ /**
35
+ * (optional) Indicates a reason for why a waiter has reached its state.
36
+ */
37
+ final?: R;
37
38
  /**
38
39
  * Responses observed by the waiter during its polling, where the value
39
40
  * is the count.
@@ -41,9 +42,8 @@ export type WaiterResult = {
41
42
  observedResponses?: Record<string, number>;
42
43
  };
43
44
  /**
44
- * @internal
45
- *
46
45
  * Handles and throws exceptions resulting from the waiterResult
46
+ * @internal
47
47
  * @param result - WaiterResult
48
48
  */
49
- export declare const checkExceptions: (result: WaiterResult) => WaiterResult;
49
+ export declare const checkExceptions: <R>(result: WaiterResult<R>) => WaiterResult<R>;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithy/util-waiter",
3
- "version": "4.2.16",
3
+ "version": "4.3.0",
4
4
  "description": "Shared utilities for client waiters for the AWS SDK",
5
5
  "dependencies": {
6
6
  "@smithy/types": "^4.14.1",
@@ -2,6 +2,59 @@
2
2
 
3
3
  Note: Due to some last quick changes on v4, detail of v4.5.3 & v4.5.4 are not updated here. v4.5.4x is the last tag of v4 in github repository. I'm extremely sorry for the confusion
4
4
 
5
+ **5.7.0 / 2026-04-17**
6
+ - Use `@nodable/entities` v2.1.0
7
+ - breaking changes
8
+ - single entity scan. You're not allowed to user entity value to form another entity name.
9
+ - you cant add numeric external entity
10
+ - entity error message when expantion limit is crossed might change
11
+ - typings are updated for new options related to process entity
12
+ - please follow documentation of `@nodable/entities` for more detail.
13
+ - performance
14
+ - if processEntities is false, then there should not be impact on performance.
15
+ - if processEntities is true, but you dont pass entity decoder separately then performance may degrade by approx 8-10%
16
+ - if processEntities is true, and you pass entity decoder separately
17
+ - if no entity then performance should be same as before
18
+ - if there are entities then performance should be increased from past versions
19
+ - ignoreAttributes is not required to be set to set xml version for NCR entity value
20
+ - update 'fast-xml-builder' to sanitize malicious CDATA and comment's content
21
+
22
+ **5.6.0 / 2026-04-15**
23
+ - fix: entity replacement for numeric entities
24
+ - use @nodable/entities to replace entities
25
+ - this may change some error messages related to entities expansion limit or inavlid use
26
+ - post check would be exposed in future version
27
+
28
+ **5.5.12 / 2026-04-13**
29
+ - Performance Improvement: update path-expression-matcher
30
+ - use proxy pattern than Proxy class
31
+
32
+ **5.5.11 / 2026-04-08**
33
+ - Performance Improvement
34
+ - integrate ExpressionSet for stopNodes
35
+
36
+ **5.5.10 / 2026-04-03**
37
+ - increase default entity explansion limit as many projects demand for that
38
+ - performance improvement
39
+ - reduce calls to toString
40
+ - early return when entities are not present
41
+ - prepare rawAttrsForMatcher only if user sets `jPath: false`
42
+
43
+ **5.5.9 / 2026-03-23**
44
+ - combine typing files
45
+
46
+
47
+ **4.5.5 / 2026-03-22**
48
+
49
+ apply fixes from v5 (legacy maintenance branch v4-maintenance)
50
+
51
+ - support maxEntityCount
52
+ - support onDangerousProperty
53
+ - support maxNestedTags
54
+ - handle prototype pollution
55
+ - fix incorrect entity name replacement
56
+ - fix incorrect condition for entity expansion
57
+
5
58
  **5.5.8 / 2026-03-20**
6
59
  - pass read only matcher in callback
7
60