aws-sdk 2.1347.0 → 2.1349.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 +14 -1
- package/README.md +1 -1
- package/apis/glue-2017-03-31.min.json +202 -181
- package/apis/internetmonitor-2021-06-03.min.json +41 -19
- package/apis/lakeformation-2017-03-31.min.json +23 -14
- package/apis/license-manager-2018-08-01.min.json +136 -124
- package/apis/mwaa-2020-07-01.min.json +6 -0
- package/apis/s3-2006-03-01.examples.json +97 -97
- package/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +4 -0
- package/apis/servicecatalog-2015-12-10.min.json +99 -9
- package/apis/sms-2016-10-24.min.json +3 -1
- package/apis/wafv2-2019-07-29.min.json +55 -28
- package/clients/ec2.d.ts +3 -3
- package/clients/glue.d.ts +45 -8
- package/clients/internetmonitor.d.ts +50 -16
- package/clients/lakeformation.d.ts +12 -0
- package/clients/licensemanager.d.ts +25 -10
- package/clients/mwaa.d.ts +68 -44
- package/clients/resiliencehub.d.ts +88 -88
- package/clients/s3.d.ts +115 -115
- package/clients/sagemakerfeaturestoreruntime.d.ts +10 -5
- package/clients/servicecatalog.d.ts +210 -81
- package/clients/wafv2.d.ts +89 -62
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +10 -10
- package/dist/aws-sdk.js +102 -12
- package/dist/aws-sdk.min.js +20 -20
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,7 +1,20 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1349.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1349.0
         | 
| 6 | 
            +
            * feature: Glue: Add support for database-level federation
         | 
| 7 | 
            +
            * feature: LakeFormation: Add support for database-level federation
         | 
| 8 | 
            +
            * feature: LicenseManager: This release adds grant override options to the CreateGrantVersion API. These options can be used to specify grant replacement behavior during grant activation.
         | 
| 9 | 
            +
            * feature: MWAA: This Amazon MWAA release adds the ability to customize the Apache Airflow environment by launching a shell script at startup. This shell script is hosted in your environment's Amazon S3 bucket. Amazon MWAA runs the script before installing requirements and initializing the Apache Airflow process.
         | 
| 10 | 
            +
            * feature: ServiceCatalog: This release introduces Service Catalog support for Terraform open source. It enables 1. The notify* APIs to Service Catalog. These APIs are used by the terraform engine to notify the result of the provisioning engine execution. 2. Adds a new TERRAFORM_OPEN_SOURCE product type in CreateProduct API.
         | 
| 11 | 
            +
            * feature: WAFV2: For web ACLs that protect CloudFront protections, the default request body inspection size is now 16 KB, and you can use the new association configuration to increase the inspection size further, up to 64 KB. Sizes over 16 KB can incur additional costs.
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            ## 2.1348.0
         | 
| 14 | 
            +
            * feature: InternetMonitor: This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to deliver internet measurements to Amazon S3 buckets as well as CloudWatch Logs.
         | 
| 15 | 
            +
            * feature: SMS: Deprecating AWS Server Migration Service.
         | 
| 16 | 
            +
            * feature: SageMakerFeatureStoreRuntime: In this release, you can now chose between soft delete and hard delete when calling the DeleteRecord API, so you have more flexibility when it comes to managing online store data.
         | 
| 17 | 
            +
             | 
| 5 18 | 
             
            ## 2.1347.0
         | 
| 6 19 | 
             
            * feature: Athena: Make DefaultExecutorDpuSize and CoordinatorDpuSize  fields optional  in StartSession
         | 
| 7 20 | 
             
            * feature: AutoScaling: Amazon EC2 Auto Scaling now supports Elastic Load Balancing traffic sources with the AttachTrafficSources, DetachTrafficSources, and DescribeTrafficSources APIs. This release also introduces a new activity status, "WaitingForConnectionDraining", for VPC Lattice to the DescribeScalingActivities API.
         | 
    
        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.1349.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
         |