aws-sdk 2.1377.0 → 2.1379.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/athena-2017-05-18.min.json +3 -0
- package/apis/codecatalyst-2022-09-28.min.json +75 -12
- package/apis/codecatalyst-2022-09-28.paginators.json +6 -0
- package/apis/glue-2017-03-31.min.json +6 -0
- package/apis/kafka-2018-11-14.min.json +6 -2
- package/apis/rekognition-2016-06-27.min.json +104 -90
- package/apis/rolesanywhere-2018-05-10.min.json +159 -43
- package/apis/transfer-2018-11-05.min.json +48 -47
- package/apis/wafv2-2019-07-29.min.json +194 -115
- package/clients/athena.d.ts +4 -0
- package/clients/codecatalyst.d.ts +66 -0
- package/clients/detective.d.ts +1 -1
- package/clients/directconnect.d.ts +2 -2
- package/clients/glue.d.ts +8 -0
- package/clients/kafka.d.ts +2 -2
- package/clients/rekognition.d.ts +19 -1
- package/clients/rolesanywhere.d.ts +154 -45
- package/clients/secretsmanager.d.ts +3 -3
- package/clients/transfer.d.ts +52 -44
- package/clients/wafv2.d.ts +103 -15
- package/dist/aws-sdk-core-react-native.js +98 -73
- package/dist/aws-sdk-react-native.js +1952 -1902
- package/dist/aws-sdk.js +111 -93
- package/dist/aws-sdk.min.js +30 -30
- package/lib/core.js +1 -1
- package/lib/region_config.js +1 -0
- 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.1379.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1379.0
         | 
| 6 | 
            +
            * feature: Detective: Added and updated API operations in Detective to support the integration of ASFF Security Hub findings.
         | 
| 7 | 
            +
            * feature: Glue: Add Support for Tags for Custom Entity Types
         | 
| 8 | 
            +
            * feature: WAFV2: My AWS Service (placeholder) - You can now rate limit web requests based on aggregation keys other than IP addresses, and you can aggregate using combinations of keys. You can also rate limit all requests that match a scope-down statement, without further aggregation.
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            ## 2.1378.0
         | 
| 11 | 
            +
            * feature: Athena: You can now define custom spark properties at start of the session for use cases like cluster encryption, table formats, and general Spark tuning.
         | 
| 12 | 
            +
            * feature: CodeCatalyst: With this release, the users can list the active sessions connected to their Dev Environment on AWS CodeCatalyst
         | 
| 13 | 
            +
            * feature: Kafka: Added a fix to make clusterarn a required field in ListClientVpcConnections and RejectClientVpcConnection APIs
         | 
| 14 | 
            +
            * feature: Rekognition: This release adds a new EyeDirection attribute in Amazon Rekognition DetectFaces and IndexFaces APIs which predicts the yaw and pitch angles of a person's eye gaze direction for each face detected in the image.
         | 
| 15 | 
            +
            * feature: RolesAnywhere: Adds support for custom notification settings in a trust anchor. Introduces PutNotificationSettings and ResetNotificationSettings API's. Updates DurationSeconds max value to 3600.
         | 
| 16 | 
            +
            * feature: Transfer: This release introduces the ability to require both password and SSH key when users authenticate to your Transfer Family servers that use the SFTP protocol.
         | 
| 17 | 
            +
             | 
| 5 18 | 
             
            ## 2.1377.0
         | 
| 6 19 | 
             
            * feature: ES: This release fixes DescribePackages API error with null filter value parameter.
         | 
| 7 20 | 
             
            * feature: ElastiCache: Added support to modify the cluster mode configuration for the existing ElastiCache ReplicationGroups. Customers can now modify the configuration from cluster mode disabled to cluster mode enabled.
         | 
    
        package/README.md
    CHANGED
    
    | @@ -72,7 +72,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true; | |
| 72 72 | 
             
            To use the SDK in the browser, simply add the following script tag to your
         | 
| 73 73 | 
             
            HTML pages:
         | 
| 74 74 |  | 
| 75 | 
            -
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2. | 
| 75 | 
            +
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1379.0.min.js"></script>
         | 
