aws-sdk 2.1359.0 → 2.1361.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 +16 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +107 -86
- package/apis/comprehend-2017-11-27.min.json +181 -154
- package/apis/drs-2020-02-26.min.json +183 -41
- package/apis/drs-2020-02-26.paginators.json +6 -0
- package/apis/emr-serverless-2021-07-13.min.json +14 -0
- package/apis/internetmonitor-2021-06-03.min.json +30 -23
- package/apis/iotwireless-2020-11-22.min.json +122 -107
- package/apis/ram-2018-01-04.min.json +396 -66
- package/apis/ram-2018-01-04.paginators.json +10 -0
- package/apis/s3-2006-03-01.examples.json +94 -94
- package/apis/secretsmanager-2017-10-17.examples.json +32 -0
- package/apis/securityhub-2018-10-26.examples.json +1516 -0
- package/clients/appflow.d.ts +29 -0
- package/clients/comprehend.d.ts +45 -5
- package/clients/drs.d.ts +170 -0
- package/clients/dynamodb.d.ts +4 -4
- package/clients/ecs.d.ts +7 -7
- package/clients/emrserverless.d.ts +22 -4
- package/clients/internetmonitor.d.ts +16 -3
- package/clients/iotwireless.d.ts +21 -0
- package/clients/lambda.d.ts +1 -1
- package/clients/ram.d.ts +538 -91
- package/clients/rds.d.ts +16 -16
- package/clients/s3.d.ts +117 -117
- package/clients/secretsmanager.d.ts +10 -10
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +10 -10
- package/dist/aws-sdk.js +184 -157
- package/dist/aws-sdk.min.js +74 -74
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,7 +1,22 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1361.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1361.0
         | 
| 6 | 
            +
            * feature: Comprehend: This release supports native document models for custom classification, in addition to plain-text models. You train native document models using documents (PDF, Word, images) in their native format.
         | 
| 7 | 
            +
            * feature: ECS: This release supports the Account Setting "TagResourceAuthorization" that allows for enhanced Tagging security controls.
         | 
| 8 | 
            +
            * feature: RAM: This release adds support for customer managed permissions. Customer managed permissions enable customers to author and manage tailored permissions for resources shared using RAM.
         | 
| 9 | 
            +
            * feature: S3: Provides support for "Snow" Storage class.
         | 
| 10 | 
            +
            * feature: S3Control: Provides support for overriding endpoint when region is "snow". This will enable bucket APIs for Amazon S3 Compatible storage on Snow Family devices.
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            ## 2.1360.0
         | 
| 13 | 
            +
            * feature: Appflow: This release adds a Client Token parameter to the following AppFlow APIs: Create/Update Connector Profile, Create/Update Flow, Start Flow, Register Connector, Update Connector Registration. The Client Token parameter allows idempotent operations for these APIs.
         | 
| 14 | 
            +
            * feature: Drs: Changed existing APIs and added new APIs to support using an account-level launch configuration template with AWS Elastic Disaster Recovery.
         | 
| 15 | 
            +
            * feature: EMRServerless: The GetJobRun API has been updated to include the job's billed resource utilization. This utilization shows the aggregate vCPU, memory and storage that AWS has billed for the job run. The billed resources include a 1-minute minimum usage for workers, plus additional storage over 20 GB per worker.
         | 
| 16 | 
            +
            * feature: InternetMonitor: This release includes a new configurable value, TrafficPercentageToMonitor, which allows users to adjust the amount of traffic monitored by percentage
         | 
| 17 | 
            +
            * feature: IoTWireless: Supports the new feature of LoRaWAN roaming, allows to configure MaxEirp for LoRaWAN gateway, and allows to configure PingSlotPeriod for LoRaWAN multicast group
         | 
| 18 | 
            +
            * feature: Lambda: Add Python 3.10 (python3.10) support to AWS Lambda
         | 
| 19 | 
            +
             | 
| 5 20 | 
             
            ## 2.1359.0
         | 
| 6 21 | 
             
            * feature: Lambda: This release adds SnapStart related exceptions to InvokeWithResponseStream API. IAM access related documentation is also added for this API.
         | 
| 7 22 | 
             
            * feature: RDS: This release adds support of modifying the engine mode of database clusters.
         | 
    
        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.1361.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
         | 
| @@ -32,6 +32,9 @@ | |
| 32 32 | 
             
                      "connectionMode": {},
         | 
| 33 33 | 
             
                      "connectorProfileConfig": {
         | 
| 34 34 | 
             
                        "shape": "S7"
         | 
| 35 | 
            +
                      },
         | 
| 36 | 
            +
                      "clientToken": {
         | 
| 37 | 
            +
                        "idempotencyToken": true
         | 
| 35 38 | 
             
                      }
         | 
| 36 39 | 
             
                    }
         | 
| 37 40 | 
             
                  },
         | 
| @@ -60,22 +63,25 @@ | |
| 60 63 | 
             
                      "description": {},
         | 
| 61 64 | 
             
                      "kmsArn": {},
         | 
| 62 65 | 
             
                      "triggerConfig": {
         | 
| 63 | 
            -
                        "shape": " | 
| 66 | 
            +
                        "shape": "S38"
         | 
| 64 67 | 
             
                      },
         | 
