@cdk8s/awscdk-resolver 0.0.42 → 0.0.44

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 (204) hide show
  1. package/.jsii +3 -3
  2. package/lib/fetch-output-value.js +1 -1
  3. package/lib/resolve.js +2 -2
  4. package/node_modules/@aws-sdk/client-cloudformation/package.json +4 -4
  5. package/node_modules/@aws-sdk/client-sso/package.json +2 -2
  6. package/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +17 -3
  7. package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  8. package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js +67 -0
  9. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +0 -2
  10. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +0 -2
  11. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +0 -2
  12. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +0 -2
  13. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +0 -2
  14. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +0 -2
  15. package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1 -1
  16. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +14 -0
  17. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +16 -0
  18. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js +3 -0
  19. package/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +17 -3
  20. package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  21. package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js +60 -0
  22. package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +0 -2
  23. package/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +0 -2
  24. package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +0 -2
  25. package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +0 -2
  26. package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +0 -2
  27. package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +0 -2
  28. package/node_modules/@aws-sdk/client-sts/dist-es/index.js +1 -1
  29. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +15 -1
  30. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +16 -0
  31. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js +3 -0
  32. package/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +13 -11
  33. package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  34. package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthSchemeProvider.d.ts +71 -0
  35. package/node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts +2 -1
  36. package/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +1 -1
  37. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +15 -5
  38. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +13 -5
  39. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +16 -6
  40. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +15 -2
  41. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +11 -9
  42. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  43. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +54 -0
  44. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
  45. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +1 -1
  46. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +36 -9
  47. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +27 -9
  48. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +39 -12
  49. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +36 -4
  50. package/node_modules/@aws-sdk/client-sts/package.json +5 -5
  51. package/node_modules/@aws-sdk/core/CHANGELOG.md +22 -0
  52. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws-sdk/AWSSDKSigV4Signer.js +55 -0
  53. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws-sdk/index.js +5 -0
  54. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws-sdk/resolveAWSSDKSigV4Config.js +81 -0
  55. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws-sdk/throwAWSSDKSigningPropertyError.js +10 -0
  56. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/index.js +4 -0
  57. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getDateHeader.js +6 -0
  58. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getSkewCorrectedDate.js +5 -0
  59. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +12 -0
  60. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/index.js +6 -0
  61. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/isClockSkewed.js +6 -0
  62. package/node_modules/@aws-sdk/core/dist-cjs/index.js +1 -0
  63. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws-sdk/AWSSDKSigV4Signer.js +49 -0
  64. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws-sdk/index.js +2 -0
  65. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws-sdk/resolveAWSSDKSigV4Config.js +77 -0
  66. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws-sdk/throwAWSSDKSigningPropertyError.js +6 -0
  67. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/index.js +1 -0
  68. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getDateHeader.js +2 -0
  69. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
  70. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
  71. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/index.js +3 -0
  72. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/isClockSkewed.js +2 -0
  73. package/node_modules/@aws-sdk/core/dist-es/index.js +1 -0
  74. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws-sdk/AWSSDKSigV4Signer.d.ts +13 -0
  75. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws-sdk/index.d.ts +2 -0
  76. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws-sdk/resolveAWSSDKSigV4Config.d.ts +76 -0
  77. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws-sdk/throwAWSSDKSigningPropertyError.d.ts +4 -0
  78. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/index.d.ts +1 -0
  79. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
  80. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
  81. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
  82. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/index.d.ts +3 -0
  83. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
  84. package/node_modules/@aws-sdk/core/dist-types/index.d.ts +1 -0
  85. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws-sdk/AWSSDKSigV4Signer.d.ts +20 -0
  86. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws-sdk/index.d.ts +2 -0
  87. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws-sdk/resolveAWSSDKSigV4Config.d.ts +46 -0
  88. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws-sdk/throwAWSSDKSigningPropertyError.d.ts +4 -0
  89. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/index.d.ts +1 -0
  90. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
  91. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
  92. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
  93. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/index.d.ts +3 -0
  94. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
  95. package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +1 -0
  96. package/node_modules/@aws-sdk/core/package.json +6 -2
  97. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws-sdk/AWSSDKSigV4Signer.ts +118 -0
  98. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws-sdk/index.ts +2 -0
  99. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws-sdk/resolveAWSSDKSigV4Config.ts +216 -0
  100. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws-sdk/throwAWSSDKSigningPropertyError.ts +9 -0
  101. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/index.ts +1 -0
  102. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getDateHeader.ts +7 -0
  103. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.spec.ts +17 -0
  104. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.ts +8 -0
  105. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.spec.ts +37 -0
  106. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.ts +18 -0
  107. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/index.ts +3 -0
  108. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.spec.ts +32 -0
  109. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.ts +12 -0
  110. package/node_modules/@aws-sdk/core/src/index.ts +1 -0
  111. package/node_modules/@aws-sdk/core/tsconfig.cjs.tsbuildinfo +1 -1
  112. package/node_modules/@aws-sdk/core/tsconfig.es.tsbuildinfo +1 -1
  113. package/node_modules/@aws-sdk/core/tsconfig.types.tsbuildinfo +1 -1
  114. package/node_modules/@aws-sdk/credential-provider-ini/package.json +2 -2
  115. package/node_modules/@aws-sdk/credential-provider-node/package.json +3 -3
  116. package/node_modules/@aws-sdk/credential-provider-sso/package.json +2 -2
  117. package/node_modules/{@aws-sdk/middleware-sdk-sts → @smithy/core}/LICENSE +1 -1
  118. package/node_modules/@smithy/core/README.md +12 -0
  119. package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +6 -0
  120. package/node_modules/@smithy/core/dist-cjs/index.js +12 -0
  121. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +22 -0
  122. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +22 -0
  123. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +45 -0
  124. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +6 -0
  125. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +20 -0
  126. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +28 -0
  127. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +5 -0
  128. package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +10 -0
  129. package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +32 -0
  130. package/node_modules/@smithy/core/dist-cjs/protocols/requestBuilder.js +72 -0
  131. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +17 -0
  132. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +37 -0
  133. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +14 -0
  134. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +6 -0
  135. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +9 -0
  136. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +6 -0
  137. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +59 -0
  138. package/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
  139. package/node_modules/@smithy/core/dist-es/index.js +7 -0
  140. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +18 -0
  141. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
  142. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +40 -0
  143. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
  144. package/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +16 -0
  145. package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +24 -0
  146. package/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
  147. package/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
  148. package/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +27 -0
  149. package/node_modules/@smithy/core/dist-es/protocols/requestBuilder.js +67 -0
  150. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
  151. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +33 -0
  152. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +10 -0
  153. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
  154. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
  155. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
  156. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +53 -0
  157. package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
  158. package/node_modules/@smithy/core/dist-types/index.d.ts +7 -0
  159. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
  160. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
  161. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +32 -0
  162. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
  163. package/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
  164. package/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
  165. package/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
  166. package/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
  167. package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
  168. package/node_modules/@smithy/core/dist-types/protocols/requestBuilder.d.ts +51 -0
  169. package/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
  170. package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +7 -0
  171. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
  172. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
  173. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +32 -0
  174. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
  175. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
  176. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
  177. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
  178. package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
  179. package/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
  180. package/node_modules/@smithy/core/dist-types/ts3.4/protocols/requestBuilder.d.ts +51 -0
  181. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
  182. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
  183. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
  184. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
  185. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
  186. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
  187. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
  188. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
  189. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
  190. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
  191. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
  192. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
  193. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
  194. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
  195. package/node_modules/@smithy/core/package.json +67 -0
  196. package/node_modules/@smithy/signature-v4/README.md +1 -1
  197. package/node_modules/@smithy/signature-v4/package.json +1 -1
  198. package/package.json +5 -5
  199. package/node_modules/@aws-sdk/middleware-sdk-sts/README.md +0 -4
  200. package/node_modules/@aws-sdk/middleware-sdk-sts/dist-cjs/index.js +0 -9
  201. package/node_modules/@aws-sdk/middleware-sdk-sts/dist-es/index.js +0 -5
  202. package/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/index.d.ts +0 -37
  203. package/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +0 -34
  204. package/node_modules/@aws-sdk/middleware-sdk-sts/package.json +0 -55
