aws-sdk 2.1349.0 → 2.1350.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 +10 -1
- package/README.md +1 -1
- package/apis/amplifyuibuilder-2021-08-11.min.json +563 -490
- package/apis/amplifyuibuilder-2021-08-11.waiters2.json +5 -0
- package/apis/runtime.sagemaker-2017-05-13.min.json +4 -0
- package/apis/sagemaker-2017-07-24.min.json +657 -655
- package/apis/wafv2-2019-07-29.min.json +28 -55
- package/clients/amplifyuibuilder.d.ts +451 -350
- package/clients/amplifyuibuilder.js +1 -0
- package/clients/autoscaling.d.ts +18 -18
- package/clients/ec2.d.ts +1 -1
- package/clients/elasticinference.d.ts +12 -12
- package/clients/sagemaker.d.ts +30 -20
- package/clients/sagemakerruntime.d.ts +4 -0
- package/clients/wafv2.d.ts +62 -89
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +293 -286
- 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,16 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1350.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1350.0
         | 
| 6 | 
            +
            * feature: AmplifyUIBuilder: Support StorageField and custom displays for data-bound options in form builder. Support non-string operands for predicates in collections. Support choosing client to get token from.
         | 
| 7 | 
            +
            * feature: DataExchange: This release updates the value of MaxResults.
         | 
| 8 | 
            +
            * feature: EC2: C6in, M6in, M6idn, R6in and R6idn bare metal instances are powered by 3rd Generation Intel Xeon Scalable processors and offer up to 200 Gbps of network bandwidth.
         | 
| 9 | 
            +
            * feature: ElasticInference: Updated public documentation for the Describe and Tagging APIs.
         | 
| 10 | 
            +
            * feature: SageMaker: Amazon SageMaker Asynchronous Inference now allows customer's to receive failure model responses in S3 and receive success/failure model responses in SNS notifications.
         | 
| 11 | 
            +
            * feature: SageMakerRuntime: Amazon SageMaker Asynchronous Inference now provides customers a FailureLocation as a response parameter in InvokeEndpointAsync API to capture the model failure responses.
         | 
| 12 | 
            +
            * feature: WAFV2: This release rolls back association config feature for webACLs that protect CloudFront protections.
         | 
| 13 | 
            +
             | 
| 5 14 | 
             
            ## 2.1349.0
         | 
| 6 15 | 
             
            * feature: Glue: Add support for database-level federation
         | 
| 7 16 | 
             
            * feature: LakeFormation: Add support for database-level federation
         | 
    
        package/README.md
    CHANGED
    
    | @@ -70,7 +70,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true; | |
| 70 70 | 
             
            To use the SDK in the browser, simply add the following script tag to your
         | 
| 71 71 | 
             
            HTML pages:
         | 
| 72 72 |  | 
| 73 | 
            -
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2. | 
| 73 | 
            +
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1350.0.min.js"></script>
         | 
| 74 74 |  | 
| 75 75 | 
             
            You can also build a custom browser SDK with your specified set of AWS services.
         | 
| 76 76 | 
             
            This can allow you to reduce the SDK's size, specify different API versions of
         |