| 65 68 | 
             
                      "sourceFlowConfig": {
         | 
| 66 | 
            -
                        "shape": " | 
| 69 | 
            +
                        "shape": "S3i"
         | 
| 67 70 | 
             
                      },
         | 
| 68 71 | 
             
                      "destinationFlowConfigList": {
         | 
| 69 | 
            -
                        "shape": " | 
| 72 | 
            +
                        "shape": "S4b"
         | 
| 70 73 | 
             
                      },
         | 
| 71 74 | 
             
                      "tasks": {
         | 
| 72 | 
            -
                        "shape": " | 
| 75 | 
            +
                        "shape": "S5b"
         | 
| 73 76 | 
             
                      },
         | 
| 74 77 | 
             
                      "tags": {
         | 
| 75 | 
            -
                        "shape": " | 
| 78 | 
            +
                        "shape": "S61"
         | 
| 76 79 | 
             
                      },
         | 
| 77 80 | 
             
                      "metadataCatalogConfig": {
         | 
| 78 | 
            -
                        "shape": " | 
| 81 | 
            +
                        "shape": "S64"
         | 
| 82 | 
            +
                      },
         | 
| 83 | 
            +
                      "clientToken": {
         | 
| 84 | 
            +
                        "idempotencyToken": true
         | 
| 79 85 | 
             
                      }
         | 
| 80 86 | 
             
                    }
         | 
| 81 87 | 
             
                  },
         | 
| @@ -147,7 +153,7 @@ | |
| 147 153 | 
             
                    "type": "structure",
         | 
| 148 154 | 
             
                    "members": {
         | 
| 149 155 | 
             
                      "connectorConfiguration": {
         | 
| 150 | 
            -
                        "shape": " | 
| 156 | 
            +
                        "shape": "S6i"
         | 
| 151 157 | 
             
                      }
         | 
| 152 158 | 
             
                    }
         | 
| 153 159 | 
             
                  }
         | 
| @@ -217,10 +223,10 @@ | |
| 217 223 | 
             
                                    "valueRegexPattern": {},
         | 
| 218 224 | 
             
                                    "supportedDateFormat": {},
         | 
| 219 225 | 
             
                                    "fieldValueRange": {
         | 
| 220 | 
            -
                                      "shape": " | 
| 226 | 
            +
                                      "shape": "S8p"
         | 
| 221 227 | 
             
                                    },
         | 
| 222 228 | 
             
                                    "fieldLengthRange": {
         | 
| 223 | 
            -
                                      "shape": " | 
| 229 | 
            +
                                      "shape": "S8p"
         | 
| 224 230 | 
             
                                    }
         | 
| 225 231 | 
             
                                  }
         | 
| 226 232 | 
             
                                }
         | 
| @@ -260,12 +266,12 @@ | |
| 260 266 | 
             
                                  "type": "boolean"
         | 
| 261 267 | 
             
                                },
         | 
| 262 268 | 
             
                                "supportedWriteOperations": {
         | 
| 263 | 
            -
                                  "shape": " | 
| 269 | 
            +
                                  "shape": "S88"
         | 
| 264 270 | 
             
                                }
         | 
| 265 271 | 
             
                              }
         | 
| 266 272 | 
             
                            },
         | 
| 267 273 | 
             
                            "customProperties": {
         | 
| 268 | 
            -
                              "shape": " | 
| 274 | 
            +
                              "shape": "S47"
         | 
| 269 275 | 
             
                            }
         | 
| 270 276 | 
             
                          }
         | 
| 271 277 | 
             
                        }
         | 
| @@ -338,7 +344,7 @@ | |
| 338 344 | 
             
                    "type": "structure",
         | 
| 339 345 | 
             
                    "members": {
         | 
| 340 346 | 
             
                      "connectorTypes": {
         | 
| 341 | 
            -
                        "shape": " | 
| 347 | 
            +
                        "shape": "S6j"
         | 
| 342 348 | 
             
                      },
         | 
| 343 349 | 
             
                      "maxResults": {
         | 
| 344 350 | 
             
                        "type": "integer"
         | 
| @@ -353,11 +359,11 @@ | |
| 353 359 | 
             
                        "type": "map",
         | 
| 354 360 | 
             
                        "key": {},
         | 
| 355 361 | 
             
                        "value": {
         | 
| 356 | 
            -
                          "shape": " | 
| 362 | 
            +
                          "shape": "S6i"
         | 
| 357 363 | 
             
                        }
         | 
| 358 364 | 
             
                      },
         | 
| 359 365 | 
             
                      "connectors": {
         | 
| 360 | 
            -
                        "shape": " | 
| 366 | 
            +
                        "shape": "S97"
         | 
| 361 367 | 
             
                      },
         | 
| 362 368 | 
             
                      "nextToken": {}
         | 
| 363 369 | 
             
                    }
         | 
| @@ -386,19 +392,19 @@ | |
| 386 392 | 
             
                      "flowStatus": {},
         | 
| 387 393 | 
             
                      "flowStatusMessage": {},
         | 
| 388 394 | 
             
                      "sourceFlowConfig": {
         | 
| 389 | 
            -
                        "shape": " | 
| 395 | 
            +
                        "shape": "S3i"
         | 
| 390 396 | 
             
                      },
         | 