package/package.json CHANGED
@@ -48,14 +48,14 @@
48
48
  "@types/node": "^16",
49
49
  "@typescript-eslint/eslint-plugin": "^6",
50
50
  "@typescript-eslint/parser": "^6",
51
- "aws-cdk": "^2.114.1",
51
+ "aws-cdk": "^2.115.0",
52
52
  "aws-cdk-lib": "2.109.0",
53
53
  "cdk8s": "2.68.4",
54
- "cdk8s-cli": "^2.198.7",
54
+ "cdk8s-cli": "^2.198.14",
55
55
  "constructs": "10.3.0",
56
56
  "eslint": "^8",
57
57
  "eslint-import-resolver-typescript": "^3.6.1",
58
- "eslint-plugin-import": "^2.29.0",
58
+ "eslint-plugin-import": "^2.29.1",
59
59
  "fs-extra": "^11.2.0",
60
60
  "jest": "^27",
61
61
  "jest-junit": "^15",
@@ -64,7 +64,7 @@
64
64
  "jsii-docgen": "^9.2.2",
65
65
  "jsii-pacmak": "^1.93.0",
66
66
  "jsii-rosetta": "^5",
67
- "projen": "^0.77.5",
67
+ "projen": "^0.77.6",
68
68
  "standard-version": "^9",