| 76 76 |  | 
| 77 77 | 
             
            You can also build a custom browser SDK with your specified set of AWS services.
         | 
| 78 78 | 
             
            This can allow you to reduce the SDK's size, specify different API versions of
         | 
| @@ -553,6 +553,69 @@ | |
| 553 553 | 
             
                    }
         | 
| 554 554 | 
             
                  }
         | 
| 555 555 | 
             
                },
         | 
| 556 | 
            +
                "ListDevEnvironmentSessions": {
         | 
| 557 | 
            +
                  "http": {
         | 
| 558 | 
            +
                    "requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{devEnvironmentId}/sessions",
         | 
| 559 | 
            +
                    "responseCode": 200
         | 
| 560 | 
            +
                  },
         | 
| 561 | 
            +
                  "input": {
         | 
| 562 | 
            +
                    "type": "structure",
         | 
| 563 | 
            +
                    "required": [
         | 
| 564 | 
            +
                      "spaceName",
         | 
| 565 | 
            +
                      "projectName",
         | 
| 566 | 
            +
                      "devEnvironmentId"
         | 
| 567 | 
            +
                    ],
         | 
| 568 | 
            +
                    "members": {
         | 
| 569 | 
            +
                      "spaceName": {
         | 
| 570 | 
            +
                        "location": "uri",
         | 
| 571 | 
            +
                        "locationName": "spaceName"
         | 
| 572 | 
            +
                      },
         | 
| 573 | 
            +
                      "projectName": {
         | 
| 574 | 
            +
                        "location": "uri",
         | 
| 575 | 
            +
                        "locationName": "projectName"
         | 
| 576 | 
            +
                      },
         | 
| 577 | 
            +
                      "devEnvironmentId": {
         | 
| 578 | 
            +
                        "location": "uri",
         | 
| 579 | 
            +
                        "locationName": "devEnvironmentId"
         | 
| 580 | 
            +
                      },
         | 
| 581 | 
            +
                      "nextToken": {},
         | 
| 582 | 
            +
                      "maxResults": {
         | 
| 583 | 
            +
                        "type": "integer"
         | 
| 584 | 
            +
                      }
         | 
| 585 | 
            +
                    }
         | 
| 586 | 
            +
                  },
         | 
| 587 | 
            +
                  "output": {
         | 
| 588 | 
            +
                    "type": "structure",
         | 
| 589 | 
            +
                    "required": [
         | 
| 590 | 
            +
                      "items"
         | 
| 591 | 
            +
                    ],
         | 
| 592 | 
            +
                    "members": {
         | 
| 593 | 
            +
                      "items": {
         | 
| 594 | 
            +
                        "type": "list",
         | 
| 595 | 
            +
                        "member": {
         | 
| 596 | 
            +
                          "type": "structure",
         | 
| 597 | 
            +
                          "required": [
         | 
| 598 | 
            +
                            "spaceName",
         | 
| 599 | 
            +
                            "projectName",
         | 
| 600 | 
            +
                            "devEnvironmentId",
         | 
| 601 | 
            +
                            "startedTime",
         | 
| 602 | 
            +
                            "id"
         | 
| 603 | 
            +
                          ],
         | 
| 604 | 
            +
                          "members": {
         | 
| 605 | 
            +
                            "spaceName": {},
         | 
| 606 | 
            +
                            "projectName": {},
         | 
| 607 | 
            +
                            "devEnvironmentId": {},
         | 
| 608 | 
            +
                            "startedTime": {
         | 
| 609 | 
            +
                              "shape": "S3"
         | 
| 610 | 
            +
                            },
         | 
| 611 | 
            +
                            "id": {}
         | 
| 612 | 
            +
                          }
         | 
| 613 | 
            +
                        }
         | 
| 614 | 
            +
                      },
         | 
| 615 | 
            +
                      "nextToken": {}
         | 
| 616 | 
            +
                    }
         | 
| 617 | 
            +
                  }
         | 
| 618 | 
            +
                },
         | 