| 391 397 | 
             
                      "destinationFlowConfigList": {
         | 
| 392 | 
            -
                        "shape": " | 
| 398 | 
            +
                        "shape": "S4b"
         | 
| 393 399 | 
             
                      },
         | 
| 394 400 | 
             
                      "lastRunExecutionDetails": {
         | 
| 395 | 
            -
                        "shape": " | 
| 401 | 
            +
                        "shape": "S9d"
         | 
| 396 402 | 
             
                      },
         | 
| 397 403 | 
             
                      "triggerConfig": {
         | 
| 398 | 
            -
                        "shape": " | 
| 404 | 
            +
                        "shape": "S38"
         | 
| 399 405 | 
             
                      },
         | 
| 400 406 | 
             
                      "tasks": {
         | 
| 401 | 
            -
                        "shape": " | 
| 407 | 
            +
                        "shape": "S5b"
         | 
| 402 408 | 
             
                      },
         | 
| 403 409 | 
             
                      "createdAt": {
         | 
| 404 410 | 
             
                        "type": "timestamp"
         | 
| @@ -409,13 +415,13 @@ | |
| 409 415 | 
             
                      "createdBy": {},
         | 
| 410 416 | 
             
                      "lastUpdatedBy": {},
         | 
| 411 417 | 
             
                      "tags": {
         | 
| 412 | 
            -
                        "shape": " | 
| 418 | 
            +
                        "shape": "S61"
         | 
| 413 419 | 
             
                      },
         | 
| 414 420 | 
             
                      "metadataCatalogConfig": {
         | 
| 415 | 
            -
                        "shape": " | 
| 421 | 
            +
                        "shape": "S64"
         | 
| 416 422 | 
             
                      },
         | 
| 417 423 | 
             
                      "lastRunMetadataCatalogDetails": {
         | 
| 418 | 
            -
                        "shape": " | 
| 424 | 
            +
                        "shape": "S9i"
         | 
| 419 425 | 
             
                      },
         | 
| 420 426 | 
             
                      "schemaVersion": {
         | 
| 421 427 | 
             
                        "type": "long"
         | 
| @@ -486,7 +492,7 @@ | |
| 486 492 | 
             
                              "type": "timestamp"
         | 
| 487 493 | 
             
                            },
         | 
| 488 494 | 
             
                            "metadataCatalogDetails": {
         | 
| 489 | 
            -
                              "shape": " | 
| 495 | 
            +
                              "shape": "S9i"
         | 
| 490 496 | 
             
                            }
         | 
| 491 497 | 
             
                          }
         | 
| 492 498 | 
             
                        }
         | 
| @@ -559,7 +565,7 @@ | |
| 559 565 | 
             
                    "type": "structure",
         | 
| 560 566 | 
             
                    "members": {
         | 
| 561 567 | 
             
                      "connectors": {
         | 
| 562 | 
            -
                        "shape": " | 
| 568 | 
            +
                        "shape": "S97"
         | 
| 563 569 | 
             
                      },
         | 
| 564 570 | 
             
                      "nextToken": {}
         | 
| 565 571 | 
             
                    }
         | 
| @@ -604,10 +610,10 @@ | |
| 604 610 | 
             
                            "createdBy": {},
         | 
| 605 611 | 
             
                            "lastUpdatedBy": {},
         | 
| 606 612 | 
             
                            "tags": {
         | 
| 607 | 
            -
                              "shape": " | 
| 613 | 
            +
                              "shape": "S61"
         | 
| 608 614 | 
             
                            },
         | 
| 609 615 | 
             
                            "lastRunExecutionDetails": {
         | 
| 610 | 
            -
                              "shape": " | 
| 616 | 
            +
                              "shape": "S9d"
         | 
| 611 617 | 
             
                            }
         | 
| 612 618 | 
             
                          }
         | 
| 613 619 | 
             
                        }
         | 
| @@ -637,7 +643,7 @@ | |
| 637 643 | 
             
                    "type": "structure",
         | 
| 638 644 | 
             
                    "members": {
         | 
| 639 645 | 
             
                      "tags": {
         | 
| 640 | 
            -
                        "shape": " | 
| 646 | 
            +
                        "shape": "S61"
         | 
| 641 647 | 
             
                      }
         | 
| 642 648 | 
             
                    }
         | 
| 643 649 | 
             
                  }
         | 
| @@ -653,7 +659,10 @@ | |
| 653 659 | 
             
                      "description": {},
         | 
| 654 660 | 
             
                      "connectorProvisioningType": {},
         | 
| 655 661 | 
             
                      "connectorProvisioningConfig": {
         | 
| 656 | 
            -
                        "shape": " | 
| 662 | 
            +
                        "shape": "S8a"
         | 
| 663 | 
            +
                      },
         | 
| 664 | 
            +
                      "clientToken": {
         | 
| 665 | 
            +
                        "idempotencyToken": true
         | 
| 657 666 | 
             
                      }
         | 
| 658 667 | 
             
                    }
         | 
| 659 668 | 
             
                  },
         | 
| @@ -674,7 +683,10 @@ | |
| 674 683 | 
             
                      "flowName"
         | 
| 675 684 | 
             
                    ],
         | 
