aws-sdk 2.1373.0 → 2.1375.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 +12 -1
- package/README.md +1 -1
- package/apis/application-autoscaling-2016-02-06.examples.json +3 -0
- package/apis/glue-2017-03-31.min.json +410 -314
- package/apis/sagemaker-2017-07-24.min.json +674 -660
- package/clients/applicationautoscaling.d.ts +35 -35
- package/clients/glue.d.ts +171 -3
- package/clients/iotsitewise.d.ts +8 -6
- package/clients/sagemaker.d.ts +22 -3
- package/clients/sts.d.ts +12 -12
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +3 -3
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,7 +1,18 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1375.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1375.0
         | 
| 6 | 
            +
            * feature: ApplicationAutoScaling: With this release, Amazon SageMaker Serverless Inference customers can use Application Auto Scaling to auto scale the provisioned concurrency of their serverless endpoints.
         | 
| 7 | 
            +
            * feature: Glue: This release adds AmazonRedshift Source and Target nodes in addition to DynamicTransform OutputSchemas
         | 
| 8 | 
            +
            * feature: SageMaker: This release includes support for (1) Provisioned Concurrency for Amazon SageMaker Serverless Inference and (2) UpdateEndpointWeightsAndCapacities API for Serverless endpoints.
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            ## 2.1374.0
         | 
| 11 | 
            +
            * feature: Glue: Support large worker types G.4x and G.8x for Glue Spark
         | 
| 12 | 
            +
            * feature: GuardDuty: Add AccessDeniedException 403 Error message code to support 3 Tagging related APIs
         | 
| 13 | 
            +
            * feature: IoTSiteWise: Provide support for 20,000 max results for GetAssetPropertyValueHistory/BatchGetAssetPropertyValueHistory and 15 minute aggregate resolution for GetAssetPropertyAggregates/BatchGetAssetPropertyAggregates
         | 
| 14 | 
            +
            * feature: STS: Documentation updates for AWS Security Token Service.
         | 
| 15 | 
            +
             | 
| 5 16 | 
             
            ## 2.1373.0
         | 
| 6 17 | 
             
            * feature: EC2: This release adds support the inf2 and trn1n instances. inf2 instances are purpose built for deep learning inference while trn1n instances are powered by AWS Trainium accelerators and they build on the capabilities of Trainium-powered trn1 instances.
         | 
| 7 18 | 
             
            * feature: Inspector2: Amazon Inspector now allows customers to search its vulnerability intelligence database if any of the Inspector scanning types are activated.
         | 
    
        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.1375.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
         | 
| @@ -319,6 +319,9 @@ | |
| 319 319 | 
             
                      "ScalableDimension": "ecs:service:DesiredCount",
         | 
| 320 320 | 
             
                      "ServiceNamespace": "ecs"
         | 
| 321 321 | 
             
                    },
         | 
| 322 | 
            +
                    "output": {
         | 
| 323 | 
            +
                      "ScalableTargetARN": "arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123"
         | 
| 324 | 
            +
                    },
         | 
| 322 325 | 
             
                    "comments": {
         | 
| 323 326 | 
             
                      "input": {
         | 
| 324 327 | 
             
                      },
         |