| 556 619 | 
             
                "ListDevEnvironments": {
         | 
| 557 620 | 
             
                  "http": {
         | 
| 558 621 | 
             
                    "requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments",
         | 
| @@ -584,7 +647,7 @@ | |
| 584 647 | 
             
                          "members": {
         | 
| 585 648 | 
             
                            "key": {},
         | 
| 586 649 | 
             
                            "values": {
         | 
| 587 | 
            -
                              "shape": " | 
| 650 | 
            +
                              "shape": "S2a"
         | 
| 588 651 | 
             
                            },
         | 
| 589 652 | 
             
                            "comparisonOperator": {}
         | 
| 590 653 | 
             
                          }
         | 
| @@ -730,10 +793,10 @@ | |
| 730 793 | 
             
                            },
         | 
| 731 794 | 
             
                            "requestId": {},
         | 
| 732 795 | 
             
                            "requestPayload": {
         | 
| 733 | 
            -
                              "shape": " | 
| 796 | 
            +
                              "shape": "S2s"
         | 
| 734 797 | 
             
                            },
         | 
| 735 798 | 
             
                            "responsePayload": {
         | 
| 736 | 
            -
                              "shape": " | 
| 799 | 
            +
                              "shape": "S2s"
         | 
| 737 800 | 
             
                            },
         | 
| 738 801 | 
             
                            "errorCode": {},
         | 
| 739 802 | 
             
                            "sourceIpAddress": {},
         | 
| @@ -774,7 +837,7 @@ | |
| 774 837 | 
             
                          "members": {
         | 
| 775 838 | 
             
                            "key": {},
         | 
| 776 839 | 
             
                            "values": {
         | 
| 777 | 
            -
                              "shape": " | 
| 840 | 
            +
                              "shape": "S2a"
         | 
| 778 841 | 
             
                            },
         | 
| 779 842 | 
             
                            "comparisonOperator": {}
         | 
| 780 843 | 
             
                          }
         | 
| @@ -847,10 +910,10 @@ | |
| 847 910 | 
             
                            "name": {},
         | 
| 848 911 | 
             
                            "description": {},
         | 
| 849 912 | 
             
                            "lastUpdatedTime": {
         | 
| 850 | 
            -
                              "shape": " | 
| 913 | 
            +
                              "shape": "S3b"
         | 
| 851 914 | 
             
                            },
         | 
| 852 915 | 
             
                            "createdTime": {
         | 
| 853 | 
            -
                              "shape": " | 
| 916 | 
            +
                              "shape": "S3b"
         | 
| 854 917 | 
             
                            }
         | 
| 855 918 | 
             
                          }
         | 
| 856 919 | 
             
                        }
         | 
| @@ -1068,10 +1131,10 @@ | |
| 1068 1131 | 
             
                        ],
         | 
| 1069 1132 | 
             
                        "members": {
         | 
| 1070 1133 | 
             
                          "streamUrl": {
         | 
| 1071 | 
            -
                            "shape": " | 
| 1134 | 
            +
                            "shape": "S3y"
         | 
| 1072 1135 | 
             
                          },
         | 
| 1073 1136 | 
             
                          "tokenValue": {
         | 
| 1074 | 
            -
                            "shape": " | 
| 1137 | 
            +
                            "shape": "S3y"
         | 
| 1075 1138 | 
             
                          }
         | 
| 1076 1139 | 
             
                        },
         | 
| 1077 1140 | 
             
                        "sensitive": true
         | 
| @@ -1302,22 +1365,22 @@ | |
| 1302 1365 | 
             
                    }
         | 
| 1303 1366 | 
             
                  }
         | 
| 1304 1367 | 
             
                },
         | 
| 1305 | 
            -
                " | 
| 1368 | 
            +
                "S2a": {
         | 
| 1306 1369 | 
             
                  "type": "list",
         | 
| 1307 1370 | 
             
                  "member": {}
         | 
| 1308 1371 | 
             
                },
         | 
| 1309 | 
            -
                " | 
| 1372 | 
            +
                "S2s": {
         | 
| 1310 1373 | 
             
                  "type": "structure",
         | 
| 1311 1374 | 
             
                  "members": {
         | 
| 1312 1375 | 
             
                    "contentType": {},
         | 
| 1313 1376 | 
             
                    "data": {}
         | 
| 1314 1377 | 
             
                  }
         | 
| 1315 1378 | 
             
                },
         | 