| 676 685 | 
             
                    "members": {
         | 
| 677 | 
            -
                      "flowName": {}
         | 
| 686 | 
            +
                      "flowName": {},
         | 
| 687 | 
            +
                      "clientToken": {
         | 
| 688 | 
            +
                        "idempotencyToken": true
         | 
| 689 | 
            +
                      }
         | 
| 678 690 | 
             
                    }
         | 
| 679 691 | 
             
                  },
         | 
| 680 692 | 
             
                  "output": {
         | 
| @@ -723,7 +735,7 @@ | |
| 723 735 | 
             
                        "locationName": "resourceArn"
         | 
| 724 736 | 
             
                      },
         | 
| 725 737 | 
             
                      "tags": {
         | 
| 726 | 
            -
                        "shape": " | 
| 738 | 
            +
                        "shape": "S61"
         | 
| 727 739 | 
             
                      }
         | 
| 728 740 | 
             
                    }
         | 
| 729 741 | 
             
                  },
         | 
| @@ -798,6 +810,9 @@ | |
| 798 810 | 
             
                      "connectionMode": {},
         | 
| 799 811 | 
             
                      "connectorProfileConfig": {
         | 
| 800 812 | 
             
                        "shape": "S7"
         | 
| 813 | 
            +
                      },
         | 
| 814 | 
            +
                      "clientToken": {
         | 
| 815 | 
            +
                        "idempotencyToken": true
         | 
| 801 816 | 
             
                      }
         | 
| 802 817 | 
             
                    }
         | 
| 803 818 | 
             
                  },
         | 
| @@ -821,7 +836,10 @@ | |
| 821 836 | 
             
                      "connectorLabel": {},
         | 
| 822 837 | 
             
                      "description": {},
         | 
| 823 838 | 
             
                      "connectorProvisioningConfig": {
         | 
| 824 | 
            -
                        "shape": " | 
| 839 | 
            +
                        "shape": "S8a"
         | 
| 840 | 
            +
                      },
         | 
| 841 | 
            +
                      "clientToken": {
         | 
| 842 | 
            +
                        "idempotencyToken": true
         | 
| 825 843 | 
             
                      }
         | 
| 826 844 | 
             
                    }
         | 
| 827 845 | 
             
                  },
         | 
| @@ -849,19 +867,22 @@ | |
| 849 867 | 
             
                      "flowName": {},
         | 
| 850 868 | 
             
                      "description": {},
         | 
| 851 869 | 
             
                      "triggerConfig": {
         | 
| 852 | 
            -
                        "shape": " | 
| 870 | 
            +
                        "shape": "S38"
         | 
| 853 871 | 
             
                      },
         | 
| 854 872 | 
             
                      "sourceFlowConfig": {
         | 
| 855 | 
            -
                        "shape": " | 
| 873 | 
            +
                        "shape": "S3i"
         | 
| 856 874 | 
             
                      },
         | 
| 857 875 | 
             
                      "destinationFlowConfigList": {
         | 
| 858 | 
            -
                        "shape": " | 
| 876 | 
            +
                        "shape": "S4b"
         | 
| 859 877 | 
             
                      },
         | 
| 860 878 | 
             
                      "tasks": {
         | 
| 861 | 
            -
                        "shape": " | 
| 879 | 
            +
                        "shape": "S5b"
         | 
| 862 880 | 
             
                      },
         | 
| 863 881 | 
             
                      "metadataCatalogConfig": {
         | 
| 864 | 
            -
                        "shape": " | 
| 882 | 
            +
                        "shape": "S64"
         | 
| 883 | 
            +
                      },
         | 
| 884 | 
            +
                      "clientToken": {
         | 
| 885 | 
            +
                        "idempotencyToken": true
         | 
| 865 886 | 
             
                      }
         | 
| 866 887 | 
             
                    }
         | 
| 867 888 | 
             
                  },
         | 
| @@ -1489,7 +1510,7 @@ | |
| 1489 1510 | 
             
                    }
         | 
| 1490 1511 | 
             
                  }
         | 
| 1491 1512 | 
             
                },
         | 
| 1492 | 
            -
                " | 
| 1513 | 
            +
                "S38": {
         | 
| 1493 1514 | 
             
                  "type": "structure",
         | 
| 1494 1515 | 
             
                  "required": [
         | 
| 1495 1516 | 
             
                    "triggerType"
         | 
| @@ -1529,7 +1550,7 @@ | |
| 1529 1550 | 
             
                    }
         | 
| 1530 1551 | 
             
                  }
         | 
| 1531 1552 | 
             
                },
         | 
| 1532 | 
            -
                " | 
| 1553 | 
            +
                "S3i": {
         | 
| 1533 1554 | 
             
                  "type": "structure",
         | 
| 1534 1555 | 
             
                  "required": [
         | 
| 1535 1556 | 
             
                    "connectorType",
         | 
| @@ -1706,7 +1727,7 @@ | |
| 1706 1727 | 
             
                          "members": {
         | 
| 1707 1728 | 
             
                            "entityName": {},
         | 
| 1708 1729 | 
             
                            "customProperties": {
         | 
| 1709 | 
            -
                              "shape": " | 
| 1730 | 
            +
                              "shape": "S47"
         | 
| 1710 1731 | 
             
                            }
         | 
| 1711 1732 | 
             
                          }
         | 
| 1712 1733 | 
             
                        },
         | 
| @@ -1729,12 +1750,12 @@ | |
| 1729 1750 | 
             
                    }
         | 
