@cdk8s/awscdk-resolver 0.0.440 → 0.0.442

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 (48) hide show
  1. package/.jsii +3 -3
  2. package/lib/resolve.js +1 -1
  3. package/node_modules/@aws-sdk/client-cloudformation/README.md +1 -96
  4. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
  5. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1857 -2253
  6. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +1 -2
  7. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +2 -4
  8. package/node_modules/@aws-sdk/client-cloudformation/dist-es/auth/httpAuthSchemeProvider.js +3 -4
  9. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/index.js +3 -3
  10. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.browser.js +1 -2
  11. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +4 -6
  12. package/node_modules/@aws-sdk/client-cloudformation/dist-es/schemas/schemas_0.js +1504 -1900
  13. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/index.js +2 -2
  14. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForChangeSetCreateComplete.js +2 -2
  15. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +74 -74
  16. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +34 -34
  17. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +26 -26
  18. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +2 -2
  19. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +3 -3
  20. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +18 -18
  21. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +18 -18
  22. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForTypeRegistrationComplete.js +2 -2
  23. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/index.d.ts +3 -3
  24. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/index.d.ts +3 -3
  25. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/index.d.ts +2 -2
  26. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/index.d.ts +2 -2
  27. package/node_modules/@aws-sdk/client-cloudformation/package.json +2 -2
  28. package/node_modules/@aws-sdk/client-sso/README.md +1 -9
  29. package/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +27 -20
  30. package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +69 -77
  31. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +1 -2
  32. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +2 -4
  33. package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +27 -20
  34. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +1 -2
  35. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +4 -6
  36. package/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +75 -83
  37. package/node_modules/@aws-sdk/client-sso/package.json +1 -1
  38. package/node_modules/@aws-sdk/credential-provider-ini/package.json +5 -5
  39. package/node_modules/@aws-sdk/credential-provider-login/package.json +2 -2
  40. package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
  41. package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
  42. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
  43. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -2
  44. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -2
  45. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +2 -2
  46. package/node_modules/@aws-sdk/nested-clients/package.json +1 -1
  47. package/node_modules/@aws-sdk/token-providers/package.json +2 -2
  48. package/package.json +3 -3
@@ -6,10 +6,9 @@ const util_middleware_1 = require("@smithy/util-middleware");
6
6
  const defaultCloudFormationHttpAuthSchemeParametersProvider = async (config, context, input) => {
7
7
  return {
8
8
  operation: (0, util_middleware_1.getSmithyContext)(context).operation,
9
- region: (await (0, util_middleware_1.normalizeProvider)(config.region)()) ||
10
- (() => {
11
- throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
12
- })(),
9
+ region: await (0, util_middleware_1.normalizeProvider)(config.region)() || (() => {
10
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
11
+ })(),
13
12
  };
14
13
  };
15
14
  exports.defaultCloudFormationHttpAuthSchemeParametersProvider = defaultCloudFormationHttpAuthSchemeParametersProvider;