aws-sdk 2.1380.0 → 2.1381.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 +7 -1
- package/README.md +3 -4
- package/apis/backup-2018-11-15.min.json +4 -1
- package/apis/mediapackagev2-2022-12-25.examples.json +5 -0
- package/apis/mediapackagev2-2022-12-25.min.json +1346 -0
- package/apis/mediapackagev2-2022-12-25.paginators.json +22 -0
- package/apis/mediapackagev2-2022-12-25.waiters2.json +5 -0
- package/apis/metadata.json +3 -0
- package/apis/sesv2-2019-09-27.examples.json +19 -0
- package/apis/sesv2-2019-09-27.min.json +38 -13
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/backup.d.ts +16 -4
- package/clients/connectcases.d.ts +1 -1
- package/clients/mediapackagev2.d.ts +1363 -0
- package/clients/mediapackagev2.js +19 -0
- package/clients/sesv2.d.ts +24 -4
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +50 -6
- package/dist/aws-sdk.js +6 -3
- package/dist/aws-sdk.min.js +9 -9
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,7 +1,13 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1381.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1381.0
         | 
| 6 | 
            +
            * feature: Backup: Add  ResourceArn, ResourceType, and BackupVaultName to ListRecoveryPointsByLegalHold API response.
         | 
| 7 | 
            +
            * feature: ConnectCases: This release adds the ability to create fields with type Url through the CreateField API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html
         | 
| 8 | 
            +
            * feature: MediaPackageV2: Adds support for the MediaPackage Live v2 API
         | 
| 9 | 
            +
            * feature: SESV2: This release allows customers to update scaling mode property of dedicated IP pools with PutDedicatedIpPoolScalingAttributes call.
         | 
| 10 | 
            +
             | 
| 5 11 | 
             
            ## 2.1380.0
         | 
| 6 12 | 
             
            * bugfix: IAM: Fix endpoint for IAM in aws-iso partition
         | 
| 7 13 | 
             
            * feature: Athena: Removing SparkProperties from EngineConfiguration object for StartSession API call
         | 
    
        package/README.md
    CHANGED
    
    | @@ -18,7 +18,8 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma | |
| 18 18 | 
             
            ### We are excited to announce the [developer preview](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/preview/) of AWS SDK for JavaScript v3's new API documentation.
         | 
| 19 19 |  | 
| 20 20 | 
             
            ## Version 2.x Support
         | 
| 21 | 
            -
            We are formalizing our plans to  | 
| 21 | 
            +
            We are formalizing our plans to make the *Maintenance Announcement (Phase 2)* for **AWS SDK for JavaScript v2** in 2023.
         | 
| 22 | 
            +
            Please refer to the [AWS SDKs and Tools maintenance policy][aws-sdks-maintenance-policy] for further details.
         | 
| 22 23 |  | 
| 23 24 | 
             
            [**AWS SDK for JavaScript v3**][aws-sdk-js-v3] is the latest and recommended version, 
         | 
| 24 25 | 
             
            which has been GA since December 2020. Here is [why and how you should use
         | 
| @@ -33,8 +34,6 @@ To give feedback on and report issues in the v3 repo, please refer to | |
| 33 34 |  | 
| 34 35 | 
             
            Watch this README and the [AWS Developer Tools Blog][aws-devtools-blog]
         | 
| 35 36 | 
             
            for updates and announcements regarding the maintenance plans and timelines.
         | 
| 36 | 
            -
            Please refer to the [AWS SDKs and Tools maintenance policy][aws-sdks-maintenance-policy]
         | 
| 37 | 
            -
            for further details.
         | 
| 38 37 |  | 
| 39 38 | 
             
            A maintenance mode message may be emitted by this package on startup. 
         | 
| 40 39 | 
             
            To suppress this message, use an environment variable:
         | 
| @@ -72,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true; | |
| 72 71 | 
             
            To use the SDK in the browser, simply add the following script tag to your
         | 
| 73 72 | 
             
            HTML pages:
         | 
| 74 73 |  | 
| 75 | 
            -
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2. | 
| 74 | 
            +
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1381.0.min.js"></script>
         | 
| 76 75 |  | 
| 77 76 | 
             
            You can also build a custom browser SDK with your specified set of AWS services.
         | 
| 78 77 | 
             
            This can allow you to reduce the SDK's size, specify different API versions of
         |