| 1730 1751 | 
             
                  }
         | 
| 1731 1752 | 
             
                },
         | 
| 1732 | 
            -
                " | 
| 1753 | 
            +
                "S47": {
         | 
| 1733 1754 | 
             
                  "type": "map",
         | 
| 1734 1755 | 
             
                  "key": {},
         | 
| 1735 1756 | 
             
                  "value": {}
         | 
| 1736 1757 | 
             
                },
         | 
| 1737 | 
            -
                " | 
| 1758 | 
            +
                "S4b": {
         | 
| 1738 1759 | 
             
                  "type": "list",
         | 
| 1739 1760 | 
             
                  "member": {
         | 
| 1740 1761 | 
             
                    "type": "structure",
         | 
| @@ -1760,7 +1781,7 @@ | |
| 1760 1781 | 
             
                              "intermediateBucketName": {},
         | 
| 1761 1782 | 
             
                              "bucketPrefix": {},
         | 
| 1762 1783 | 
             
                              "errorHandlingConfig": {
         | 
| 1763 | 
            -
                                "shape": " | 
| 1784 | 
            +
                                "shape": "S4f"
         | 
| 1764 1785 | 
             
                              }
         | 
| 1765 1786 | 
             
                            }
         | 
| 1766 1787 | 
             
                          },
         | 
| @@ -1777,10 +1798,10 @@ | |
| 1777 1798 | 
             
                                "members": {
         | 
| 1778 1799 | 
             
                                  "fileType": {},
         | 
| 1779 1800 | 
             
                                  "prefixConfig": {
         | 
| 1780 | 
            -
                                    "shape": " | 
| 1801 | 
            +
                                    "shape": "S4j"
         | 
| 1781 1802 | 
             
                                  },
         | 
| 1782 1803 | 
             
                                  "aggregationConfig": {
         | 
| 1783 | 
            -
                                    "shape": " | 
| 1804 | 
            +
                                    "shape": "S4o"
         | 
| 1784 1805 | 
             
                                  },
         | 
| 1785 1806 | 
             
                                  "preserveSourceDataTyping": {
         | 
| 1786 1807 | 
             
                                    "type": "boolean"
         | 
| @@ -1797,10 +1818,10 @@ | |
| 1797 1818 | 
             
                            "members": {
         | 
| 1798 1819 | 
             
                              "object": {},
         | 
| 1799 1820 | 
             
                              "idFieldNames": {
         | 
| 1800 | 
            -
                                "shape": " | 
| 1821 | 
            +
                                "shape": "S4t"
         | 
| 1801 1822 | 
             
                              },
         | 
| 1802 1823 | 
             
                              "errorHandlingConfig": {
         | 
| 1803 | 
            -
                                "shape": " | 
| 1824 | 
            +
                                "shape": "S4f"
         | 
| 1804 1825 | 
             
                              },
         | 
| 1805 1826 | 
             
                              "writeOperationType": {},
         | 
| 1806 1827 | 
             
                              "dataTransferApi": {}
         | 
| @@ -1817,7 +1838,7 @@ | |
| 1817 1838 | 
             
                              "intermediateBucketName": {},
         | 
| 1818 1839 | 
             
                              "bucketPrefix": {},
         | 
| 1819 1840 | 
             
                              "errorHandlingConfig": {
         | 
| 1820 | 
            -
                                "shape": " | 
| 1841 | 
            +
                                "shape": "S4f"
         | 
| 1821 1842 | 
             
                              }
         | 
| 1822 1843 | 
             
                            }
         | 
| 1823 1844 | 
             
                          },
         | 
| @@ -1829,7 +1850,7 @@ | |
| 1829 1850 | 
             
                            "members": {
         | 
| 1830 1851 | 
             
                              "object": {},
         | 
| 1831 1852 | 
             
                              "errorHandlingConfig": {
         | 
| 1832 | 
            -
                                "shape": " | 
| 1853 | 
            +
                                "shape": "S4f"
         | 
| 1833 1854 | 
             
                              }
         | 
| 1834 1855 | 
             
                            }
         | 
| 1835 1856 | 
             
                          },
         | 
| @@ -1854,10 +1875,10 @@ | |
| 1854 1875 | 
             
                                "members": {
         | 
| 1855 1876 | 
             
                                  "fileType": {},
         | 
| 1856 1877 | 
             
                                  "prefixConfig": {
         | 
| 1857 | 
            -
                                    "shape": " | 
| 1878 | 
            +
                                    "shape": "S4j"
         | 
| 1858 1879 | 
             
                                  },
         | 
| 1859 1880 | 
             
                                  "aggregationConfig": {
         | 
| 1860 | 
            -
                                    "shape": " | 
| 1881 | 
            +
                                    "shape": "S4o"
         | 
| 1861 1882 | 
             
                                  }
         | 
| 1862 1883 | 
             
                                }
         | 
| 1863 1884 | 
             
                              }
         | 
