aws-sdk 2.1366.0 → 2.1368.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +104 -93
- package/apis/athena-2017-05-18.min.json +259 -50
- package/apis/athena-2017-05-18.paginators.json +5 -0
- package/apis/ec2-2016-11-15.min.json +936 -921
- package/apis/emr-containers-2020-10-01.min.json +52 -0
- package/apis/grafana-2020-08-18.min.json +1 -0
- package/apis/guardduty-2017-11-28.min.json +100 -69
- package/apis/iot-2015-05-28.min.json +289 -274
- package/apis/iotdeviceadvisor-2020-09-18.min.json +13 -4
- package/apis/kafka-2018-11-14.min.json +570 -89
- package/apis/kafka-2018-11-14.paginators.json +12 -0
- package/apis/marketplace-catalog-2018-09-17.paginators.json +4 -2
- package/apis/rekognition-2016-06-27.min.json +112 -48
- package/apis/simspaceweaver-2022-10-28.min.json +52 -16
- package/clients/appflow.d.ts +14 -1
- package/clients/athena.d.ts +228 -10
- package/clients/directconnect.d.ts +2 -2
- package/clients/ec2.d.ts +75 -52
- package/clients/efs.d.ts +1 -1
- package/clients/emrcontainers.d.ts +61 -0
- package/clients/grafana.d.ts +4 -0
- package/clients/guardduty.d.ts +32 -2
- package/clients/iot.d.ts +21 -2
- package/clients/iotdeviceadvisor.d.ts +16 -3
- package/clients/kafka.d.ts +634 -0
- package/clients/lambda.d.ts +1 -1
- package/clients/osis.d.ts +26 -26
- package/clients/qldb.d.ts +27 -27
- package/clients/rekognition.d.ts +117 -0
- package/clients/sagemaker.d.ts +2 -2
- package/clients/simspaceweaver.d.ts +62 -21
- package/clients/wafv2.d.ts +57 -57
- package/clients/workspaces.d.ts +3 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +18 -17
- package/dist/aws-sdk.js +1611 -1300
- package/dist/aws-sdk.min.js +98 -98
- package/lib/core.js +1 -1
- package/lib/services/sqs.js +3 -2
- package/package.json +1 -1
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,7 +1,28 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1368.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1368.0
         | 
| 6 | 
            +
            * feature: Appflow: Adds Jwt Support for Salesforce Credentials.
         | 
| 7 | 
            +
            * feature: Athena: You can now use capacity reservations on Amazon Athena to run SQL queries on fully-managed compute capacity.
         | 
| 8 | 
            +
            * feature: EFS: This release adds PAUSED and PAUSING state as a returned value for DescribeReplicationConfigurations response.
         | 
| 9 | 
            +
            * feature: Grafana: This release adds support for the grafanaVersion parameter in CreateWorkspace.
         | 
| 10 | 
            +
            * feature: Iot: This release allows AWS IoT Core users to specify a TLS security policy when creating and updating AWS IoT Domain Configurations.
         | 
| 11 | 
            +
            * feature: Rekognition: Added support for aggregating moderation labels by video segment timestamps for Stored Video Content Moderation APIs and added additional information about the job to all Stored Video Get API responses.
         | 
| 12 | 
            +
            * feature: SimSpaceWeaver: Added a new CreateSnapshot API. For the StartSimulation API, SchemaS3Location is now optional, added a new SnapshotS3Location parameter. For the DescribeSimulation API, added SNAPSHOT_IN_PROGRESS simulation state, deprecated SchemaError, added new fields: StartError and SnapshotS3Location.
         | 
| 13 | 
            +
            * feature: WAFV2: You can now associate a web ACL with a Verified Access instance.
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            ## 2.1367.0
         | 
| 16 | 
            +
            * feature: EC2: This release adds support for AMD SEV-SNP on EC2 instances.
         | 
| 17 | 
            +
            * feature: EMRcontainers: This release adds GetManagedEndpointSessionCredentials, a new API that allows customers to generate an auth token to connect to a managed endpoint, enabling features such as self-hosted Jupyter notebooks for EMR on EKS.
         | 
| 18 | 
            +
            * feature: GuardDuty: Added API support to initiate on-demand malware scan on specific resources.
         | 
| 19 | 
            +
            * feature: IotDeviceAdvisor: AWS IoT Core Device Advisor now supports MQTT over WebSocket. With this update, customers can run all three test suites of AWS IoT Core Device Advisor - qualification, custom, and long duration tests - using Signature Version 4 for MQTT over WebSocket.
         | 
| 20 | 
            +
            * feature: Kafka: Amazon MSK has added new APIs that allows multi-VPC private connectivity and cluster policy support for Amazon MSK clusters that simplify connectivity and access between your Apache Kafka clients hosted in different VPCs and AWS accounts and your Amazon MSK clusters.
         | 
| 21 | 
            +
            * feature: Lambda: Add Java 17 (java17) support to AWS Lambda
         | 
| 22 | 
            +
            * feature: MarketplaceCatalog: Enabled Pagination for List Entities and List Change Sets operations
         | 
| 23 | 
            +
            * feature: SQS: handle XML/JSON protocol change in SQS tests
         | 
| 24 | 
            +
            * feature: SageMaker: Added ml.p4d.24xlarge and ml.p4de.24xlarge as supported instances for SageMaker Studio
         | 
| 25 | 
            +
             | 
| 5 26 | 
             
            ## 2.1366.0
         | 
| 6 27 | 
             
            * feature: OSIS: Initial release for OpenSearch Ingestion
         | 
| 7 28 |  | 
    
        package/README.md
    CHANGED
    
    | @@ -72,7 +72,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true; | |
| 72 72 | 
             
            To use the SDK in the browser, simply add the following script tag to your
         | 
| 73 73 | 
             
            HTML pages:
         | 
| 74 74 |  | 
| 75 | 
            -
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2. | 
| 75 | 
            +
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1368.0.min.js"></script>
         | 
| 76 76 |  | 
| 77 77 | 
             
            You can also build a custom browser SDK with your specified set of AWS services.
         | 
| 78 78 | 
             
            This can allow you to reduce the SDK's size, specify different API versions of
         |