| 1316 | 
            -
                " | 
| 1379 | 
            +
                "S3b": {
         | 
| 1317 1380 | 
             
                  "type": "timestamp",
         | 
| 1318 1381 | 
             
                  "timestampFormat": "iso8601"
         | 
| 1319 1382 | 
             
                },
         | 
| 1320 | 
            -
                " | 
| 1383 | 
            +
                "S3y": {
         | 
| 1321 1384 | 
             
                  "type": "string",
         | 
| 1322 1385 | 
             
                  "sensitive": true
         | 
| 1323 1386 | 
             
                }
         | 
| @@ -6,6 +6,12 @@ | |
| 6 6 | 
             
                  "limit_key": "maxResults",
         | 
| 7 7 | 
             
                  "result_key": "items"
         | 
| 8 8 | 
             
                },
         | 
| 9 | 
            +
                "ListDevEnvironmentSessions": {
         | 
| 10 | 
            +
                  "input_token": "nextToken",
         | 
| 11 | 
            +
                  "output_token": "nextToken",
         | 
| 12 | 
            +
                  "limit_key": "maxResults",
         | 
| 13 | 
            +
                  "result_key": "items"
         | 
| 14 | 
            +
                },
         | 
| 9 15 | 
             
                "ListDevEnvironments": {
         | 
| 10 16 | 
             
                  "input_token": "nextToken",
         | 
| 11 17 | 
             
                  "output_token": "nextToken",
         | 
| @@ -803,6 +803,9 @@ | |
| 803 803 | 
             
                      "RegexString": {},
         | 
| 804 804 | 
             
                      "ContextWords": {
         | 
| 805 805 | 
             
                        "shape": "S3r"
         | 
| 806 | 
            +
                      },
         | 
| 807 | 
            +
                      "Tags": {
         | 
| 808 | 
            +
                        "shape": "Sbv"
         | 
| 806 809 | 
             
                      }
         | 
| 807 810 | 
             
                    }
         | 
| 808 811 | 
             
                  },
         | 
| @@ -3905,6 +3908,9 @@ | |
| 3905 3908 | 
             
                      "NextToken": {},
         | 
| 3906 3909 | 
             
                      "MaxResults": {
         | 
| 3907 3910 | 
             
                        "type": "integer"
         | 
| 3911 | 
            +
                      },
         | 
| 3912 | 
            +
                      "Tags": {
         | 
| 3913 | 
            +
                        "shape": "Sbv"
         | 
| 3908 3914 | 
             
                      }
         | 
| 3909 3915 | 
             
                    }
         | 
| 3910 3916 | 
             
                  },
         | 
| @@ -1339,7 +1339,10 @@ | |
| 1339 1339 | 
             
                        "location": "querystring",
         | 
| 1340 1340 | 
             
                        "locationName": "nextToken"
         | 
| 1341 1341 | 
             
                      }
         | 
| 1342 | 
            -
                    }
         | 
| 1342 | 
            +
                    },
         | 
| 1343 | 
            +
                    "required": [
         | 
| 1344 | 
            +
                      "ClusterArn"
         | 
| 1345 | 
            +
                    ]
         | 
| 1343 1346 | 
             
                  },
         | 
| 1344 1347 | 
             
                  "output": {
         | 
| 1345 1348 | 
             
                    "type": "structure",
         | 
| @@ -1457,7 +1460,8 @@ | |
| 1457 1460 | 
             
                      }
         | 
| 1458 1461 | 
             
                    },
         | 
| 1459 1462 | 
             
                    "required": [
         | 
| 1460 | 
            -
                      "VpcConnectionArn"
         | 
| 1463 | 
            +
                      "VpcConnectionArn",
         | 
| 1464 | 
            +
                      "ClusterArn"
         | 
| 1461 1465 | 
             
                    ]
         | 
| 1462 1466 | 
             
                  },
         | 
| 1463 1467 | 
             
                  "output": {
         |