| @@ -1871,7 +1892,7 @@ | |
| 1871 1892 | 
             
                            "members": {
         | 
| 1872 1893 | 
             
                              "object": {},
         | 
| 1873 1894 | 
             
                              "errorHandlingConfig": {
         | 
| 1874 | 
            -
                                "shape": " | 
| 1895 | 
            +
                                "shape": "S4f"
         | 
| 1875 1896 | 
             
                              }
         | 
| 1876 1897 | 
             
                            }
         | 
| 1877 1898 | 
             
                          },
         | 
| @@ -1893,10 +1914,10 @@ | |
| 1893 1914 | 
             
                            "members": {
         | 
| 1894 1915 | 
             
                              "object": {},
         | 
| 1895 1916 | 
             
                              "idFieldNames": {
         | 
| 1896 | 
            -
                                "shape": " | 
| 1917 | 
            +
                                "shape": "S4t"
         | 
| 1897 1918 | 
             
                              },
         | 
| 1898 1919 | 
             
                              "errorHandlingConfig": {
         | 
| 1899 | 
            -
                                "shape": " | 
| 1920 | 
            +
                                "shape": "S4f"
         | 
| 1900 1921 | 
             
                              },
         | 
| 1901 1922 | 
             
                              "writeOperationType": {}
         | 
| 1902 1923 | 
             
                            }
         | 
| @@ -1909,7 +1930,7 @@ | |
| 1909 1930 | 
             
                            "members": {
         | 
| 1910 1931 | 
             
                              "object": {},
         | 
| 1911 1932 | 
             
                              "errorHandlingConfig": {
         | 
| 1912 | 
            -
                                "shape": " | 
| 1933 | 
            +
                                "shape": "S4f"
         | 
| 1913 1934 | 
             
                              }
         | 
| 1914 1935 | 
             
                            }
         | 
| 1915 1936 | 
             
                          },
         | 
| @@ -1921,14 +1942,14 @@ | |
| 1921 1942 | 
             
                            "members": {
         | 
| 1922 1943 | 
             
                              "entityName": {},
         | 
| 1923 1944 | 
             
                              "errorHandlingConfig": {
         | 
| 1924 | 
            -
                                "shape": " | 
| 1945 | 
            +
                                "shape": "S4f"
         | 
| 1925 1946 | 
             
                              },
         | 
| 1926 1947 | 
             
                              "writeOperationType": {},
         | 
| 1927 1948 | 
             
                              "idFieldNames": {
         | 
| 1928 | 
            -
                                "shape": " | 
| 1949 | 
            +
                                "shape": "S4t"
         | 
| 1929 1950 | 
             
                              },
         | 
| 1930 1951 | 
             
                              "customProperties": {
         | 
| 1931 | 
            -
                                "shape": " | 
| 1952 | 
            +
                                "shape": "S47"
         | 
| 1932 1953 | 
             
                              }
         | 
| 1933 1954 | 
             
                            }
         | 
| 1934 1955 | 
             
                          },
         | 
| @@ -1947,10 +1968,10 @@ | |
| 1947 1968 | 
             
                                }
         | 
| 1948 1969 | 
             
                              },
         | 
| 1949 1970 | 
             
                              "idFieldNames": {
         | 
| 1950 | 
            -
                                "shape": " | 
| 1971 | 
            +
                                "shape": "S4t"
         | 
| 1951 1972 | 
             
                              },
         | 
| 1952 1973 | 
             
                              "errorHandlingConfig": {
         | 
| 1953 | 
            -
                                "shape": " | 
| 1974 | 
            +
                                "shape": "S4f"
         | 
| 1954 1975 | 
             
                              },
         | 
| 1955 1976 | 
             
                              "writeOperationType": {}
         | 
| 1956 1977 | 
             
                            }
         | 
| @@ -1960,7 +1981,7 @@ | |
| 1960 1981 | 
             
                    }
         | 
| 1961 1982 | 
             
                  }
         | 
| 1962 1983 | 
             
                },
         | 
| 1963 | 
            -
                " | 
| 1984 | 
            +
                "S4f": {
         | 
| 1964 1985 | 
             
                  "type": "structure",
         | 
| 1965 1986 | 
             
                  "members": {
         | 
| 1966 1987 | 
             
                    "failOnFirstDestinationError": {
         | 
| @@ -1970,7 +1991,7 @@ | |
| 1970 1991 | 
             
                    "bucketName": {}
         | 
| 1971 1992 | 
             
                  }
         | 
| 1972 1993 | 
             
                },
         | 
| 1973 | 
            -
                " | 
| 1994 | 
            +
                "S4j": {
         | 
| 1974 1995 | 
             
                  "type": "structure",
         | 
| 1975 1996 | 
             
                  "members": {
         | 
| 1976 1997 | 
             
                    "prefixType": {},
         | 
| @@ -1981,7 +2002,7 @@ | |
| 1981 2002 | 
             
                    }
         | 
| 1982 2003 | 
             
                  }
         | 
| 1983 2004 | 
             
                },
         | 
| 1984 | 
            -
                " | 
| 2005 | 
            +
                "S4o": {
         | 
| 1985 2006 | 
             
                  "type": "structure",
         | 
| 1986 2007 | 
             
                  "members": {
         | 
| 1987 2008 | 
             
                    "aggregationType": {},
         | 
| @@ -1990,11 +2011,11 @@ | |
| 1990 2011 | 
             
                    }
         | 
| 1991 2012 | 
             
                  }
         | 
