aws-sdk 2.1265.0 → 2.1267.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/README.md +1 -1
  3. package/apis/codecatalyst-2022-09-28.examples.json +5 -0
  4. package/apis/codecatalyst-2022-09-28.min.json +1268 -0
  5. package/apis/codecatalyst-2022-09-28.paginators.json +45 -0
  6. package/apis/codecatalyst-2022-09-28.waiters2.json +5 -0
  7. package/apis/comprehend-2017-11-27.min.json +332 -157
  8. package/apis/comprehend-2017-11-27.paginators.json +35 -23
  9. package/apis/gamelift-2015-10-01.min.json +423 -164
  10. package/apis/gamelift-2015-10-01.paginators.json +12 -0
  11. package/apis/mediaconvert-2017-08-29.min.json +123 -87
  12. package/apis/metadata.json +6 -0
  13. package/apis/pipes-2015-10-07.examples.json +5 -0
  14. package/apis/pipes-2015-10-07.min.json +1329 -0
  15. package/apis/pipes-2015-10-07.paginators.json +10 -0
  16. package/apis/proton-2020-07-20.min.json +1 -2
  17. package/apis/redshift-serverless-2021-04-21.min.json +194 -72
  18. package/apis/redshift-serverless-2021-04-21.paginators.json +6 -0
  19. package/apis/states-2016-11-23.min.json +285 -62
  20. package/apis/states-2016-11-23.paginators.json +6 -0
  21. package/clients/all.d.ts +2 -0
  22. package/clients/all.js +3 -1
  23. package/clients/codecatalyst.d.ts +1403 -0
  24. package/clients/codecatalyst.js +19 -0
  25. package/clients/comprehend.d.ts +238 -18
  26. package/clients/ecs.d.ts +6 -6
  27. package/clients/fms.d.ts +1 -1
  28. package/clients/gamelift.d.ts +712 -323
  29. package/clients/mediaconvert.d.ts +67 -4
  30. package/clients/medialive.d.ts +1 -1
  31. package/clients/pipes.d.ts +1612 -0
  32. package/clients/pipes.js +18 -0
  33. package/clients/polly.d.ts +1 -1
  34. package/clients/proton.d.ts +1 -1
  35. package/clients/redshiftserverless.d.ts +220 -16
  36. package/clients/sns.d.ts +14 -14
  37. package/clients/stepfunctions.d.ts +290 -17
  38. package/dist/aws-sdk-core-react-native.js +3 -3
  39. package/dist/aws-sdk-react-native.js +97 -16
  40. package/dist/aws-sdk.js +814 -349
  41. package/dist/aws-sdk.min.js +80 -80
  42. package/lib/config_service_placeholders.d.ts +4 -0
  43. package/lib/core.js +1 -1
  44. package/lib/region_config_data.json +4 -2
  45. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,7 +1,24 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1265.0-->
2
+ <!--LATEST=2.1267.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1267.0
6
+ * feature: AppSync: Fixes the URI for the evaluatecode endpoint to include the /v1 prefix (ie. "/v1/dataplane-evaluatecode").
7
+ * feature: FMS: AWS Firewall Manager now supports Fortigate Cloud Native Firewall as a Service as a third-party policy type.
8
+ * feature: MediaConvert: The AWS Elemental MediaConvert SDK has added support for configurable ID3 eMSG box attributes and the ability to signal them with InbandEventStream tags in DASH and CMAF outputs.
9
+ * feature: MediaLive: Updates to Event Signaling and Management (ESAM) API and documentation.
10
+ * feature: Polly: Add language code for Finnish (fi-FI)
11
+ * feature: Proton: CreateEnvironmentAccountConnection RoleArn input is now optional
12
+ * feature: RedshiftServerless: Add Table Level Restore operations for Amazon Redshift Serverless. Add multi-port support for Amazon Redshift Serverless endpoints. Add Tagging support to Snapshots and Recovery Points in Amazon Redshift Serverless.
13
+
14
+ ## 2.1266.0
15
+ * feature: CodeCatalyst: This release adds operations that support customers using the AWS Toolkits and Amazon CodeCatalyst, a unified software development service that helps developers develop, deploy, and maintain applications in the cloud. For more information, see the documentation.
16
+ * feature: Comprehend: Comprehend now supports semi-structured documents (such as PDF files or image files) as inputs for custom analysis using the synchronous APIs (ClassifyDocument and DetectEntities).
17
+ * feature: GameLift: GameLift introduces a new feature, GameLift Anywhere. GameLift Anywhere allows you to integrate your own compute resources with GameLift. You can also use GameLift Anywhere to iteratively test your game servers without uploading the build to GameLift for every iteration.
18
+ * feature: Pipes: AWS introduces new Amazon EventBridge Pipes which allow you to connect sources (SQS, Kinesis, DDB, Kafka, MQ) to Targets (14+ EventBridge Targets) without any code, with filtering, batching, input transformation, and an optional Enrichment stage (Lambda, StepFunctions, ApiGateway, ApiDestinations)
19
+ * feature: StepFunctions: This release adds support for the AWS Step Functions Map state in Distributed mode. The changes include a new MapRun resource and several new and modified APIs.
20
+ * feature: codecatalyst: add codecatalyst to region config
21
+
5
22
  ## 2.1265.0
6
23
  * feature: AccessAnalyzer: This release adds support for S3 cross account access points. IAM Access Analyzer will now produce public or cross account findings when it detects bucket delegation to external account access points.
7
24
  * feature: Athena: This release includes support for using Apache Spark in Amazon Athena.
package/README.md CHANGED
@@ -57,7 +57,7 @@ for further details.
57
57
  To use the SDK in the browser, simply add the following script tag to your
58
58
  HTML pages:
59
59
 
60
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1265.0.min.js"></script>
60
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1267.0.min.js"></script>
61
61
 
62
62
  You can also build a custom browser SDK with your specified set of AWS services.
63
63
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }