aws-sdk 2.1360.0 → 2.1361.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 +8 -1
- package/README.md +1 -1
- package/apis/comprehend-2017-11-27.min.json +181 -154
- package/apis/ram-2018-01-04.min.json +396 -66
- package/apis/ram-2018-01-04.paginators.json +10 -0
- package/apis/s3-2006-03-01.examples.json +94 -94
- package/apis/secretsmanager-2017-10-17.examples.json +32 -0
- package/apis/securityhub-2018-10-26.examples.json +1516 -0
- package/clients/comprehend.d.ts +45 -5
- package/clients/ecs.d.ts +7 -7
- package/clients/ram.d.ts +538 -91
- package/clients/rds.d.ts +16 -16
- package/clients/s3.d.ts +117 -117
- package/clients/secretsmanager.d.ts +10 -10
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +184 -157
- package/dist/aws-sdk.min.js +74 -74
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,7 +1,14 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1361.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1361.0
         | 
| 6 | 
            +
            * feature: Comprehend: This release supports native document models for custom classification, in addition to plain-text models. You train native document models using documents (PDF, Word, images) in their native format.
         | 
| 7 | 
            +
            * feature: ECS: This release supports the Account Setting "TagResourceAuthorization" that allows for enhanced Tagging security controls.
         | 
| 8 | 
            +
            * feature: RAM: This release adds support for customer managed permissions. Customer managed permissions enable customers to author and manage tailored permissions for resources shared using RAM.
         | 
| 9 | 
            +
            * feature: S3: Provides support for "Snow" Storage class.
         | 
| 10 | 
            +
            * feature: S3Control: Provides support for overriding endpoint when region is "snow". This will enable bucket APIs for Amazon S3 Compatible storage on Snow Family devices.
         | 
| 11 | 
            +
             | 
| 5 12 | 
             
            ## 2.1360.0
         | 
| 6 13 | 
             
            * feature: Appflow: This release adds a Client Token parameter to the following AppFlow APIs: Create/Update Connector Profile, Create/Update Flow, Start Flow, Register Connector, Update Connector Registration. The Client Token parameter allows idempotent operations for these APIs.
         | 
| 7 14 | 
             
            * feature: Drs: Changed existing APIs and added new APIs to support using an account-level launch configuration template with AWS Elastic Disaster Recovery.
         | 
    
        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.1361.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
         |