| 1992 2013 | 
             
                },
         | 
| 1993 | 
            -
                " | 
| 2014 | 
            +
                "S4t": {
         | 
| 1994 2015 | 
             
                  "type": "list",
         | 
| 1995 2016 | 
             
                  "member": {}
         | 
| 1996 2017 | 
             
                },
         | 
| 1997 | 
            -
                " | 
| 2018 | 
            +
                "S5b": {
         | 
| 1998 2019 | 
             
                  "type": "list",
         | 
| 1999 2020 | 
             
                  "member": {
         | 
| 2000 2021 | 
             
                    "type": "structure",
         | 
| @@ -2039,12 +2060,12 @@ | |
| 2039 2060 | 
             
                    }
         | 
| 2040 2061 | 
             
                  }
         | 
| 2041 2062 | 
             
                },
         | 
| 2042 | 
            -
                " | 
| 2063 | 
            +
                "S61": {
         | 
| 2043 2064 | 
             
                  "type": "map",
         | 
| 2044 2065 | 
             
                  "key": {},
         | 
| 2045 2066 | 
             
                  "value": {}
         | 
| 2046 2067 | 
             
                },
         | 
| 2047 | 
            -
                " | 
| 2068 | 
            +
                "S64": {
         | 
| 2048 2069 | 
             
                  "type": "structure",
         | 
| 2049 2070 | 
             
                  "members": {
         | 
| 2050 2071 | 
             
                    "glueDataCatalog": {
         | 
| @@ -2062,7 +2083,7 @@ | |
| 2062 2083 | 
             
                    }
         | 
| 2063 2084 | 
             
                  }
         | 
| 2064 2085 | 
             
                },
         | 
| 2065 | 
            -
                " | 
| 2086 | 
            +
                "S6i": {
         | 
| 2066 2087 | 
             
                  "type": "structure",
         | 
| 2067 2088 | 
             
                  "members": {
         | 
| 2068 2089 | 
             
                    "canUseAsSource": {
         | 
| @@ -2072,7 +2093,7 @@ | |
| 2072 2093 | 
             
                      "type": "boolean"
         | 
| 2073 2094 | 
             
                    },
         | 
| 2074 2095 | 
             
                    "supportedDestinationConnectors": {
         | 
| 2075 | 
            -
                      "shape": " | 
| 2096 | 
            +
                      "shape": "S6j"
         | 
| 2076 2097 | 
             
                    },
         | 
| 2077 2098 | 
             
                    "supportedSchedulingFrequencies": {
         | 
| 2078 2099 | 
             
                      "type": "list",
         | 
| @@ -2218,7 +2239,7 @@ | |
| 2218 2239 | 
             
                    "connectorVersion": {},
         | 
| 2219 2240 | 
             
                    "connectorArn": {},
         | 
| 2220 2241 | 
             
                    "connectorModes": {
         | 
| 2221 | 
            -
                      "shape": " | 
| 2242 | 
            +
                      "shape": "S7h"
         | 
| 2222 2243 | 
             
                    },
         | 
| 2223 2244 | 
             
                    "authenticationConfig": {
         | 
| 2224 2245 | 
             
                      "type": "structure",
         | 
| @@ -2268,7 +2289,7 @@ | |
| 2268 2289 | 
             
                                    "type": "boolean"
         | 
| 2269 2290 | 
             
                                  },
         | 
| 2270 2291 | 
             
                                  "connectorSuppliedValues": {
         | 
| 2271 | 
            -
                                    "shape": " | 
| 2292 | 
            +
                                    "shape": "S7s"
         | 
| 2272 2293 | 
             
                                  },
         | 
| 2273 2294 | 
             
                                  "type": {}
         | 
| 2274 2295 | 
             
                                }
         | 
| @@ -2297,7 +2318,7 @@ | |
| 2297 2318 | 
             
                                      "type": "boolean"
         | 
| 2298 2319 | 
             
                                    },
         | 
| 2299 2320 | 
             
                                    "connectorSuppliedValues": {
         | 
| 2300 | 
            -
                                      "shape": " | 
| 2321 | 
            +
                                      "shape": "S7s"
         | 
| 2301 2322 | 
             
                                    }
         | 
| 2302 2323 | 
             
                                  }
         | 
| 2303 2324 | 
             
                                }
         | 
| @@ -2336,11 +2357,11 @@ | |
| 2336 2357 | 
             
                      "member": {}
         | 
| 2337 2358 | 
             
                    },
         | 
| 2338 2359 | 
             
                    "supportedWriteOperations": {
         | 
| 2339 | 
            -
                      "shape": " | 
| 2360 | 
            +
                      "shape": "S88"
         | 
| 2340 2361 | 
             
                    },
         | 
| 2341 2362 | 
             
                    "connectorProvisioningType": {},
         | 
| 2342 2363 | 
             
                    "connectorProvisioningConfig": {
         | 
| 2343 | 
            -
                      "shape": " | 
| 2364 | 
            +
                      "shape": "S8a"
         | 
| 2344 2365 | 
             
                    },
         | 
| 2345 2366 | 
             
                    "logoURL": {},
         | 