69
69
  "ts-jest": "^27",
70
70
  "ts-node": "^10.9.2",
@@ -92,7 +92,7 @@
92
92
  "publishConfig": {
93
93
  "access": "public"
94
94
  },
95
- "version": "0.0.42",
95
+ "version": "0.0.44",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
@@ -1,4 +0,0 @@
1
- # @aws-sdk/middleware-sdk-sts
2
-
3
- [![NPM version](https://img.shields.io/npm/v/@aws-sdk/middleware-sdk-sts/latest.svg)](https://www.npmjs.com/package/@aws-sdk/middleware-sdk-sts)
4
- [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/middleware-sdk-sts.svg)](https://www.npmjs.com/package/@aws-sdk/middleware-sdk-sts)
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.resolveStsAuthConfig = void 0;
4
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
5
- const resolveStsAuthConfig = (input, { stsClientCtor }) => (0, middleware_signing_1.resolveAwsAuthConfig)({
6
- ...input,
7
- stsClientCtor,
8
- });
9
- exports.resolveStsAuthConfig = resolveStsAuthConfig;
@@ -1,5 +0,0 @@
1
- import { resolveAwsAuthConfig } from "@aws-sdk/middleware-signing";
2
- export const resolveStsAuthConfig = (input, { stsClientCtor }) => resolveAwsAuthConfig({
3
- ...input,
4
- stsClientCtor,
5
- });
@@ -1,37 +0,0 @@
1
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
2
- import { AwsCredentialIdentity, ChecksumConstructor, Client, HashConstructor, Provider, RegionInfoProvider } from "@smithy/types";
3
- /**
4
- * @public
5
- */
6
- export interface StsAuthInputConfig extends AwsAuthInputConfig {
7
- }
8
- interface PreviouslyResolved {
9
- credentialDefaultProvider: (input: any) => Provider<AwsCredentialIdentity>;
10
- region: string | Provider<string>;
11
- regionInfoProvider?: RegionInfoProvider;
12
- signingName?: string;
13
- serviceId: string;
14
- sha256: ChecksumConstructor | HashConstructor;
15
- useFipsEndpoint: Provider<boolean>;
16
- useDualstackEndpoint: Provider<boolean>;
17
- }
18
- export interface StsAuthResolvedConfig extends AwsAuthResolvedConfig {
19
- /**
20
- * Reference to STSClient class constructor.
21
- * @internal
22
- */
23
- stsClientCtor: new (clientConfig: any) => Client<any, any, any>;
24
- }
25
- export interface StsAuthConfigOptions {
26
- /**
27
- * Reference to STSClient class constructor.
28
- */
29
- stsClientCtor: new (clientConfig: any) => Client<any, any, any>;
30
- }
31
- /**
32
- * Set STS client constructor to `stsClientCtor` config parameter. It is used
33
- * for role assumers for STS client internally. See `clients/client-sts/defaultStsRoleAssumers.ts`
34
- * and `clients/client-sts/STSClient.ts`.
35
- */
36
- export declare const resolveStsAuthConfig: <T>(input: T & PreviouslyResolved & StsAuthInputConfig, { stsClientCtor }: StsAuthConfigOptions) => T & StsAuthResolvedConfig;
37
- export {};
@@ -1,34 +0,0 @@
1
- import {
2
- AwsAuthInputConfig,
3
- AwsAuthResolvedConfig,
4
- } from "@aws-sdk/middleware-signing";
5
- import {
6
- AwsCredentialIdentity,
7
- ChecksumConstructor,
8
- Client,
9
- HashConstructor,
10
- Provider,
11
- RegionInfoProvider,
12
- } from "@smithy/types";
13
- export interface StsAuthInputConfig extends AwsAuthInputConfig {}
14
- interface PreviouslyResolved {
15
- credentialDefaultProvider: (input: any) => Provider<AwsCredentialIdentity>;
16
- region: string | Provider<string>;
17
- regionInfoProvider?: RegionInfoProvider;
18
- signingName?: string;
19
- serviceId: string;
20
- sha256: ChecksumConstructor | HashConstructor;
21
- useFipsEndpoint: Provider<boolean>;
22
- useDualstackEndpoint: Provider<boolean>;
23
- }
24
- export interface StsAuthResolvedConfig extends AwsAuthResolvedConfig {
25
- stsClientCtor: new (clientConfig: any) => Client<any, any, any>;
26
- }
27
- export interface StsAuthConfigOptions {
28
- stsClientCtor: new (clientConfig: any) => Client<any, any, any>;
29
- }
30
- export declare const resolveStsAuthConfig: <T>(
31
- input: T & PreviouslyResolved & StsAuthInputConfig,
32
- { stsClientCtor }: StsAuthConfigOptions
33
- ) => T & StsAuthResolvedConfig;
34
- export {};
@@ -1,55 +0,0 @@
1
- {
2
- "name": "@aws-sdk/middleware-sdk-sts",
3
- "version": "3.468.0",
4
- "scripts": {
5
- "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
- "build:cjs": "tsc -p tsconfig.cjs.json",
7
- "build:es": "tsc -p tsconfig.es.json",
8
- "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
9
- "build:types": "tsc -p tsconfig.types.json",
10
- "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
- "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
12
- "test": "exit 0",
13
- "test:integration": "jest -c jest.config.integ.js"
14
- },
15
- "main": "./dist-cjs/index.js",
16
- "module": "./dist-es/index.js",
17
- "types": "./dist-types/index.d.ts",
18
- "author": {
19
- "name": "AWS SDK for JavaScript Team",
20
- "url": "https://aws.amazon.com/javascript/"
21
- },
22
- "license": "Apache-2.0",
23
- "dependencies": {
24
- "@aws-sdk/middleware-signing": "3.468.0",
25
- "@aws-sdk/types": "3.468.0",
26
- "@smithy/types": "^2.7.0",
27
- "tslib": "^2.5.0"
28
- },
29
- "engines": {
30
- "node": ">=14.0.0"
31
- },
32
- "typesVersions": {
33
- "<4.0": {
34
- "dist-types/*": [
35
- "dist-types/ts3.4/*"
36
- ]
37
- }
38
- },
39
- "files": [
40
- "dist-*/**"
41
- ],
42
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/middleware-sdk-sts",
43
- "repository": {
44
- "type": "git",
45
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
46
- "directory": "packages/middleware-sdk-sts"
47
- },
48
- "devDependencies": {
49
- "@tsconfig/recommended": "1.0.1",
50
- "concurrently": "7.0.0",
51
- "downlevel-dts": "0.10.1",
52
- "rimraf": "3.0.2",
53
- "typescript": "~4.9.5"
54
- }
55
- }