aws-sdk 2.1344.0 → 2.1345.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/ssm-contacts-2021-05-03.examples.json +0 -709
- package/apis/ssm-contacts-2021-05-03.min.json +572 -14
- package/apis/ssm-contacts-2021-05-03.paginators.json +29 -0
- package/clients/ssmcontacts.d.ts +654 -25
- package/clients/ssmincidents.d.ts +22 -22
- 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.1345.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1345.0
         | 
| 6 | 
            +
            * feature: IotData: Add endpoint ruleset support for cn-north-1.
         | 
| 7 | 
            +
            * feature: SSMContacts: This release adds 12 new APIs as part of Oncall Schedule feature release, adds support for a new contact type: ONCALL_SCHEDULE. Check public documentation for AWS ssm-contacts for more information
         | 
| 8 | 
            +
            * feature: SSMIncidents: Increased maximum length of "TriggerDetails.rawData" to 10K characters and "IncidentSummary" to 8K characters.
         | 
| 9 | 
            +
             | 
| 5 10 | 
             
            ## 2.1344.0
         | 
| 6 11 | 
             
            * feature: Athena: Enforces a minimal level of encryption for the workgroup for query and calculation results that are written to Amazon S3. When enabled, workgroup users can set encryption only to the minimum level set by the administrator or higher when they submit queries.
         | 
| 7 12 | 
             
            * feature: ChimeSDKVoice: Documentation updates for Amazon Chime SDK Voice.
         | 
    
        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.1345.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
         |