| 2346 2367 | 
             
                    "registeredAt": {
         | 
| @@ -2349,23 +2370,23 @@ | |
| 2349 2370 | 
             
                    "registeredBy": {}
         | 
| 2350 2371 | 
             
                  }
         | 
| 2351 2372 | 
             
                },
         | 
| 2352 | 
            -
                " | 
| 2373 | 
            +
                "S6j": {
         | 
| 2353 2374 | 
             
                  "type": "list",
         | 
| 2354 2375 | 
             
                  "member": {}
         | 
| 2355 2376 | 
             
                },
         | 
| 2356 | 
            -
                " | 
| 2377 | 
            +
                "S7h": {
         | 
| 2357 2378 | 
             
                  "type": "list",
         | 
| 2358 2379 | 
             
                  "member": {}
         | 
| 2359 2380 | 
             
                },
         | 
| 2360 | 
            -
                " | 
| 2381 | 
            +
                "S7s": {
         | 
| 2361 2382 | 
             
                  "type": "list",
         | 
| 2362 2383 | 
             
                  "member": {}
         | 
| 2363 2384 | 
             
                },
         | 
| 2364 | 
            -
                " | 
| 2385 | 
            +
                "S88": {
         | 
| 2365 2386 | 
             
                  "type": "list",
         | 
| 2366 2387 | 
             
                  "member": {}
         | 
| 2367 2388 | 
             
                },
         | 
| 2368 | 
            -
                " | 
| 2389 | 
            +
                "S8a": {
         | 
| 2369 2390 | 
             
                  "type": "structure",
         | 
| 2370 2391 | 
             
                  "members": {
         | 
| 2371 2392 | 
             
                    "lambda": {
         | 
| @@ -2379,7 +2400,7 @@ | |
| 2379 2400 | 
             
                    }
         | 
| 2380 2401 | 
             
                  }
         | 
| 2381 2402 | 
             
                },
         | 
| 2382 | 
            -
                " | 
| 2403 | 
            +
                "S8p": {
         | 
| 2383 2404 | 
             
                  "type": "structure",
         | 
| 2384 2405 | 
             
                  "members": {
         | 
| 2385 2406 | 
             
                    "maximum": {
         | 
| @@ -2390,7 +2411,7 @@ | |
| 2390 2411 | 
             
                    }
         | 
| 2391 2412 | 
             
                  }
         | 
| 2392 2413 | 
             
                },
         | 
| 2393 | 
            -
                " | 
| 2414 | 
            +
                "S97": {
         | 
| 2394 2415 | 
             
                  "type": "list",
         | 
| 2395 2416 | 
             
                  "member": {
         | 
| 2396 2417 | 
             
                    "type": "structure",
         | 
| @@ -2408,12 +2429,12 @@ | |
| 2408 2429 | 
             
                      "registeredBy": {},
         | 
| 2409 2430 | 
             
                      "connectorProvisioningType": {},
         | 
| 2410 2431 | 
             
                      "connectorModes": {
         | 
| 2411 | 
            -
                        "shape": " | 
| 2432 | 
            +
                        "shape": "S7h"
         | 
| 2412 2433 | 
             
                      }
         | 
| 2413 2434 | 
             
                    }
         | 
| 2414 2435 | 
             
                  }
         | 
| 2415 2436 | 
             
                },
         | 
| 2416 | 
            -
                " | 
| 2437 | 
            +
                "S9d": {
         | 
| 2417 2438 | 
             
                  "type": "structure",
         | 
| 2418 2439 | 
             
                  "members": {
         | 
| 2419 2440 | 
             
                    "mostRecentExecutionMessage": {},
         | 
| @@ -2423,7 +2444,7 @@ | |
| 2423 2444 | 
             
                    "mostRecentExecutionStatus": {}
         | 
| 2424 2445 | 
             
                  }
         | 
| 2425 2446 | 
             
                },
         | 
| 2426 | 
            -
                " | 
| 2447 | 
            +
                "S9i": {
         | 
| 2427 2448 | 
             
                  "type": "list",
         | 
| 2428 2449 | 
             
                  "member": {
         | 
| 2429 2450 | 
             
                    "type": "structure",
         | 
| @@ -2431,15 +2452,15 @@ | |
| 2431 2452 | 
             
                      "catalogType": {},
         | 
| 2432 2453 | 
             
                      "tableName": {},
         | 
| 2433 2454 | 
             
                      "tableRegistrationOutput": {
         | 
| 2434 | 
            -
                        "shape": " | 
| 2455 | 
            +
                        "shape": "S9l"
         | 
| 2435 2456 | 
             
                      },
         | 
| 2436 2457 | 
             
                      "partitionRegistrationOutput": {
         | 
| 2437 | 
            -
                        "shape": " | 
| 2458 | 
            +
                        "shape": "S9l"
         | 
| 2438 2459 | 
             
                      }
         | 
| 2439 2460 | 
             
                    }
         | 
| 2440 2461 | 
             
                  }
         | 
| 2441 2462 | 
             
                },
         | 
| 2442 | 
            -
                " | 
| 2463 | 
            +
                "S9l": {
         | 
| 2443 2464 | 
             
                  "type": "structure",
         | 
| 2444 2465 | 
             
                  "members": {
         | 
| 2445 2466 | 
             
                    "message": {},
         |