aws-sdk 2.1378.0 → 2.1379.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 +6 -1
- package/README.md +1 -1
- package/apis/glue-2017-03-31.min.json +6 -0
- package/apis/wafv2-2019-07-29.min.json +194 -115
- package/clients/detective.d.ts +1 -1
- package/clients/directconnect.d.ts +2 -2
- package/clients/glue.d.ts +8 -0
- package/clients/secretsmanager.d.ts +3 -3
- package/clients/wafv2.d.ts +103 -15
- 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,12 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1379.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1379.0
         | 
| 6 | 
            +
            * feature: Detective: Added and updated API operations in Detective to support the integration of ASFF Security Hub findings.
         | 
| 7 | 
            +
            * feature: Glue: Add Support for Tags for Custom Entity Types
         | 
| 8 | 
            +
            * feature: WAFV2: My AWS Service (placeholder) - You can now rate limit web requests based on aggregation keys other than IP addresses, and you can aggregate using combinations of keys. You can also rate limit all requests that match a scope-down statement, without further aggregation.
         | 
| 9 | 
            +
             | 
| 5 10 | 
             
            ## 2.1378.0
         | 
| 6 11 | 
             
            * feature: Athena: You can now define custom spark properties at start of the session for use cases like cluster encryption, table formats, and general Spark tuning.
         | 
| 7 12 | 
             
            * feature: CodeCatalyst: With this release, the users can list the active sessions connected to their Dev Environment on AWS CodeCatalyst
         | 
    
        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.1379.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
         | 
| @@ -803,6 +803,9 @@ | |
| 803 803 | 
             
                      "RegexString": {},
         | 
| 804 804 | 
             
                      "ContextWords": {
         | 
| 805 805 | 
             
                        "shape": "S3r"
         | 
| 806 | 
            +
                      },
         | 
| 807 | 
            +
                      "Tags": {
         | 
| 808 | 
            +
                        "shape": "Sbv"
         | 
| 806 809 | 
             
                      }
         | 
| 807 810 | 
             
                    }
         | 
| 808 811 | 
             
                  },
         | 
| @@ -3905,6 +3908,9 @@ | |
| 3905 3908 | 
             
                      "NextToken": {},
         | 
| 3906 3909 | 
             
                      "MaxResults": {
         | 
| 3907 3910 | 
             
                        "type": "integer"
         | 
| 3911 | 
            +
                      },
         | 
| 3912 | 
            +
                      "Tags": {
         | 
| 3913 | 
            +
                        "shape": "Sbv"
         | 
| 3908 3914 | 
             
                      }
         | 
| 3909 3915 | 
             
                    }
         | 
| 3910 3916 | 
             
                  },
         |