aws-sdk 2.1344.0 → 2.1346.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/rds-2014-10-31.min.json +4 -3
- 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/opensearchserverless.d.ts +6 -6
- package/clients/rds.d.ts +25 -17
- 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 +4 -4
- package/dist/aws-sdk.js +7 -6
- package/dist/aws-sdk.min.js +29 -29
- 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.1346.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1346.0
         | 
| 6 | 
            +
            * feature: OpenSearchServerless: This release includes two new exception types "ServiceQuotaExceededException" and "OcuLimitExceededException".
         | 
| 7 | 
            +
            * feature: RDS: Add support for creating a read replica DB instance from a Multi-AZ DB cluster.
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            ## 2.1345.0
         | 
| 10 | 
            +
            * feature: IotData: Add endpoint ruleset support for cn-north-1.
         | 
| 11 | 
            +
            * 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
         | 
| 12 | 
            +
            * feature: SSMIncidents: Increased maximum length of "TriggerDetails.rawData" to 10K characters and "IncidentSummary" to 8K characters.
         | 
| 13 | 
            +
             | 
| 5 14 | 
             
            ## 2.1344.0
         | 
| 6 15 | 
             
            * 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 16 | 
             
            * 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.1346.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
         | 
| @@ -692,8 +692,7 @@ | |
| 692 692 | 
             
                  "input": {
         | 
| 693 693 | 
             
                    "type": "structure",
         | 
| 694 694 | 
             
                    "required": [
         | 
| 695 | 
            -
                      "DBInstanceIdentifier" | 
| 696 | 
            -
                      "SourceDBInstanceIdentifier"
         | 
| 695 | 
            +
                      "DBInstanceIdentifier"
         | 
| 697 696 | 
             
                    ],
         | 
| 698 697 | 
             
                    "members": {
         | 
| 699 698 | 
             
                      "DBInstanceIdentifier": {},
         | 
| @@ -773,6 +772,7 @@ | |
| 773 772 | 
             
                      "AllocatedStorage": {
         | 
| 774 773 | 
             
                        "type": "integer"
         | 
| 775 774 | 
             
                      },
         | 
| 775 | 
            +
                      "SourceDBClusterIdentifier": {},
         | 
| 776 776 | 
             
                      "SourceRegion": {}
         | 
| 777 777 | 
             
                    }
         | 
| 778 778 | 
             
                  },
         | 
| @@ -5909,7 +5909,8 @@ | |
| 5909 5909 | 
             
                          "type": "timestamp"
         | 
| 5910 5910 | 
             
                        }
         | 
| 5911 5911 | 
             
                      }
         | 
| 5912 | 
            -
                    }
         | 
| 5912 | 
            +
                    },
         | 
| 5913 | 
            +
                    "ReadReplicaSourceDBClusterIdentifier": {}
         | 
| 5913 5914 | 
             
                  },
         | 
| 5914 5915 | 
             
                  "wrapper": true
         | 
| 5915 5916 | 
             
                },
         |