aws-sdk 2.1367.0 → 2.1369.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 +104 -93
- package/apis/athena-2017-05-18.min.json +259 -50
- package/apis/athena-2017-05-18.paginators.json +5 -0
- package/apis/compute-optimizer-2019-11-01.min.json +60 -21
- package/apis/grafana-2020-08-18.min.json +1 -0
- package/apis/iot-2015-05-28.min.json +289 -274
- package/apis/kms-2014-11-01.examples.json +197 -15
- package/apis/kms-2014-11-01.min.json +52 -19
- package/apis/rekognition-2016-06-27.min.json +112 -48
- package/apis/simspaceweaver-2022-10-28.min.json +52 -16
- package/clients/appflow.d.ts +14 -1
- package/clients/athena.d.ts +228 -10
- package/clients/computeoptimizer.d.ts +58 -14
- package/clients/directconnect.d.ts +2 -2
- package/clients/efs.d.ts +1 -1
- package/clients/grafana.d.ts +4 -0
- package/clients/iot.d.ts +21 -2
- package/clients/kms.d.ts +76 -32
- package/clients/rekognition.d.ts +117 -0
- package/clients/simspaceweaver.d.ts +62 -21
- package/clients/wafv2.d.ts +57 -57
- package/clients/workspaces.d.ts +3 -3
- package/dist/aws-sdk-core-react-native.js +10 -1
- package/dist/aws-sdk-react-native.js +21 -13
- package/dist/aws-sdk.js +731 -397
- package/dist/aws-sdk.min.js +98 -98
- package/lib/core.js +1 -1
- package/lib/protocol/json.js +9 -0
- package/lib/services/sqs.js +2 -3
- package/package.json +1 -1
    
        package/dist/aws-sdk.js
    CHANGED
    
    | @@ -1,4 +1,4 @@ | |
| 1 | 
            -
            // AWS SDK for JavaScript v2. | 
| 1 | 
            +
            // AWS SDK for JavaScript v2.1369.0
         | 
| 2 2 | 
             
            // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
         | 
| 3 3 | 
             
            // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
         | 
| 4 4 | 
             
            (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
         | 
| @@ -5895,6 +5895,45 @@ module.exports={ | |
| 5895 5895 | 
             
                    }
         | 
| 5896 5896 | 
             
                  }
         | 
| 5897 5897 | 
             
                },
         | 
| 5898 | 
            +
                "CancelCapacityReservation": {
         | 
| 5899 | 
            +
                  "input": {
         | 
| 5900 | 
            +
                    "type": "structure",
         | 
| 5901 | 
            +
                    "required": [
         | 
| 5902 | 
            +
                      "Name"
         | 
| 5903 | 
            +
                    ],
         | 
| 5904 | 
            +
                    "members": {
         | 
| 5905 | 
            +
                      "Name": {}
         | 
| 5906 | 
            +
                    }
         | 
| 5907 | 
            +
                  },
         | 
| 5908 | 
            +
                  "output": {
         | 
| 5909 | 
            +
                    "type": "structure",
         | 
| 5910 | 
            +
                    "members": {}
         | 
| 5911 | 
            +
                  },
         | 
| 5912 | 
            +
                  "idempotent": true
         | 
| 5913 | 
            +
                },
         | 
| 5914 | 
            +
                "CreateCapacityReservation": {
         | 
| 5915 | 
            +
                  "input": {
         | 
| 5916 | 
            +
                    "type": "structure",
         | 
| 5917 | 
            +
                    "required": [
         | 
| 5918 | 
            +
                      "TargetDpus",
         | 
| 5919 | 
            +
                      "Name"
         | 
| 5920 | 
            +
                    ],
         | 
| 5921 | 
            +
                    "members": {
         | 
| 5922 | 
            +
                      "TargetDpus": {
         | 
| 5923 | 
            +
                        "type": "integer"
         | 
| 5924 | 
            +
                      },
         | 
| 5925 | 
            +
                      "Name": {},
         | 
| 5926 | 
            +
                      "Tags": {
         | 
| 5927 | 
            +
                        "shape": "S1s"
         | 
| 5928 | 
            +
                      }
         | 
| 5929 | 
            +
                    }
         | 
| 5930 | 
            +
                  },
         | 
| 5931 | 
            +
                  "output": {
         | 
| 5932 | 
            +
                    "type": "structure",
         | 
| 5933 | 
            +
                    "members": {}
         | 
| 5934 | 
            +
                  },
         | 
| 5935 | 
            +
                  "idempotent": true
         | 
| 5936 | 
            +
                },
         | 
| 5898 5937 | 
             
                "CreateDataCatalog": {
         | 
| 5899 5938 | 
             
                  "input": {
         | 
| 5900 5939 | 
             
                    "type": "structure",
         | 
| @@ -5907,7 +5946,7 @@ module.exports={ | |
| 5907 5946 | 
             
                      "Type": {},
         | 
| 5908 5947 | 
             
                      "Description": {},
         | 
| 5909 5948 | 
             
                      "Parameters": {
         | 
| 5910 | 
            -
                        "shape": " | 
| 5949 | 
            +
                        "shape": "S1z"
         | 
| 5911 5950 | 
             
                      },
         | 
| 5912 5951 | 
             
                      "Tags": {
         | 
| 5913 5952 | 
             
                        "shape": "S1s"
         | 
| @@ -6021,7 +6060,7 @@ module.exports={ | |
| 6021 6060 | 
             
                    "members": {
         | 
| 6022 6061 | 
             
                      "Name": {},
         | 
| 6023 6062 | 
             
                      "Configuration": {
         | 
| 6024 | 
            -
                        "shape": " | 
| 6063 | 
            +
                        "shape": "S2i"
         | 
| 6025 6064 | 
             
                      },
         | 
| 6026 6065 | 
             
                      "Description": {},
         | 
| 6027 6066 | 
             
                      "Tags": {
         | 
| @@ -6132,7 +6171,7 @@ module.exports={ | |
| 6132 6171 | 
             
                    "type": "structure",
         | 
| 6133 6172 | 
             
                    "members": {
         | 
| 6134 6173 | 
             
                      "NotebookMetadata": {
         | 
| 6135 | 
            -
                        "shape": " | 
| 6174 | 
            +
                        "shape": "S32"
         | 
| 6136 6175 | 
             
                      },
         | 
| 6137 6176 | 
             
                      "Payload": {}
         | 
| 6138 6177 | 
             
                    }
         | 
| @@ -6156,10 +6195,10 @@ module.exports={ | |
| 6156 6195 | 
             
                      "Description": {},
         | 
| 6157 6196 | 
             
                      "WorkingDirectory": {},
         | 
| 6158 6197 | 
             
                      "Status": {
         | 
| 6159 | 
            -
                        "shape": " | 
| 6198 | 
            +
                        "shape": "S39"
         | 
| 6160 6199 | 
             
                      },
         | 
| 6161 6200 | 
             
                      "Statistics": {
         | 
| 6162 | 
            -
                        "shape": " | 
| 6201 | 
            +
                        "shape": "S3b"
         | 
| 6163 6202 | 
             
                      },
         | 
| 6164 6203 | 
             
                      "Result": {
         | 
| 6165 6204 | 
             
                        "type": "structure",
         | 
| @@ -6204,10 +6243,60 @@ module.exports={ | |
| 6204 6243 | 
             
                    "type": "structure",
         | 
| 6205 6244 | 
             
                    "members": {
         | 
| 6206 6245 | 
             
                      "Status": {
         | 
| 6207 | 
            -
                        "shape": " | 
| 6246 | 
            +
                        "shape": "S39"
         | 
| 6208 6247 | 
             
                      },
         | 
| 6209 6248 | 
             
                      "Statistics": {
         | 
| 6210 | 
            -
                        "shape": " | 
| 6249 | 
            +
                        "shape": "S3b"
         | 
| 6250 | 
            +
                      }
         | 
| 6251 | 
            +
                    }
         | 
| 6252 | 
            +
                  }
         | 
| 6253 | 
            +
                },
         | 
| 6254 | 
            +
                "GetCapacityAssignmentConfiguration": {
         | 
| 6255 | 
            +
                  "input": {
         | 
| 6256 | 
            +
                    "type": "structure",
         | 
| 6257 | 
            +
                    "required": [
         | 
| 6258 | 
            +
                      "CapacityReservationName"
         | 
| 6259 | 
            +
                    ],
         | 
| 6260 | 
            +
                    "members": {
         | 
| 6261 | 
            +
                      "CapacityReservationName": {}
         | 
| 6262 | 
            +
                    }
         | 
| 6263 | 
            +
                  },
         | 
| 6264 | 
            +
                  "output": {
         | 
| 6265 | 
            +
                    "type": "structure",
         | 
| 6266 | 
            +
                    "required": [
         | 
| 6267 | 
            +
                      "CapacityAssignmentConfiguration"
         | 
| 6268 | 
            +
                    ],
         | 
| 6269 | 
            +
                    "members": {
         | 
| 6270 | 
            +
                      "CapacityAssignmentConfiguration": {
         | 
| 6271 | 
            +
                        "type": "structure",
         | 
| 6272 | 
            +
                        "members": {
         | 
| 6273 | 
            +
                          "CapacityReservationName": {},
         | 
| 6274 | 
            +
                          "CapacityAssignments": {
         | 
| 6275 | 
            +
                            "shape": "S3m"
         | 
| 6276 | 
            +
                          }
         | 
| 6277 | 
            +
                        }
         | 
| 6278 | 
            +
                      }
         | 
| 6279 | 
            +
                    }
         | 
| 6280 | 
            +
                  }
         | 
| 6281 | 
            +
                },
         | 
| 6282 | 
            +
                "GetCapacityReservation": {
         | 
| 6283 | 
            +
                  "input": {
         | 
| 6284 | 
            +
                    "type": "structure",
         | 
| 6285 | 
            +
                    "required": [
         | 
| 6286 | 
            +
                      "Name"
         | 
| 6287 | 
            +
                    ],
         | 
| 6288 | 
            +
                    "members": {
         | 
| 6289 | 
            +
                      "Name": {}
         | 
| 6290 | 
            +
                    }
         | 
| 6291 | 
            +
                  },
         | 
| 6292 | 
            +
                  "output": {
         | 
| 6293 | 
            +
                    "type": "structure",
         | 
| 6294 | 
            +
                    "required": [
         | 
| 6295 | 
            +
                      "CapacityReservation"
         | 
| 6296 | 
            +
                    ],
         | 
| 6297 | 
            +
                    "members": {
         | 
| 6298 | 
            +
                      "CapacityReservation": {
         | 
| 6299 | 
            +
                        "shape": "S3r"
         | 
| 6211 6300 | 
             
                      }
         | 
| 6212 6301 | 
             
                    }
         | 
| 6213 6302 | 
             
                  }
         | 
| @@ -6236,7 +6325,7 @@ module.exports={ | |
| 6236 6325 | 
             
                          "Description": {},
         | 
| 6237 6326 | 
             
                          "Type": {},
         | 
| 6238 6327 | 
             
                          "Parameters": {
         | 
| 6239 | 
            -
                            "shape": " | 
| 6328 | 
            +
                            "shape": "S1z"
         | 
| 6240 6329 | 
             
                          }
         | 
| 6241 6330 | 
             
                        }
         | 
| 6242 6331 | 
             
                      }
         | 
| @@ -6259,7 +6348,7 @@ module.exports={ | |
| 6259 6348 | 
             
                    "type": "structure",
         | 
| 6260 6349 | 
             
                    "members": {
         | 
| 6261 6350 | 
             
                      "Database": {
         | 
| 6262 | 
            -
                        "shape": " | 
| 6351 | 
            +
                        "shape": "S42"
         | 
| 6263 6352 | 
             
                      }
         | 
| 6264 6353 | 
             
                    }
         | 
| 6265 6354 | 
             
                  }
         | 
| @@ -6297,7 +6386,7 @@ module.exports={ | |
| 6297 6386 | 
             
                    "type": "structure",
         | 
| 6298 6387 | 
             
                    "members": {
         | 
| 6299 6388 | 
             
                      "NotebookMetadata": {
         | 
| 6300 | 
            -
                        "shape": " | 
| 6389 | 
            +
                        "shape": "S32"
         | 
| 6301 6390 | 
             
                      }
         | 
| 6302 6391 | 
             
                    }
         | 
| 6303 6392 | 
             
                  }
         | 
| @@ -6475,7 +6564,7 @@ module.exports={ | |
| 6475 6564 | 
             
                            }
         | 
| 6476 6565 | 
             
                          },
         | 
| 6477 6566 | 
             
                          "OutputStage": {
         | 
| 6478 | 
            -
                            "shape": " | 
| 6567 | 
            +
                            "shape": "S4v"
         | 
| 6479 6568 | 
             
                          }
         | 
| 6480 6569 | 
             
                        }
         | 
| 6481 6570 | 
             
                      }
         | 
| @@ -6500,7 +6589,7 @@ module.exports={ | |
| 6500 6589 | 
             
                      "WorkGroup": {},
         | 
| 6501 6590 | 
             
                      "EngineVersion": {},
         | 
| 6502 6591 | 
             
                      "EngineConfiguration": {
         | 
| 6503 | 
            -
                        "shape": " | 
| 6592 | 
            +
                        "shape": "S52"
         | 
| 6504 6593 | 
             
                      },
         | 
| 6505 6594 | 
             
                      "NotebookVersion": {},
         | 
| 6506 6595 | 
             
                      "SessionConfiguration": {
         | 
| @@ -6517,7 +6606,7 @@ module.exports={ | |
| 6517 6606 | 
             
                        }
         | 
| 6518 6607 | 
             
                      },
         | 
| 6519 6608 | 
             
                      "Status": {
         | 
| 6520 | 
            -
                        "shape": " | 
| 6609 | 
            +
                        "shape": "S57"
         | 
| 6521 6610 | 
             
                      },
         | 
| 6522 6611 | 
             
                      "Statistics": {
         | 
| 6523 6612 | 
             
                        "type": "structure",
         | 
| @@ -6545,7 +6634,7 @@ module.exports={ | |
| 6545 6634 | 
             
                    "members": {
         | 
| 6546 6635 | 
             
                      "SessionId": {},
         | 
| 6547 6636 | 
             
                      "Status": {
         | 
| 6548 | 
            -
                        "shape": " | 
| 6637 | 
            +
                        "shape": "S57"
         | 
| 6549 6638 | 
             
                      }
         | 
| 6550 6639 | 
             
                    }
         | 
| 6551 6640 | 
             
                  }
         | 
| @@ -6568,7 +6657,7 @@ module.exports={ | |
| 6568 6657 | 
             
                    "type": "structure",
         | 
| 6569 6658 | 
             
                    "members": {
         | 
| 6570 6659 | 
             
                      "TableMetadata": {
         | 
| 6571 | 
            -
                        "shape": " | 
| 6660 | 
            +
                        "shape": "S5e"
         | 
| 6572 6661 | 
             
                      }
         | 
| 6573 6662 | 
             
                    }
         | 
| 6574 6663 | 
             
                  }
         | 
| @@ -6595,7 +6684,7 @@ module.exports={ | |
| 6595 6684 | 
             
                          "Name": {},
         | 
| 6596 6685 | 
             
                          "State": {},
         | 
| 6597 6686 | 
             
                          "Configuration": {
         | 
| 6598 | 
            -
                            "shape": " | 
| 6687 | 
            +
                            "shape": "S2i"
         | 
| 6599 6688 | 
             
                          },
         | 
| 6600 6689 | 
             
                          "Description": {},
         | 
| 6601 6690 | 
             
                          "CreationTime": {
         | 
| @@ -6689,7 +6778,7 @@ module.exports={ | |
| 6689 6778 | 
             
                            "CalculationExecutionId": {},
         | 
| 6690 6779 | 
             
                            "Description": {},
         | 
| 6691 6780 | 
             
                            "Status": {
         | 
| 6692 | 
            -
                              "shape": " | 
| 6781 | 
            +
                              "shape": "S39"
         | 
| 6693 6782 | 
             
                            }
         | 
| 6694 6783 | 
             
                          }
         | 
| 6695 6784 | 
             
                        }
         | 
| @@ -6697,6 +6786,32 @@ module.exports={ | |
| 6697 6786 | 
             
                    }
         | 
| 6698 6787 | 
             
                  }
         | 
| 6699 6788 | 
             
                },
         | 
| 6789 | 
            +
                "ListCapacityReservations": {
         | 
| 6790 | 
            +
                  "input": {
         | 
| 6791 | 
            +
                    "type": "structure",
         | 
| 6792 | 
            +
                    "members": {
         | 
| 6793 | 
            +
                      "NextToken": {},
         | 
| 6794 | 
            +
                      "MaxResults": {
         | 
| 6795 | 
            +
                        "type": "integer"
         | 
| 6796 | 
            +
                      }
         | 
| 6797 | 
            +
                    }
         | 
| 6798 | 
            +
                  },
         | 
| 6799 | 
            +
                  "output": {
         | 
| 6800 | 
            +
                    "type": "structure",
         | 
| 6801 | 
            +
                    "required": [
         | 
| 6802 | 
            +
                      "CapacityReservations"
         | 
| 6803 | 
            +
                    ],
         | 
| 6804 | 
            +
                    "members": {
         | 
| 6805 | 
            +
                      "NextToken": {},
         | 
| 6806 | 
            +
                      "CapacityReservations": {
         | 
| 6807 | 
            +
                        "type": "list",
         | 
| 6808 | 
            +
                        "member": {
         | 
| 6809 | 
            +
                          "shape": "S3r"
         | 
| 6810 | 
            +
                        }
         | 
| 6811 | 
            +
                      }
         | 
| 6812 | 
            +
                    }
         | 
| 6813 | 
            +
                  }
         | 
| 6814 | 
            +
                },
         | 
| 6700 6815 | 
             
                "ListDataCatalogs": {
         | 
| 6701 6816 | 
             
                  "input": {
         | 
| 6702 6817 | 
             
                    "type": "structure",
         | 
| @@ -6744,7 +6859,7 @@ module.exports={ | |
| 6744 6859 | 
             
                      "DatabaseList": {
         | 
| 6745 6860 | 
             
                        "type": "list",
         | 
| 6746 6861 | 
             
                        "member": {
         | 
| 6747 | 
            -
                          "shape": " | 
| 6862 | 
            +
                          "shape": "S42"
         | 
| 6748 6863 | 
             
                        }
         | 
| 6749 6864 | 
             
                      },
         | 
| 6750 6865 | 
             
                      "NextToken": {}
         | 
| @@ -6871,7 +6986,7 @@ module.exports={ | |
| 6871 6986 | 
             
                      "NotebookMetadataList": {
         | 
| 6872 6987 | 
             
                        "type": "list",
         | 
| 6873 6988 | 
             
                        "member": {
         | 
| 6874 | 
            -
                          "shape": " | 
| 6989 | 
            +
                          "shape": "S32"
         | 
| 6875 6990 | 
             
                        }
         | 
| 6876 6991 | 
             
                      }
         | 
| 6877 6992 | 
             
                    }
         | 
| @@ -6998,7 +7113,7 @@ module.exports={ | |
| 6998 7113 | 
             
                            },
         | 
| 6999 7114 | 
             
                            "NotebookVersion": {},
         | 
| 7000 7115 | 
             
                            "Status": {
         | 
| 7001 | 
            -
                              "shape": " | 
| 7116 | 
            +
                              "shape": "S57"
         | 
| 7002 7117 | 
             
                            }
         | 
| 7003 7118 | 
             
                          }
         | 
| 7004 7119 | 
             
                        }
         | 
| @@ -7029,7 +7144,7 @@ module.exports={ | |
| 7029 7144 | 
             
                      "TableMetadataList": {
         | 
| 7030 7145 | 
             
                        "type": "list",
         | 
| 7031 7146 | 
             
                        "member": {
         | 
| 7032 | 
            -
                          "shape": " | 
| 7147 | 
            +
                          "shape": "S5e"
         | 
| 7033 7148 | 
             
                        }
         | 
| 7034 7149 | 
             
                      },
         | 
| 7035 7150 | 
             
                      "NextToken": {}
         | 
| @@ -7094,6 +7209,26 @@ module.exports={ | |
| 7094 7209 | 
             
                    }
         | 
| 7095 7210 | 
             
                  }
         | 
| 7096 7211 | 
             
                },
         | 
| 7212 | 
            +
                "PutCapacityAssignmentConfiguration": {
         | 
| 7213 | 
            +
                  "input": {
         | 
| 7214 | 
            +
                    "type": "structure",
         | 
| 7215 | 
            +
                    "required": [
         | 
| 7216 | 
            +
                      "CapacityReservationName",
         | 
| 7217 | 
            +
                      "CapacityAssignments"
         | 
| 7218 | 
            +
                    ],
         | 
| 7219 | 
            +
                    "members": {
         | 
| 7220 | 
            +
                      "CapacityReservationName": {},
         | 
| 7221 | 
            +
                      "CapacityAssignments": {
         | 
| 7222 | 
            +
                        "shape": "S3m"
         | 
| 7223 | 
            +
                      }
         | 
| 7224 | 
            +
                    }
         | 
| 7225 | 
            +
                  },
         | 
| 7226 | 
            +
                  "output": {
         | 
| 7227 | 
            +
                    "type": "structure",
         | 
| 7228 | 
            +
                    "members": {}
         | 
| 7229 | 
            +
                  },
         | 
| 7230 | 
            +
                  "idempotent": true
         | 
| 7231 | 
            +
                },
         | 
| 7097 7232 | 
             
                "StartCalculationExecution": {
         | 
| 7098 7233 | 
             
                  "input": {
         | 
| 7099 7234 | 
             
                    "type": "structure",
         | 
| @@ -7168,7 +7303,7 @@ module.exports={ | |
| 7168 7303 | 
             
                      "Description": {},
         | 
| 7169 7304 | 
             
                      "WorkGroup": {},
         | 
| 7170 7305 | 
             
                      "EngineConfiguration": {
         | 
| 7171 | 
            -
                        "shape": " | 
| 7306 | 
            +
                        "shape": "S52"
         | 
| 7172 7307 | 
             
                      },
         | 
| 7173 7308 | 
             
                      "NotebookVersion": {},
         | 
| 7174 7309 | 
             
                      "SessionIdleTimeoutInMinutes": {
         | 
| @@ -7276,6 +7411,25 @@ module.exports={ | |
| 7276 7411 | 
             
                    "members": {}
         | 
| 7277 7412 | 
             
                  }
         | 
| 7278 7413 | 
             
                },
         | 
| 7414 | 
            +
                "UpdateCapacityReservation": {
         | 
| 7415 | 
            +
                  "input": {
         | 
| 7416 | 
            +
                    "type": "structure",
         | 
| 7417 | 
            +
                    "required": [
         | 
| 7418 | 
            +
                      "TargetDpus",
         | 
| 7419 | 
            +
                      "Name"
         | 
| 7420 | 
            +
                    ],
         | 
| 7421 | 
            +
                    "members": {
         | 
| 7422 | 
            +
                      "TargetDpus": {
         | 
| 7423 | 
            +
                        "type": "integer"
         | 
| 7424 | 
            +
                      },
         | 
| 7425 | 
            +
                      "Name": {}
         | 
| 7426 | 
            +
                    }
         | 
| 7427 | 
            +
                  },
         | 
| 7428 | 
            +
                  "output": {
         | 
| 7429 | 
            +
                    "type": "structure",
         | 
| 7430 | 
            +
                    "members": {}
         | 
| 7431 | 
            +
                  }
         | 
| 7432 | 
            +
                },
         | 
| 7279 7433 | 
             
                "UpdateDataCatalog": {
         | 
| 7280 7434 | 
             
                  "input": {
         | 
| 7281 7435 | 
             
                    "type": "structure",
         | 
| @@ -7288,7 +7442,7 @@ module.exports={ | |
| 7288 7442 | 
             
                      "Type": {},
         | 
| 7289 7443 | 
             
                      "Description": {},
         | 
| 7290 7444 | 
             
                      "Parameters": {
         | 
| 7291 | 
            -
                        "shape": " | 
| 7445 | 
            +
                        "shape": "S1z"
         | 
| 7292 7446 | 
             
                      }
         | 
| 7293 7447 | 
             
                    }
         | 
| 7294 7448 | 
             
                  },
         | 
| @@ -7438,7 +7592,7 @@ module.exports={ | |
| 7438 7592 | 
             
                          "AdditionalConfiguration": {},
         | 
| 7439 7593 | 
             
                          "ExecutionRole": {},
         | 
| 7440 7594 | 
             
                          "CustomerContentEncryptionConfiguration": {
         | 
| 7441 | 
            -
                            "shape": " | 
| 7595 | 
            +
                            "shape": "S2m"
         | 
| 7442 7596 | 
             
                          },
         | 
| 7443 7597 | 
             
                          "EnableMinimumEncryptionConfiguration": {
         | 
| 7444 7598 | 
             
                            "type": "boolean"
         | 
| @@ -7648,11 +7802,6 @@ module.exports={ | |
| 7648 7802 | 
             
                  "type": "list",
         | 
| 7649 7803 | 
             
                  "member": {}
         | 
| 7650 7804 | 
             
                },
         | 
| 7651 | 
            -
                "S1p": {
         | 
| 7652 | 
            -
                  "type": "map",
         | 
| 7653 | 
            -
                  "key": {},
         | 
| 7654 | 
            -
                  "value": {}
         | 
| 7655 | 
            -
                },
         | 
| 7656 7805 | 
             
                "S1s": {
         | 
| 7657 7806 | 
             
                  "type": "list",
         | 
| 7658 7807 | 
             
                  "member": {
         | 
| @@ -7663,7 +7812,12 @@ module.exports={ | |
| 7663 7812 | 
             
                    }
         | 
| 7664 7813 | 
             
                  }
         | 
| 7665 7814 | 
             
                },
         | 
| 7666 | 
            -
                " | 
| 7815 | 
            +
                "S1z": {
         | 
| 7816 | 
            +
                  "type": "map",
         | 
| 7817 | 
            +
                  "key": {},
         | 
| 7818 | 
            +
                  "value": {}
         | 
| 7819 | 
            +
                },
         | 
| 7820 | 
            +
                "S2i": {
         | 
| 7667 7821 | 
             
                  "type": "structure",
         | 
| 7668 7822 | 
             
                  "members": {
         | 
| 7669 7823 | 
             
                    "ResultConfiguration": {
         | 
| @@ -7687,14 +7841,14 @@ module.exports={ | |
| 7687 7841 | 
             
                    "AdditionalConfiguration": {},
         | 
| 7688 7842 | 
             
                    "ExecutionRole": {},
         | 
| 7689 7843 | 
             
                    "CustomerContentEncryptionConfiguration": {
         | 
| 7690 | 
            -
                      "shape": " | 
| 7844 | 
            +
                      "shape": "S2m"
         | 
| 7691 7845 | 
             
                    },
         | 
| 7692 7846 | 
             
                    "EnableMinimumEncryptionConfiguration": {
         | 
| 7693 7847 | 
             
                      "type": "boolean"
         | 
| 7694 7848 | 
             
                    }
         | 
| 7695 7849 | 
             
                  }
         | 
| 7696 7850 | 
             
                },
         | 
| 7697 | 
            -
                " | 
| 7851 | 
            +
                "S2m": {
         | 
| 7698 7852 | 
             
                  "type": "structure",
         | 
| 7699 7853 | 
             
                  "required": [
         | 
| 7700 7854 | 
             
                    "KmsKey"
         | 
| @@ -7703,7 +7857,7 @@ module.exports={ | |
| 7703 7857 | 
             
                    "KmsKey": {}
         | 
| 7704 7858 | 
             
                  }
         | 
| 7705 7859 | 
             
                },
         | 
| 7706 | 
            -
                " | 
| 7860 | 
            +
                "S32": {
         | 
| 7707 7861 | 
             
                  "type": "structure",
         | 
| 7708 7862 | 
             
                  "members": {
         | 
| 7709 7863 | 
             
                    "NotebookId": {},
         | 
| @@ -7718,7 +7872,7 @@ module.exports={ | |
| 7718 7872 | 
             
                    }
         | 
| 7719 7873 | 
             
                  }
         | 
| 7720 7874 | 
             
                },
         | 
| 7721 | 
            -
                " | 
| 7875 | 
            +
                "S39": {
         | 
| 7722 7876 | 
             
                  "type": "structure",
         | 
| 7723 7877 | 
             
                  "members": {
         | 
| 7724 7878 | 
             
                    "SubmissionDateTime": {
         | 
| @@ -7731,7 +7885,7 @@ module.exports={ | |
| 7731 7885 | 
             
                    "StateChangeReason": {}
         | 
| 7732 7886 | 
             
                  }
         | 
| 7733 7887 | 
             
                },
         | 
| 7734 | 
            -
                " | 
| 7888 | 
            +
                "S3b": {
         | 
| 7735 7889 | 
             
                  "type": "structure",
         | 
| 7736 7890 | 
             
                  "members": {
         | 
| 7737 7891 | 
             
                    "DpuExecutionInMillis": {
         | 
| @@ -7740,7 +7894,62 @@ module.exports={ | |
| 7740 7894 | 
             
                    "Progress": {}
         | 
| 7741 7895 | 
             
                  }
         | 
| 7742 7896 | 
             
                },
         | 
| 7743 | 
            -
                " | 
| 7897 | 
            +
                "S3m": {
         | 
| 7898 | 
            +
                  "type": "list",
         | 
| 7899 | 
            +
                  "member": {
         | 
| 7900 | 
            +
                    "type": "structure",
         | 
| 7901 | 
            +
                    "members": {
         | 
| 7902 | 
            +
                      "WorkGroupNames": {
         | 
| 7903 | 
            +
                        "type": "list",
         | 
| 7904 | 
            +
                        "member": {}
         | 
| 7905 | 
            +
                      }
         | 
| 7906 | 
            +
                    }
         | 
| 7907 | 
            +
                  }
         | 
| 7908 | 
            +
                },
         | 
| 7909 | 
            +
                "S3r": {
         | 
| 7910 | 
            +
                  "type": "structure",
         | 
| 7911 | 
            +
                  "required": [
         | 
| 7912 | 
            +
                    "Name",
         | 
| 7913 | 
            +
                    "Status",
         | 
| 7914 | 
            +
                    "TargetDpus",
         | 
| 7915 | 
            +
                    "AllocatedDpus",
         | 
| 7916 | 
            +
                    "CreationTime"
         | 
| 7917 | 
            +
                  ],
         | 
| 7918 | 
            +
                  "members": {
         | 
| 7919 | 
            +
                    "Name": {},
         | 
| 7920 | 
            +
                    "Status": {},
         | 
| 7921 | 
            +
                    "TargetDpus": {
         | 
| 7922 | 
            +
                      "type": "integer"
         | 
| 7923 | 
            +
                    },
         | 
| 7924 | 
            +
                    "AllocatedDpus": {
         | 
| 7925 | 
            +
                      "type": "integer"
         | 
| 7926 | 
            +
                    },
         | 
| 7927 | 
            +
                    "LastAllocation": {
         | 
| 7928 | 
            +
                      "type": "structure",
         | 
| 7929 | 
            +
                      "required": [
         | 
| 7930 | 
            +
                        "Status",
         | 
| 7931 | 
            +
                        "RequestTime"
         | 
| 7932 | 
            +
                      ],
         | 
| 7933 | 
            +
                      "members": {
         | 
| 7934 | 
            +
                        "Status": {},
         | 
| 7935 | 
            +
                        "StatusMessage": {},
         | 
| 7936 | 
            +
                        "RequestTime": {
         | 
| 7937 | 
            +
                          "type": "timestamp"
         | 
| 7938 | 
            +
                        },
         | 
| 7939 | 
            +
                        "RequestCompletionTime": {
         | 
| 7940 | 
            +
                          "type": "timestamp"
         | 
| 7941 | 
            +
                        }
         | 
| 7942 | 
            +
                      }
         | 
| 7943 | 
            +
                    },
         | 
| 7944 | 
            +
                    "LastSuccessfulAllocationTime": {
         | 
| 7945 | 
            +
                      "type": "timestamp"
         | 
| 7946 | 
            +
                    },
         | 
| 7947 | 
            +
                    "CreationTime": {
         | 
| 7948 | 
            +
                      "type": "timestamp"
         | 
| 7949 | 
            +
                    }
         | 
| 7950 | 
            +
                  }
         | 
| 7951 | 
            +
                },
         | 
| 7952 | 
            +
                "S42": {
         | 
| 7744 7953 | 
             
                  "type": "structure",
         | 
| 7745 7954 | 
             
                  "required": [
         | 
| 7746 7955 | 
             
                    "Name"
         | 
| @@ -7749,11 +7958,11 @@ module.exports={ | |
| 7749 7958 | 
             
                    "Name": {},
         | 
| 7750 7959 | 
             
                    "Description": {},
         | 
| 7751 7960 | 
             
                    "Parameters": {
         | 
| 7752 | 
            -
                      "shape": " | 
| 7961 | 
            +
                      "shape": "S1z"
         | 
| 7753 7962 | 
             
                    }
         | 
| 7754 7963 | 
             
                  }
         | 
| 7755 7964 | 
             
                },
         | 
| 7756 | 
            -
                " | 
| 7965 | 
            +
                "S4v": {
         | 
| 7757 7966 | 
             
                  "type": "structure",
         | 
| 7758 7967 | 
             
                  "members": {
         | 
| 7759 7968 | 
             
                    "StageId": {
         | 
| @@ -7776,17 +7985,17 @@ module.exports={ | |
| 7776 7985 | 
             
                      "type": "long"
         | 
| 7777 7986 | 
             
                    },
         | 
| 7778 7987 | 
             
                    "QueryStagePlan": {
         | 
| 7779 | 
            -
                      "shape": " | 
| 7988 | 
            +
                      "shape": "S4w"
         | 
| 7780 7989 | 
             
                    },
         | 
| 7781 7990 | 
             
                    "SubStages": {
         | 
| 7782 7991 | 
             
                      "type": "list",
         | 
| 7783 7992 | 
             
                      "member": {
         | 
| 7784 | 
            -
                        "shape": " | 
| 7993 | 
            +
                        "shape": "S4v"
         | 
| 7785 7994 | 
             
                      }
         | 
| 7786 7995 | 
             
                    }
         | 
| 7787 7996 | 
             
                  }
         | 
| 7788 7997 | 
             
                },
         | 
| 7789 | 
            -
                " | 
| 7998 | 
            +
                "S4w": {
         | 
| 7790 7999 | 
             
                  "type": "structure",
         | 
| 7791 8000 | 
             
                  "members": {
         | 
| 7792 8001 | 
             
                    "Name": {},
         | 
| @@ -7794,7 +8003,7 @@ module.exports={ | |
| 7794 8003 | 
             
                    "Children": {
         | 
| 7795 8004 | 
             
                      "type": "list",
         | 
| 7796 8005 | 
             
                      "member": {
         | 
| 7797 | 
            -
                        "shape": " | 
| 8006 | 
            +
                        "shape": "S4w"
         | 
| 7798 8007 | 
             
                      }
         | 
| 7799 8008 | 
             
                    },
         | 
| 7800 8009 | 
             
                    "RemoteSources": {
         | 
| @@ -7803,7 +8012,7 @@ module.exports={ | |
| 7803 8012 | 
             
                    }
         | 
| 7804 8013 | 
             
                  }
         | 
| 7805 8014 | 
             
                },
         | 
| 7806 | 
            -
                " | 
| 8015 | 
            +
                "S52": {
         | 
| 7807 8016 | 
             
                  "type": "structure",
         | 
| 7808 8017 | 
             
                  "required": [
         | 
| 7809 8018 | 
             
                    "MaxConcurrentDpus"
         | 
| @@ -7819,11 +8028,11 @@ module.exports={ | |
| 7819 8028 | 
             
                      "type": "integer"
         | 
| 7820 8029 | 
             
                    },
         | 
| 7821 8030 | 
             
                    "AdditionalConfigs": {
         | 
| 7822 | 
            -
                      "shape": " | 
| 8031 | 
            +
                      "shape": "S1z"
         | 
| 7823 8032 | 
             
                    }
         | 
| 7824 8033 | 
             
                  }
         | 
| 7825 8034 | 
             
                },
         | 
| 7826 | 
            -
                " | 
| 8035 | 
            +
                "S57": {
         | 
| 7827 8036 | 
             
                  "type": "structure",
         | 
| 7828 8037 | 
             
                  "members": {
         | 
| 7829 8038 | 
             
                    "StartDateTime": {
         | 
| @@ -7842,7 +8051,7 @@ module.exports={ | |
| 7842 8051 | 
             
                    "StateChangeReason": {}
         | 
| 7843 8052 | 
             
                  }
         | 
| 7844 8053 | 
             
                },
         | 
| 7845 | 
            -
                " | 
| 8054 | 
            +
                "S5e": {
         | 
| 7846 8055 | 
             
                  "type": "structure",
         | 
| 7847 8056 | 
             
                  "required": [
         | 
| 7848 8057 | 
             
                    "Name"
         | 
| @@ -7857,17 +8066,17 @@ module.exports={ | |
| 7857 8066 | 
             
                    },
         | 
| 7858 8067 | 
             
                    "TableType": {},
         | 
| 7859 8068 | 
             
                    "Columns": {
         | 
| 7860 | 
            -
                      "shape": " | 
| 8069 | 
            +
                      "shape": "S5g"
         | 
| 7861 8070 | 
             
                    },
         | 
| 7862 8071 | 
             
                    "PartitionKeys": {
         | 
| 7863 | 
            -
                      "shape": " | 
| 8072 | 
            +
                      "shape": "S5g"
         | 
| 7864 8073 | 
             
                    },
         | 
| 7865 8074 | 
             
                    "Parameters": {
         | 
| 7866 | 
            -
                      "shape": " | 
| 8075 | 
            +
                      "shape": "S1z"
         | 
| 7867 8076 | 
             
                    }
         | 
| 7868 8077 | 
             
                  }
         | 
| 7869 8078 | 
             
                },
         | 
| 7870 | 
            -
                " | 
| 8079 | 
            +
                "S5g": {
         | 
| 7871 8080 | 
             
                  "type": "list",
         | 
| 7872 8081 | 
             
                  "member": {
         | 
| 7873 8082 | 
             
                    "type": "structure",
         | 
| @@ -7901,6 +8110,11 @@ module.exports={ | |
| 7901 8110 | 
             
                  "limit_key": "MaxResults",
         | 
| 7902 8111 | 
             
                  "output_token": "NextToken"
         | 
| 7903 8112 | 
             
                },
         | 
| 8113 | 
            +
                "ListCapacityReservations": {
         | 
| 8114 | 
            +
                  "input_token": "NextToken",
         | 
| 8115 | 
            +
                  "limit_key": "MaxResults",
         | 
| 8116 | 
            +
                  "output_token": "NextToken"
         | 
| 8117 | 
            +
                },
         | 
| 7904 8118 | 
             
                "ListDataCatalogs": {
         | 
| 7905 8119 | 
             
                  "input_token": "NextToken",
         | 
| 7906 8120 | 
             
                  "limit_key": "MaxResults",
         | 
| @@ -152121,6 +152335,9 @@ module.exports={ | |
| 152121 152335 | 
             
                      "serviceType": {},
         | 
| 152122 152336 | 
             
                      "tags": {
         | 
| 152123 152337 | 
             
                        "shape": "S2e"
         | 
| 152338 | 
            +
                      },
         | 
| 152339 | 
            +
                      "tlsConfig": {
         | 
| 152340 | 
            +
                        "shape": "S3g"
         | 
| 152124 152341 | 
             
                      }
         | 
| 152125 152342 | 
             
                    }
         | 
| 152126 152343 | 
             
                  },
         | 
| @@ -152148,7 +152365,7 @@ module.exports={ | |
| 152148 152365 | 
             
                        "locationName": "thingGroupName"
         | 
| 152149 152366 | 
             
                      },
         | 
| 152150 152367 | 
             
                      "thingGroupProperties": {
         | 
| 152151 | 
            -
                        "shape": " | 
| 152368 | 
            +
                        "shape": "S3l"
         | 
| 152152 152369 | 
             
                      },
         | 
| 152153 152370 | 
             
                      "indexName": {},
         | 
| 152154 152371 | 
             
                      "queryString": {},
         | 
| @@ -152191,7 +152408,7 @@ module.exports={ | |
| 152191 152408 | 
             
                      },
         | 
| 152192 152409 | 
             
                      "queryString": {},
         | 
| 152193 152410 | 
             
                      "aggregationType": {
         | 
| 152194 | 
            -
                        "shape": " | 
| 152411 | 
            +
                        "shape": "S3z"
         | 
| 152195 152412 | 
             
                      },
         | 
| 152196 152413 | 
             
                      "period": {
         | 
| 152197 152414 | 
             
                        "type": "integer"
         | 
| @@ -152237,17 +152454,17 @@ module.exports={ | |
| 152237 152454 | 
             
                      "document": {},
         | 
| 152238 152455 | 
             
                      "description": {},
         | 
| 152239 152456 | 
             
                      "presignedUrlConfig": {
         | 
| 152240 | 
            -
                        "shape": " | 
| 152457 | 
            +
                        "shape": "S4c"
         | 
| 152241 152458 | 
             
                      },
         | 
| 152242 152459 | 
             
                      "targetSelection": {},
         | 
| 152243 152460 | 
             
                      "jobExecutionsRolloutConfig": {
         | 
| 152244 | 
            -
                        "shape": " | 
| 152461 | 
            +
                        "shape": "S4f"
         | 
| 152245 152462 | 
             
                      },
         | 
| 152246 152463 | 
             
                      "abortConfig": {
         | 
| 152247 | 
            -
                        "shape": " | 
| 152464 | 
            +
                        "shape": "S4m"
         | 
| 152248 152465 | 
             
                      },
         | 
| 152249 152466 | 
             
                      "timeoutConfig": {
         | 
| 152250 | 
            -
                        "shape": " | 
| 152467 | 
            +
                        "shape": "S4t"
         | 
| 152251 152468 | 
             
                      },
         | 
| 152252 152469 | 
             
                      "tags": {
         | 
| 152253 152470 | 
             
                        "shape": "S2e"
         | 
| @@ -152255,13 +152472,13 @@ module.exports={ | |
| 152255 152472 | 
             
                      "namespaceId": {},
         | 
| 152256 152473 | 
             
                      "jobTemplateArn": {},
         | 
| 152257 152474 | 
             
                      "jobExecutionsRetryConfig": {
         | 
| 152258 | 
            -
                        "shape": " | 
| 152475 | 
            +
                        "shape": "S4w"
         | 
| 152259 152476 | 
             
                      },
         | 
| 152260 152477 | 
             
                      "documentParameters": {
         | 
| 152261 | 
            -
                        "shape": " | 
| 152478 | 
            +
                        "shape": "S51"
         | 
| 152262 152479 | 
             
                      },
         | 
| 152263 152480 | 
             
                      "schedulingConfig": {
         | 
| 152264 | 
            -
                        "shape": " | 
| 152481 | 
            +
                        "shape": "S54"
         | 
| 152265 152482 | 
             
                      }
         | 
| 152266 152483 | 
             
                    }
         | 
| 152267 152484 | 
             
                  },
         | 
| @@ -152295,25 +152512,25 @@ module.exports={ | |
| 152295 152512 | 
             
                      "document": {},
         | 
| 152296 152513 | 
             
                      "description": {},
         | 
| 152297 152514 | 
             
                      "presignedUrlConfig": {
         | 
| 152298 | 
            -
                        "shape": " | 
| 152515 | 
            +
                        "shape": "S4c"
         | 
| 152299 152516 | 
             
                      },
         | 
| 152300 152517 | 
             
                      "jobExecutionsRolloutConfig": {
         | 
| 152301 | 
            -
                        "shape": " | 
| 152518 | 
            +
                        "shape": "S4f"
         | 
| 152302 152519 | 
             
                      },
         | 
| 152303 152520 | 
             
                      "abortConfig": {
         | 
| 152304 | 
            -
                        "shape": " | 
| 152521 | 
            +
                        "shape": "S4m"
         | 
| 152305 152522 | 
             
                      },
         | 
| 152306 152523 | 
             
                      "timeoutConfig": {
         | 
| 152307 | 
            -
                        "shape": " | 
| 152524 | 
            +
                        "shape": "S4t"
         | 
| 152308 152525 | 
             
                      },
         | 
| 152309 152526 | 
             
                      "tags": {
         | 
| 152310 152527 | 
             
                        "shape": "S2e"
         | 
| 152311 152528 | 
             
                      },
         | 
| 152312 152529 | 
             
                      "jobExecutionsRetryConfig": {
         | 
| 152313 | 
            -
                        "shape": " | 
| 152530 | 
            +
                        "shape": "S4w"
         | 
| 152314 152531 | 
             
                      },
         | 
| 152315 152532 | 
             
                      "maintenanceWindows": {
         | 
| 152316 | 
            -
                        "shape": " | 
| 152533 | 
            +
                        "shape": "S57"
         | 
| 152317 152534 | 
             
                      }
         | 
| 152318 152535 | 
             
                    }
         | 
| 152319 152536 | 
             
                  },
         | 
| @@ -152346,7 +152563,7 @@ module.exports={ | |
| 152346 152563 | 
             
                      "certificateId": {},
         | 
| 152347 152564 | 
             
                      "certificatePem": {},
         | 
| 152348 152565 | 
             
                      "keyPair": {
         | 
| 152349 | 
            -
                        "shape": " | 
| 152566 | 
            +
                        "shape": "S5h"
         | 
| 152350 152567 | 
             
                      }
         | 
| 152351 152568 | 
             
                    }
         | 
| 152352 152569 | 
             
                  }
         | 
| @@ -152369,7 +152586,7 @@ module.exports={ | |
| 152369 152586 | 
             
                      },
         | 
| 152370 152587 | 
             
                      "roleArn": {},
         | 
| 152371 152588 | 
             
                      "actionParams": {
         | 
| 152372 | 
            -
                        "shape": " | 
| 152589 | 
            +
                        "shape": "S5m"
         | 
| 152373 152590 | 
             
                      },
         | 
| 152374 152591 | 
             
                      "tags": {
         | 
| 152375 152592 | 
             
                        "shape": "S2e"
         | 
| @@ -152403,17 +152620,17 @@ module.exports={ | |
| 152403 152620 | 
             
                      },
         | 
| 152404 152621 | 
             
                      "description": {},
         | 
| 152405 152622 | 
             
                      "targets": {
         | 
| 152406 | 
            -
                        "shape": " | 
| 152623 | 
            +
                        "shape": "S66"
         | 
| 152407 152624 | 
             
                      },
         | 
| 152408 152625 | 
             
                      "protocols": {
         | 
| 152409 | 
            -
                        "shape": " | 
| 152626 | 
            +
                        "shape": "S68"
         | 
| 152410 152627 | 
             
                      },
         | 
| 152411 152628 | 
             
                      "targetSelection": {},
         | 
| 152412 152629 | 
             
                      "awsJobExecutionsRolloutConfig": {
         | 
| 152413 | 
            -
                        "shape": " | 
| 152630 | 
            +
                        "shape": "S6a"
         | 
| 152414 152631 | 
             
                      },
         | 
| 152415 152632 | 
             
                      "awsJobPresignedUrlConfig": {
         | 
| 152416 | 
            -
                        "shape": " | 
| 152633 | 
            +
                        "shape": "S6h"
         | 
| 152417 152634 | 
             
                      },
         | 
| 152418 152635 | 
             
                      "awsJobAbortConfig": {
         | 
| 152419 152636 | 
             
                        "type": "structure",
         | 
| @@ -152454,11 +152671,11 @@ module.exports={ | |
| 152454 152671 | 
             
                        }
         | 
| 152455 152672 | 
             
                      },
         | 
| 152456 152673 | 
             
                      "files": {
         | 
| 152457 | 
            -
                        "shape": " | 
| 152674 | 
            +
                        "shape": "S6s"
         | 
| 152458 152675 | 
             
                      },
         | 
| 152459 152676 | 
             
                      "roleArn": {},
         | 
| 152460 152677 | 
             
                      "additionalParameters": {
         | 
| 152461 | 
            -
                        "shape": " | 
| 152678 | 
            +
                        "shape": "S7q"
         | 
| 152462 152679 | 
             
                      },
         | 
| 152463 152680 | 
             
                      "tags": {
         | 
| 152464 152681 | 
             
                        "shape": "S2e"
         | 
| @@ -152564,7 +152781,7 @@ module.exports={ | |
| 152564 152781 | 
             
                      "certificateId": {},
         | 
| 152565 152782 | 
             
                      "certificatePem": {},
         | 
| 152566 152783 | 
             
                      "keyPair": {
         | 
| 152567 | 
            -
                        "shape": " | 
| 152784 | 
            +
                        "shape": "S5h"
         | 
| 152568 152785 | 
             
                      },
         | 
| 152569 152786 | 
             
                      "expiration": {
         | 
| 152570 152787 | 
             
                        "type": "timestamp"
         | 
| @@ -152592,7 +152809,7 @@ module.exports={ | |
| 152592 152809 | 
             
                      },
         | 
| 152593 152810 | 
             
                      "provisioningRoleArn": {},
         | 
| 152594 152811 | 
             
                      "preProvisioningHook": {
         | 
| 152595 | 
            -
                        "shape": " | 
| 152812 | 
            +
                        "shape": "S8c"
         | 
| 152596 152813 | 
             
                      },
         | 
| 152597 152814 | 
             
                      "tags": {
         | 
| 152598 152815 | 
             
                        "shape": "S2e"
         | 
| @@ -152696,7 +152913,7 @@ module.exports={ | |
| 152696 152913 | 
             
                      "dayOfMonth": {},
         | 
| 152697 152914 | 
             
                      "dayOfWeek": {},
         | 
| 152698 152915 | 
             
                      "targetCheckNames": {
         | 
| 152699 | 
            -
                        "shape": " | 
| 152916 | 
            +
                        "shape": "S8s"
         | 
| 152700 152917 | 
             
                      },
         | 
| 152701 152918 | 
             
                      "scheduledAuditName": {
         | 
| 152702 152919 | 
             
                        "location": "uri",
         | 
| @@ -152730,18 +152947,18 @@ module.exports={ | |
| 152730 152947 | 
             
                      },
         | 
| 152731 152948 | 
             
                      "securityProfileDescription": {},
         | 
| 152732 152949 | 
             
                      "behaviors": {
         | 
| 152733 | 
            -
                        "shape": " | 
| 152950 | 
            +
                        "shape": "S8y"
         | 
| 152734 152951 | 
             
                      },
         | 
| 152735 152952 | 
             
                      "alertTargets": {
         | 
| 152736 | 
            -
                        "shape": " | 
| 152953 | 
            +
                        "shape": "S9o"
         | 
| 152737 152954 | 
             
                      },
         | 
| 152738 152955 | 
             
                      "additionalMetricsToRetain": {
         | 
| 152739 | 
            -
                        "shape": " | 
| 152956 | 
            +
                        "shape": "S9s",
         | 
| 152740 152957 | 
             
                        "deprecated": true,
         | 
| 152741 152958 | 
             
                        "deprecatedMessage": "Use additionalMetricsToRetainV2."
         | 
| 152742 152959 | 
             
                      },
         | 
| 152743 152960 | 
             
                      "additionalMetricsToRetainV2": {
         | 
| 152744 | 
            -
                        "shape": " | 
| 152961 | 
            +
                        "shape": "S9t"
         | 
| 152745 152962 | 
             
                      },
         | 
| 152746 152963 | 
             
                      "tags": {
         | 
| 152747 152964 | 
             
                        "shape": "S2e"
         | 
| @@ -152774,7 +152991,7 @@ module.exports={ | |
| 152774 152991 | 
             
                      },
         | 
| 152775 152992 | 
             
                      "description": {},
         | 
| 152776 152993 | 
             
                      "files": {
         | 
| 152777 | 
            -
                        "shape": " | 
| 152994 | 
            +
                        "shape": "S9z"
         | 
| 152778 152995 | 
             
                      },
         | 
| 152779 152996 | 
             
                      "roleArn": {},
         | 
| 152780 152997 | 
             
                      "tags": {
         | 
| @@ -152810,7 +153027,7 @@ module.exports={ | |
| 152810 153027 | 
             
                      },
         | 
| 152811 153028 | 
             
                      "thingTypeName": {},
         | 
| 152812 153029 | 
             
                      "attributePayload": {
         | 
| 152813 | 
            -
                        "shape": " | 
| 153030 | 
            +
                        "shape": "S3n"
         | 
| 152814 153031 | 
             
                      },
         | 
| 152815 153032 | 
             
                      "billingGroupName": {}
         | 
| 152816 153033 | 
             
                    }
         | 
| @@ -152840,7 +153057,7 @@ module.exports={ | |
| 152840 153057 | 
             
                      },
         | 
| 152841 153058 | 
             
                      "parentGroupName": {},
         | 
| 152842 153059 | 
             
                      "thingGroupProperties": {
         | 
| 152843 | 
            -
                        "shape": " | 
| 153060 | 
            +
                        "shape": "S3l"
         | 
| 152844 153061 | 
             
                      },
         | 
| 152845 153062 | 
             
                      "tags": {
         | 
| 152846 153063 | 
             
                        "shape": "S2e"
         | 
| @@ -152871,7 +153088,7 @@ module.exports={ | |
| 152871 153088 | 
             
                        "locationName": "thingTypeName"
         | 
| 152872 153089 | 
             
                      },
         | 
| 152873 153090 | 
             
                      "thingTypeProperties": {
         | 
| 152874 | 
            -
                        "shape": " | 
| 153091 | 
            +
                        "shape": "Sab"
         | 
| 152875 153092 | 
             
                      },
         | 
| 152876 153093 | 
             
                      "tags": {
         | 
| 152877 153094 | 
             
                        "shape": "S2e"
         | 
| @@ -152903,7 +153120,7 @@ module.exports={ | |
| 152903 153120 | 
             
                        "locationName": "ruleName"
         | 
| 152904 153121 | 
             
                      },
         | 
| 152905 153122 | 
             
                      "topicRulePayload": {
         | 
| 152906 | 
            -
                        "shape": " | 
| 153123 | 
            +
                        "shape": "Saj"
         | 
| 152907 153124 | 
             
                      },
         | 
| 152908 153125 | 
             
                      "tags": {
         | 
| 152909 153126 | 
             
                        "location": "header",
         | 
| @@ -152944,10 +153161,10 @@ module.exports={ | |
| 152944 153161 | 
             
                            ],
         | 
| 152945 153162 | 
             
                            "members": {
         | 
| 152946 153163 | 
             
                              "subnetIds": {
         | 
| 152947 | 
            -
                                "shape": " | 
| 153164 | 
            +
                                "shape": "Sdw"
         | 
| 152948 153165 | 
             
                              },
         | 
| 152949 153166 | 
             
                              "securityGroups": {
         | 
| 152950 | 
            -
                                "shape": " | 
| 153167 | 
            +
                                "shape": "Sdy"
         | 
| 152951 153168 | 
             
                              },
         | 
| 152952 153169 | 
             
                              "vpcId": {},
         | 
| 152953 153170 | 
             
                              "roleArn": {}
         | 
| @@ -152961,7 +153178,7 @@ module.exports={ | |
| 152961 153178 | 
             
                    "type": "structure",
         | 
| 152962 153179 | 
             
                    "members": {
         | 
| 152963 153180 | 
             
                      "topicRuleDestination": {
         | 
| 152964 | 
            -
                        "shape": " | 
| 153181 | 
            +
                        "shape": "Se2"
         | 
| 152965 153182 | 
             
                      }
         | 
| 152966 153183 | 
             
                    }
         | 
| 152967 153184 | 
             
                  }
         | 
| @@ -153730,10 +153947,10 @@ module.exports={ | |
| 153730 153947 | 
             
                    "members": {
         | 
| 153731 153948 | 
             
                      "roleArn": {},
         | 
| 153732 153949 | 
             
                      "auditNotificationTargetConfigurations": {
         | 
| 153733 | 
            -
                        "shape": " | 
| 153950 | 
            +
                        "shape": "Sg2"
         | 
| 153734 153951 | 
             
                      },
         | 
| 153735 153952 | 
             
                      "auditCheckConfigurations": {
         | 
| 153736 | 
            -
                        "shape": " | 
| 153953 | 
            +
                        "shape": "Sg5"
         | 
| 153737 153954 | 
             
                      }
         | 
| 153738 153955 | 
             
                    }
         | 
| 153739 153956 | 
             
                  }
         | 
| @@ -153759,7 +153976,7 @@ module.exports={ | |
| 153759 153976 | 
             
                    "type": "structure",
         | 
| 153760 153977 | 
             
                    "members": {
         | 
| 153761 153978 | 
             
                      "finding": {
         | 
| 153762 | 
            -
                        "shape": " | 
| 153979 | 
            +
                        "shape": "Sga"
         | 
| 153763 153980 | 
             
                      }
         | 
| 153764 153981 | 
             
                    }
         | 
| 153765 153982 | 
             
                  }
         | 
| @@ -153816,13 +154033,13 @@ module.exports={ | |
| 153816 154033 | 
             
                        }
         | 
| 153817 154034 | 
             
                      },
         | 
| 153818 154035 | 
             
                      "target": {
         | 
| 153819 | 
            -
                        "shape": " | 
| 154036 | 
            +
                        "shape": "Sgu"
         | 
| 153820 154037 | 
             
                      },
         | 
| 153821 154038 | 
             
                      "auditCheckToActionsMapping": {
         | 
| 153822 | 
            -
                        "shape": " | 
| 154039 | 
            +
                        "shape": "Sgy"
         | 
| 153823 154040 | 
             
                      },
         | 
| 153824 154041 | 
             
                      "actionsDefinition": {
         | 
| 153825 | 
            -
                        "shape": " | 
| 154042 | 
            +
                        "shape": "Sh0"
         | 
| 153826 154043 | 
             
                      }
         | 
| 153827 154044 | 
             
                    }
         | 
| 153828 154045 | 
             
                  }
         | 
| @@ -153961,7 +154178,7 @@ module.exports={ | |
| 153961 154178 | 
             
                    "type": "structure",
         | 
| 153962 154179 | 
             
                    "members": {
         | 
| 153963 154180 | 
             
                      "authorizerDescription": {
         | 
| 153964 | 
            -
                        "shape": " | 
| 154181 | 
            +
                        "shape": "Shr"
         | 
| 153965 154182 | 
             
                      }
         | 
| 153966 154183 | 
             
                    }
         | 
| 153967 154184 | 
             
                  }
         | 
| @@ -154046,13 +154263,13 @@ module.exports={ | |
| 154046 154263 | 
             
                          },
         | 
| 154047 154264 | 
             
                          "generationId": {},
         | 
| 154048 154265 | 
             
                          "validity": {
         | 
| 154049 | 
            -
                            "shape": " | 
| 154266 | 
            +
                            "shape": "Si4"
         | 
| 154050 154267 | 
             
                          },
         | 
| 154051 154268 | 
             
                          "certificateMode": {}
         | 
| 154052 154269 | 
             
                        }
         | 
| 154053 154270 | 
             
                      },
         | 
| 154054 154271 | 
             
                      "registrationConfig": {
         | 
| 154055 | 
            -
                        "shape": " | 
| 154272 | 
            +
                        "shape": "Si6"
         | 
| 154056 154273 | 
             
                      }
         | 
| 154057 154274 | 
             
                    }
         | 
| 154058 154275 | 
             
                  }
         | 
| @@ -154114,7 +154331,7 @@ module.exports={ | |
| 154114 154331 | 
             
                          },
         | 
| 154115 154332 | 
             
                          "generationId": {},
         | 
| 154116 154333 | 
             
                          "validity": {
         | 
| 154117 | 
            -
                            "shape": " | 
| 154334 | 
            +
                            "shape": "Si4"
         | 
| 154118 154335 | 
             
                          },
         | 
| 154119 154336 | 
             
                          "certificateMode": {}
         | 
| 154120 154337 | 
             
                        }
         | 
| @@ -154168,7 +154385,7 @@ module.exports={ | |
| 154168 154385 | 
             
                    "type": "structure",
         | 
| 154169 154386 | 
             
                    "members": {
         | 
| 154170 154387 | 
             
                      "authorizerDescription": {
         | 
| 154171 | 
            -
                        "shape": " | 
| 154388 | 
            +
                        "shape": "Shr"
         | 
| 154172 154389 | 
             
                      }
         | 
| 154173 154390 | 
             
                    }
         | 
| 154174 154391 | 
             
                  }
         | 
| @@ -154194,7 +154411,7 @@ module.exports={ | |
| 154194 154411 | 
             
                    "type": "structure",
         | 
| 154195 154412 | 
             
                    "members": {
         | 
| 154196 154413 | 
             
                      "taskSummary": {
         | 
| 154197 | 
            -
                        "shape": " | 
| 154414 | 
            +
                        "shape": "Sij"
         | 
| 154198 154415 | 
             
                      }
         | 
| 154199 154416 | 
             
                    }
         | 
| 154200 154417 | 
             
                  }
         | 
| @@ -154276,6 +154493,9 @@ module.exports={ | |
| 154276 154493 | 
             
                      "domainType": {},
         | 
| 154277 154494 | 
             
                      "lastStatusChangeDate": {
         | 
| 154278 154495 | 
             
                        "type": "timestamp"
         | 
| 154496 | 
            +
                      },
         | 
| 154497 | 
            +
                      "tlsConfig": {
         | 
| 154498 | 
            +
                        "shape": "S3g"
         | 
| 154279 154499 | 
             
                      }
         | 
| 154280 154500 | 
             
                    }
         | 
| 154281 154501 | 
             
                  }
         | 
| @@ -154314,7 +154534,7 @@ module.exports={ | |
| 154314 154534 | 
             
                    "type": "structure",
         | 
| 154315 154535 | 
             
                    "members": {
         | 
| 154316 154536 | 
             
                      "eventConfigurations": {
         | 
| 154317 | 
            -
                        "shape": " | 
| 154537 | 
            +
                        "shape": "Sj9"
         | 
| 154318 154538 | 
             
                      },
         | 
| 154319 154539 | 
             
                      "creationDate": {
         | 
| 154320 154540 | 
             
                        "type": "timestamp"
         | 
| @@ -154348,7 +154568,7 @@ module.exports={ | |
| 154348 154568 | 
             
                      "metricName": {},
         | 
| 154349 154569 | 
             
                      "queryString": {},
         | 
| 154350 154570 | 
             
                      "aggregationType": {
         | 
| 154351 | 
            -
                        "shape": " | 
| 154571 | 
            +
                        "shape": "S3z"
         | 
| 154352 154572 | 
             
                      },
         | 
| 154353 154573 | 
             
                      "period": {
         | 
| 154354 154574 | 
             
                        "type": "integer"
         | 
| @@ -154435,13 +154655,13 @@ module.exports={ | |
| 154435 154655 | 
             
                          },
         | 
| 154436 154656 | 
             
                          "description": {},
         | 
| 154437 154657 | 
             
                          "presignedUrlConfig": {
         | 
| 154438 | 
            -
                            "shape": " | 
| 154658 | 
            +
                            "shape": "S4c"
         | 
| 154439 154659 | 
             
                          },
         | 
| 154440 154660 | 
             
                          "jobExecutionsRolloutConfig": {
         | 
| 154441 | 
            -
                            "shape": " | 
| 154661 | 
            +
                            "shape": "S4f"
         | 
| 154442 154662 | 
             
                          },
         | 
| 154443 154663 | 
             
                          "abortConfig": {
         | 
| 154444 | 
            -
                            "shape": " | 
| 154664 | 
            +
                            "shape": "S4m"
         | 
| 154445 154665 | 
             
                          },
         | 
| 154446 154666 | 
             
                          "createdAt": {
         | 
| 154447 154667 | 
             
                            "type": "timestamp"
         | 
| @@ -154486,21 +154706,21 @@ module.exports={ | |
| 154486 154706 | 
             
                            }
         | 
| 154487 154707 | 
             
                          },
         | 
| 154488 154708 | 
             
                          "timeoutConfig": {
         | 
| 154489 | 
            -
                            "shape": " | 
| 154709 | 
            +
                            "shape": "S4t"
         | 
| 154490 154710 | 
             
                          },
         | 
| 154491 154711 | 
             
                          "namespaceId": {},
         | 
| 154492 154712 | 
             
                          "jobTemplateArn": {},
         | 
| 154493 154713 | 
             
                          "jobExecutionsRetryConfig": {
         | 
| 154494 | 
            -
                            "shape": " | 
| 154714 | 
            +
                            "shape": "S4w"
         | 
| 154495 154715 | 
             
                          },
         | 
| 154496 154716 | 
             
                          "documentParameters": {
         | 
| 154497 | 
            -
                            "shape": " | 
| 154717 | 
            +
                            "shape": "S51"
         | 
| 154498 154718 | 
             
                          },
         | 
| 154499 154719 | 
             
                          "isConcurrent": {
         | 
| 154500 154720 | 
             
                            "type": "boolean"
         | 
| 154501 154721 | 
             
                          },
         | 
| 154502 154722 | 
             
                          "schedulingConfig": {
         | 
| 154503 | 
            -
                            "shape": " | 
| 154723 | 
            +
                            "shape": "S54"
         | 
| 154504 154724 | 
             
                          },
         | 
| 154505 154725 | 
             
                          "scheduledJobRollouts": {
         | 
| 154506 154726 | 
             
                            "type": "list",
         | 
| @@ -154615,22 +154835,22 @@ module.exports={ | |
| 154615 154835 | 
             
                        "type": "timestamp"
         | 
| 154616 154836 | 
             
                      },
         | 
| 154617 154837 | 
             
                      "presignedUrlConfig": {
         | 
| 154618 | 
            -
                        "shape": " | 
| 154838 | 
            +
                        "shape": "S4c"
         | 
| 154619 154839 | 
             
                      },
         | 
| 154620 154840 | 
             
                      "jobExecutionsRolloutConfig": {
         | 
| 154621 | 
            -
                        "shape": " | 
| 154841 | 
            +
                        "shape": "S4f"
         | 
| 154622 154842 | 
             
                      },
         | 
| 154623 154843 | 
             
                      "abortConfig": {
         | 
| 154624 | 
            -
                        "shape": " | 
| 154844 | 
            +
                        "shape": "S4m"
         | 
| 154625 154845 | 
             
                      },
         | 
| 154626 154846 | 
             
                      "timeoutConfig": {
         | 
| 154627 | 
            -
                        "shape": " | 
| 154847 | 
            +
                        "shape": "S4t"
         | 
| 154628 154848 | 
             
                      },
         | 
| 154629 154849 | 
             
                      "jobExecutionsRetryConfig": {
         | 
| 154630 | 
            -
                        "shape": " | 
| 154850 | 
            +
                        "shape": "S4w"
         | 
| 154631 154851 | 
             
                      },
         | 
| 154632 154852 | 
             
                      "maintenanceWindows": {
         | 
| 154633 | 
            -
                        "shape": " | 
| 154853 | 
            +
                        "shape": "S57"
         | 
| 154634 154854 | 
             
                      }
         | 
| 154635 154855 | 
             
                    }
         | 
| 154636 154856 | 
             
                  }
         | 
| @@ -154664,7 +154884,7 @@ module.exports={ | |
| 154664 154884 | 
             
                      "description": {},
         | 
| 154665 154885 | 
             
                      "templateVersion": {},
         | 
| 154666 154886 | 
             
                      "environments": {
         | 
| 154667 | 
            -
                        "shape": " | 
| 154887 | 
            +
                        "shape": "Skf"
         | 
| 154668 154888 | 
             
                      },
         | 
| 154669 154889 | 
             
                      "documentParameters": {
         | 
| 154670 154890 | 
             
                        "type": "list",
         | 
| @@ -154711,7 +154931,7 @@ module.exports={ | |
| 154711 154931 | 
             
                      "actionId": {},
         | 
| 154712 154932 | 
             
                      "roleArn": {},
         | 
| 154713 154933 | 
             
                      "actionParams": {
         | 
| 154714 | 
            -
                        "shape": " | 
| 154934 | 
            +
                        "shape": "S5m"
         | 
| 154715 154935 | 
             
                      },
         | 
| 154716 154936 | 
             
                      "creationDate": {
         | 
| 154717 154937 | 
             
                        "type": "timestamp"
         | 
| @@ -154760,7 +154980,7 @@ module.exports={ | |
| 154760 154980 | 
             
                      },
         | 
| 154761 154981 | 
             
                      "provisioningRoleArn": {},
         | 
| 154762 154982 | 
             
                      "preProvisioningHook": {
         | 
| 154763 | 
            -
                        "shape": " | 
| 154983 | 
            +
                        "shape": "S8c"
         | 
| 154764 154984 | 
             
                      },
         | 
| 154765 154985 | 
             
                      "type": {}
         | 
| 154766 154986 | 
             
                    }
         | 
| @@ -154870,7 +155090,7 @@ module.exports={ | |
| 154870 155090 | 
             
                      "dayOfMonth": {},
         | 
| 154871 155091 | 
             
                      "dayOfWeek": {},
         | 
| 154872 155092 | 
             
                      "targetCheckNames": {
         | 
| 154873 | 
            -
                        "shape": " | 
| 155093 | 
            +
                        "shape": "S8s"
         | 
| 154874 155094 | 
             
                      },
         | 
| 154875 155095 | 
             
                      "scheduledAuditName": {},
         | 
| 154876 155096 | 
             
                      "scheduledAuditArn": {}
         | 
| @@ -154901,18 +155121,18 @@ module.exports={ | |
| 154901 155121 | 
             
                      "securityProfileArn": {},
         | 
| 154902 155122 | 
             
                      "securityProfileDescription": {},
         | 
| 154903 155123 | 
             
                      "behaviors": {
         | 
| 154904 | 
            -
                        "shape": " | 
| 155124 | 
            +
                        "shape": "S8y"
         | 
| 154905 155125 | 
             
                      },
         | 
| 154906 155126 | 
             
                      "alertTargets": {
         | 
| 154907 | 
            -
                        "shape": " | 
| 155127 | 
            +
                        "shape": "S9o"
         | 
| 154908 155128 | 
             
                      },
         | 
| 154909 155129 | 
             
                      "additionalMetricsToRetain": {
         | 
| 154910 | 
            -
                        "shape": " | 
| 155130 | 
            +
                        "shape": "S9s",
         | 
| 154911 155131 | 
             
                        "deprecated": true,
         | 
| 154912 155132 | 
             
                        "deprecatedMessage": "Use additionalMetricsToRetainV2."
         | 
| 154913 155133 | 
             
                      },
         | 
| 154914 155134 | 
             
                      "additionalMetricsToRetainV2": {
         | 
| 154915 | 
            -
                        "shape": " | 
| 155135 | 
            +
                        "shape": "S9t"
         | 
| 154916 155136 | 
             
                      },
         | 
| 154917 155137 | 
             
                      "version": {
         | 
| 154918 155138 | 
             
                        "type": "long"
         | 
| @@ -154956,7 +155176,7 @@ module.exports={ | |
| 154956 155176 | 
             
                          },
         | 
| 154957 155177 | 
             
                          "description": {},
         | 
| 154958 155178 | 
             
                          "files": {
         | 
| 154959 | 
            -
                            "shape": " | 
| 155179 | 
            +
                            "shape": "S9z"
         | 
| 154960 155180 | 
             
                          },
         | 
| 154961 155181 | 
             
                          "createdAt": {
         | 
| 154962 155182 | 
             
                            "type": "timestamp"
         | 
| @@ -154996,7 +155216,7 @@ module.exports={ | |
| 154996 155216 | 
             
                      "thingArn": {},
         | 
| 154997 155217 | 
             
                      "thingTypeName": {},
         | 
| 154998 155218 | 
             
                      "attributes": {
         | 
| 154999 | 
            -
                        "shape": " | 
| 155219 | 
            +
                        "shape": "S3o"
         | 
| 155000 155220 | 
             
                      },
         | 
| 155001 155221 | 
             
                      "version": {
         | 
| 155002 155222 | 
             
                        "type": "long"
         | 
| @@ -155032,14 +155252,14 @@ module.exports={ | |
| 155032 155252 | 
             
                        "type": "long"
         | 
| 155033 155253 | 
             
                      },
         | 
| 155034 155254 | 
             
                      "thingGroupProperties": {
         | 
| 155035 | 
            -
                        "shape": " | 
| 155255 | 
            +
                        "shape": "S3l"
         | 
| 155036 155256 | 
             
                      },
         | 
| 155037 155257 | 
             
                      "thingGroupMetadata": {
         | 
| 155038 155258 | 
             
                        "type": "structure",
         | 
| 155039 155259 | 
             
                        "members": {
         | 
| 155040 155260 | 
             
                          "parentGroupName": {},
         | 
| 155041 155261 | 
             
                          "rootToParentThingGroups": {
         | 
| 155042 | 
            -
                            "shape": " | 
| 155262 | 
            +
                            "shape": "Sl8"
         | 
| 155043 155263 | 
             
                          },
         | 
| 155044 155264 | 
             
                          "creationDate": {
         | 
| 155045 155265 | 
             
                            "type": "timestamp"
         | 
| @@ -155122,10 +155342,10 @@ module.exports={ | |
| 155122 155342 | 
             
                      "thingTypeId": {},
         | 
| 155123 155343 | 
             
                      "thingTypeArn": {},
         | 
| 155124 155344 | 
             
                      "thingTypeProperties": {
         | 
| 155125 | 
            -
                        "shape": " | 
| 155345 | 
            +
                        "shape": "Sab"
         | 
| 155126 155346 | 
             
                      },
         | 
| 155127 155347 | 
             
                      "thingTypeMetadata": {
         | 
| 155128 | 
            -
                        "shape": " | 
| 155348 | 
            +
                        "shape": "Sll"
         | 
| 155129 155349 | 
             
                      }
         | 
| 155130 155350 | 
             
                    }
         | 
| 155131 155351 | 
             
                  }
         | 
| @@ -155433,10 +155653,10 @@ module.exports={ | |
| 155433 155653 | 
             
                    "type": "structure",
         | 
| 155434 155654 | 
             
                    "members": {
         | 
| 155435 155655 | 
             
                      "thingIndexingConfiguration": {
         | 
| 155436 | 
            -
                        "shape": " | 
| 155656 | 
            +
                        "shape": "Smk"
         | 
| 155437 155657 | 
             
                      },
         | 
| 155438 155658 | 
             
                      "thingGroupIndexingConfiguration": {
         | 
| 155439 | 
            -
                        "shape": " | 
| 155659 | 
            +
                        "shape": "Smw"
         | 
| 155440 155660 | 
             
                      }
         | 
| 155441 155661 | 
             
                    }
         | 
| 155442 155662 | 
             
                  }
         | 
| @@ -155515,20 +155735,20 @@ module.exports={ | |
| 155515 155735 | 
             
                          },
         | 
| 155516 155736 | 
             
                          "description": {},
         | 
| 155517 155737 | 
             
                          "targets": {
         | 
| 155518 | 
            -
                            "shape": " | 
| 155738 | 
            +
                            "shape": "S66"
         | 
| 155519 155739 | 
             
                          },
         | 
| 155520 155740 | 
             
                          "protocols": {
         | 
| 155521 | 
            -
                            "shape": " | 
| 155741 | 
            +
                            "shape": "S68"
         | 
| 155522 155742 | 
             
                          },
         | 
| 155523 155743 | 
             
                          "awsJobExecutionsRolloutConfig": {
         | 
| 155524 | 
            -
                            "shape": " | 
| 155744 | 
            +
                            "shape": "S6a"
         | 
| 155525 155745 | 
             
                          },
         | 
| 155526 155746 | 
             
                          "awsJobPresignedUrlConfig": {
         | 
| 155527 | 
            -
                            "shape": " | 
| 155747 | 
            +
                            "shape": "S6h"
         | 
| 155528 155748 | 
             
                          },
         | 
| 155529 155749 | 
             
                          "targetSelection": {},
         | 
| 155530 155750 | 
             
                          "otaUpdateFiles": {
         | 
| 155531 | 
            -
                            "shape": " | 
| 155751 | 
            +
                            "shape": "S6s"
         | 
| 155532 155752 | 
             
                          },
         | 
| 155533 155753 | 
             
                          "otaUpdateStatus": {},
         | 
| 155534 155754 | 
             
                          "awsIotJobId": {},
         | 
| @@ -155541,7 +155761,7 @@ module.exports={ | |
| 155541 155761 | 
             
                            }
         | 
| 155542 155762 | 
             
                          },
         | 
| 155543 155763 | 
             
                          "additionalParameters": {
         | 
| 155544 | 
            -
                            "shape": " | 
| 155764 | 
            +
                            "shape": "S7q"
         | 
| 155545 155765 | 
             
                          }
         | 
| 155546 155766 | 
             
                        }
         | 
| 155547 155767 | 
             
                      }
         | 
| @@ -155764,14 +155984,14 @@ module.exports={ | |
| 155764 155984 | 
             
                            "type": "timestamp"
         | 
| 155765 155985 | 
             
                          },
         | 
| 155766 155986 | 
             
                          "actions": {
         | 
| 155767 | 
            -
                            "shape": " | 
| 155987 | 
            +
                            "shape": "Sam"
         | 
| 155768 155988 | 
             
                          },
         | 
| 155769 155989 | 
             
                          "ruleDisabled": {
         | 
| 155770 155990 | 
             
                            "type": "boolean"
         | 
| 155771 155991 | 
             
                          },
         | 
| 155772 155992 | 
             
                          "awsIotSqlVersion": {},
         | 
| 155773 155993 | 
             
                          "errorAction": {
         | 
| 155774 | 
            -
                            "shape": " | 
| 155994 | 
            +
                            "shape": "San"
         | 
| 155775 155995 | 
             
                          }
         | 
| 155776 155996 | 
             
                        }
         | 
| 155777 155997 | 
             
                      }
         | 
| @@ -155799,7 +156019,7 @@ module.exports={ | |
| 155799 156019 | 
             
                    "type": "structure",
         | 
| 155800 156020 | 
             
                    "members": {
         | 
| 155801 156021 | 
             
                      "topicRuleDestination": {
         | 
| 155802 | 
            -
                        "shape": " | 
| 156022 | 
            +
                        "shape": "Se2"
         | 
| 155803 156023 | 
             
                      }
         | 
| 155804 156024 | 
             
                    }
         | 
| 155805 156025 | 
             
                  }
         | 
| @@ -155876,13 +156096,13 @@ module.exports={ | |
| 155876 156096 | 
             
                            "thingName": {},
         | 
| 155877 156097 | 
             
                            "securityProfileName": {},
         | 
| 155878 156098 | 
             
                            "behavior": {
         | 
| 155879 | 
            -
                              "shape": " | 
| 156099 | 
            +
                              "shape": "S8z"
         | 
| 155880 156100 | 
             
                            },
         | 
| 155881 156101 | 
             
                            "lastViolationValue": {
         | 
| 155882 | 
            -
                              "shape": " | 
| 156102 | 
            +
                              "shape": "S96"
         | 
| 155883 156103 | 
             
                            },
         | 
| 155884 156104 | 
             
                            "violationEventAdditionalInfo": {
         | 
| 155885 | 
            -
                              "shape": " | 
| 156105 | 
            +
                              "shape": "Soe"
         | 
| 155886 156106 | 
             
                            },
         | 
| 155887 156107 | 
             
                            "verificationState": {},
         | 
| 155888 156108 | 
             
                            "verificationStateDescription": {},
         | 
| @@ -155933,7 +156153,7 @@ module.exports={ | |
| 155933 156153 | 
             
                    "type": "structure",
         | 
| 155934 156154 | 
             
                    "members": {
         | 
| 155935 156155 | 
             
                      "policies": {
         | 
| 155936 | 
            -
                        "shape": " | 
| 156156 | 
            +
                        "shape": "Sol"
         | 
| 155937 156157 | 
             
                      },
         | 
| 155938 156158 | 
             
                      "nextMarker": {}
         | 
| 155939 156159 | 
             
                    }
         | 
| @@ -155972,7 +156192,7 @@ module.exports={ | |
| 155972 156192 | 
             
                      "findings": {
         | 
| 155973 156193 | 
             
                        "type": "list",
         | 
| 155974 156194 | 
             
                        "member": {
         | 
| 155975 | 
            -
                          "shape": " | 
| 156195 | 
            +
                          "shape": "Sga"
         | 
| 155976 156196 | 
             
                        }
         | 
| 155977 156197 | 
             
                      },
         | 
| 155978 156198 | 
             
                      "nextToken": {}
         | 
| @@ -156290,7 +156510,7 @@ module.exports={ | |
| 156290 156510 | 
             
                      "billingGroups": {
         | 
| 156291 156511 | 
             
                        "type": "list",
         | 
| 156292 156512 | 
             
                        "member": {
         | 
| 156293 | 
            -
                          "shape": " | 
| 156513 | 
            +
                          "shape": "Sl9"
         | 
| 156294 156514 | 
             
                        }
         | 
| 156295 156515 | 
             
                      },
         | 
| 156296 156516 | 
             
                      "nextToken": {}
         | 
| @@ -156374,7 +156594,7 @@ module.exports={ | |
| 156374 156594 | 
             
                    "type": "structure",
         | 
| 156375 156595 | 
             
                    "members": {
         | 
| 156376 156596 | 
             
                      "certificates": {
         | 
| 156377 | 
            -
                        "shape": " | 
| 156597 | 
            +
                        "shape": "Spn"
         | 
| 156378 156598 | 
             
                      },
         | 
| 156379 156599 | 
             
                      "nextMarker": {}
         | 
| 156380 156600 | 
             
                    }
         | 
| @@ -156415,7 +156635,7 @@ module.exports={ | |
| 156415 156635 | 
             
                    "type": "structure",
         | 
| 156416 156636 | 
             
                    "members": {
         | 
| 156417 156637 | 
             
                      "certificates": {
         | 
| 156418 | 
            -
                        "shape": " | 
| 156638 | 
            +
                        "shape": "Spn"
         | 
| 156419 156639 | 
             
                      },
         | 
| 156420 156640 | 
             
                      "nextMarker": {}
         | 
| 156421 156641 | 
             
                    }
         | 
| @@ -156559,7 +156779,7 @@ module.exports={ | |
| 156559 156779 | 
             
                      "tasks": {
         | 
| 156560 156780 | 
             
                        "type": "list",
         | 
| 156561 156781 | 
             
                        "member": {
         | 
| 156562 | 
            -
                          "shape": " | 
| 156782 | 
            +
                          "shape": "Sij"
         | 
| 156563 156783 | 
             
                        }
         | 
| 156564 156784 | 
             
                      },
         | 
| 156565 156785 | 
             
                      "nextToken": {}
         | 
| @@ -156743,7 +156963,7 @@ module.exports={ | |
| 156743 156963 | 
             
                          "members": {
         | 
| 156744 156964 | 
             
                            "thingArn": {},
         | 
| 156745 156965 | 
             
                            "jobExecutionSummary": {
         | 
| 156746 | 
            -
                              "shape": " | 
| 156966 | 
            +
                              "shape": "Sqn"
         | 
| 156747 156967 | 
             
                            }
         | 
| 156748 156968 | 
             
                          }
         | 
| 156749 156969 | 
             
                        }
         | 
| @@ -156800,7 +157020,7 @@ module.exports={ | |
| 156800 157020 | 
             
                          "members": {
         | 
| 156801 157021 | 
             
                            "jobId": {},
         | 
| 156802 157022 | 
             
                            "jobExecutionSummary": {
         | 
| 156803 | 
            -
                              "shape": " | 
| 157023 | 
            +
                              "shape": "Sqn"
         | 
| 156804 157024 | 
             
                            }
         | 
| 156805 157025 | 
             
                          }
         | 
| 156806 157026 | 
             
                        }
         | 
| @@ -156955,7 +157175,7 @@ module.exports={ | |
| 156955 157175 | 
             
                            "templateName": {},
         | 
| 156956 157176 | 
             
                            "description": {},
         | 
| 156957 157177 | 
             
                            "environments": {
         | 
| 156958 | 
            -
                              "shape": " | 
| 157178 | 
            +
                              "shape": "Skf"
         | 
| 156959 157179 | 
             
                            },
         | 
| 156960 157180 | 
             
                            "templateVersion": {}
         | 
| 156961 157181 | 
             
                          }
         | 
| @@ -157028,7 +157248,7 @@ module.exports={ | |
| 157028 157248 | 
             
                              "type": "timestamp"
         | 
| 157029 157249 | 
             
                            },
         | 
| 157030 157250 | 
             
                            "value": {
         | 
| 157031 | 
            -
                              "shape": " | 
| 157251 | 
            +
                              "shape": "S96"
         | 
| 157032 157252 | 
             
                            }
         | 
| 157033 157253 | 
             
                          }
         | 
| 157034 157254 | 
             
                        }
         | 
| @@ -157200,7 +157420,7 @@ module.exports={ | |
| 157200 157420 | 
             
                    "type": "structure",
         | 
| 157201 157421 | 
             
                    "members": {
         | 
| 157202 157422 | 
             
                      "policies": {
         | 
| 157203 | 
            -
                        "shape": " | 
| 157423 | 
            +
                        "shape": "Sol"
         | 
| 157204 157424 | 
             
                      },
         | 
| 157205 157425 | 
             
                      "nextMarker": {}
         | 
| 157206 157426 | 
             
                    }
         | 
| @@ -157241,7 +157461,7 @@ module.exports={ | |
| 157241 157461 | 
             
                    "type": "structure",
         | 
| 157242 157462 | 
             
                    "members": {
         | 
| 157243 157463 | 
             
                      "principals": {
         | 
| 157244 | 
            -
                        "shape": " | 
| 157464 | 
            +
                        "shape": "Srp"
         | 
| 157245 157465 | 
             
                      },
         | 
| 157246 157466 | 
             
                      "nextMarker": {}
         | 
| 157247 157467 | 
             
                    }
         | 
| @@ -157321,7 +157541,7 @@ module.exports={ | |
| 157321 157541 | 
             
                    "type": "structure",
         | 
| 157322 157542 | 
             
                    "members": {
         | 
| 157323 157543 | 
             
                      "policies": {
         | 
| 157324 | 
            -
                        "shape": " | 
| 157544 | 
            +
                        "shape": "Sol"
         | 
| 157325 157545 | 
             
                      },
         | 
| 157326 157546 | 
             
                      "nextMarker": {}
         | 
| 157327 157547 | 
             
                    }
         | 
| @@ -157358,7 +157578,7 @@ module.exports={ | |
| 157358 157578 | 
             
                    "type": "structure",
         | 
| 157359 157579 | 
             
                    "members": {
         | 
| 157360 157580 | 
             
                      "things": {
         | 
| 157361 | 
            -
                        "shape": " | 
| 157581 | 
            +
                        "shape": "Srz"
         | 
| 157362 157582 | 
             
                      },
         | 
| 157363 157583 | 
             
                      "nextToken": {}
         | 
| 157364 157584 | 
             
                    }
         | 
| @@ -157491,7 +157711,7 @@ module.exports={ | |
| 157491 157711 | 
             
                    "type": "structure",
         | 
| 157492 157712 | 
             
                    "members": {
         | 
| 157493 157713 | 
             
                      "relatedResources": {
         | 
| 157494 | 
            -
                        "shape": " | 
| 157714 | 
            +
                        "shape": "Sgf"
         | 
| 157495 157715 | 
             
                      },
         | 
| 157496 157716 | 
             
                      "nextToken": {}
         | 
| 157497 157717 | 
             
                    }
         | 
| @@ -157604,7 +157824,7 @@ module.exports={ | |
| 157604 157824 | 
             
                      "securityProfileIdentifiers": {
         | 
| 157605 157825 | 
             
                        "type": "list",
         | 
| 157606 157826 | 
             
                        "member": {
         | 
| 157607 | 
            -
                          "shape": " | 
| 157827 | 
            +
                          "shape": "Ssk"
         | 
| 157608 157828 | 
             
                        }
         | 
| 157609 157829 | 
             
                      },
         | 
| 157610 157830 | 
             
                      "nextToken": {}
         | 
| @@ -157651,10 +157871,10 @@ module.exports={ | |
| 157651 157871 | 
             
                          "type": "structure",
         | 
| 157652 157872 | 
             
                          "members": {
         | 
| 157653 157873 | 
             
                            "securityProfileIdentifier": {
         | 
| 157654 | 
            -
                              "shape": " | 
| 157874 | 
            +
                              "shape": "Ssk"
         | 
| 157655 157875 | 
             
                            },
         | 
| 157656 157876 | 
             
                            "target": {
         | 
| 157657 | 
            -
                              "shape": " | 
| 157877 | 
            +
                              "shape": "Ssp"
         | 
| 157658 157878 | 
             
                            }
         | 
| 157659 157879 | 
             
                          }
         | 
| 157660 157880 | 
             
                        }
         | 
| @@ -157807,7 +158027,7 @@ module.exports={ | |
| 157807 158027 | 
             
                      "securityProfileTargets": {
         | 
| 157808 158028 | 
             
                        "type": "list",
         | 
| 157809 158029 | 
             
                        "member": {
         | 
| 157810 | 
            -
                          "shape": " | 
| 158030 | 
            +
                          "shape": "Ssp"
         | 
| 157811 158031 | 
             
                        }
         | 
| 157812 158032 | 
             
                      },
         | 
| 157813 158033 | 
             
                      "nextToken": {}
         | 
| @@ -157850,7 +158070,7 @@ module.exports={ | |
| 157850 158070 | 
             
                    "type": "structure",
         | 
| 157851 158071 | 
             
                    "members": {
         | 
| 157852 158072 | 
             
                      "thingGroups": {
         | 
| 157853 | 
            -
                        "shape": " | 
| 158073 | 
            +
                        "shape": "Sl8"
         | 
| 157854 158074 | 
             
                      },
         | 
| 157855 158075 | 
             
                      "nextToken": {}
         | 
| 157856 158076 | 
             
                    }
         | 
| @@ -157886,7 +158106,7 @@ module.exports={ | |
| 157886 158106 | 
             
                    "type": "structure",
         | 
| 157887 158107 | 
             
                    "members": {
         | 
| 157888 158108 | 
             
                      "thingGroups": {
         | 
| 157889 | 
            -
                        "shape": " | 
| 158109 | 
            +
                        "shape": "Sl8"
         | 
| 157890 158110 | 
             
                      },
         | 
| 157891 158111 | 
             
                      "nextToken": {}
         | 
| 157892 158112 | 
             
                    }
         | 
| @@ -157922,7 +158142,7 @@ module.exports={ | |
| 157922 158142 | 
             
                    "type": "structure",
         | 
| 157923 158143 | 
             
                    "members": {
         | 
| 157924 158144 | 
             
                      "principals": {
         | 
| 157925 | 
            -
                        "shape": " | 
| 158145 | 
            +
                        "shape": "Srp"
         | 
| 157926 158146 | 
             
                      },
         | 
| 157927 158147 | 
             
                      "nextToken": {}
         | 
| 157928 158148 | 
             
                    }
         | 
| @@ -158039,10 +158259,10 @@ module.exports={ | |
| 158039 158259 | 
             
                            "thingTypeName": {},
         | 
| 158040 158260 | 
             
                            "thingTypeArn": {},
         | 
| 158041 158261 | 
             
                            "thingTypeProperties": {
         | 
| 158042 | 
            -
                              "shape": " | 
| 158262 | 
            +
                              "shape": "Sab"
         | 
| 158043 158263 | 
             
                            },
         | 
| 158044 158264 | 
             
                            "thingTypeMetadata": {
         | 
| 158045 | 
            -
                              "shape": " | 
| 158265 | 
            +
                              "shape": "Sll"
         | 
| 158046 158266 | 
             
                            }
         | 
| 158047 158267 | 
             
                          }
         | 
| 158048 158268 | 
             
                        }
         | 
| @@ -158099,7 +158319,7 @@ module.exports={ | |
| 158099 158319 | 
             
                            "thingTypeName": {},
         | 
| 158100 158320 | 
             
                            "thingArn": {},
         | 
| 158101 158321 | 
             
                            "attributes": {
         | 
| 158102 | 
            -
                              "shape": " | 
| 158322 | 
            +
                              "shape": "S3o"
         | 
| 158103 158323 | 
             
                            },
         | 
| 158104 158324 | 
             
                            "version": {
         | 
| 158105 158325 | 
             
                              "type": "long"
         | 
| @@ -158141,7 +158361,7 @@ module.exports={ | |
| 158141 158361 | 
             
                    "type": "structure",
         | 
| 158142 158362 | 
             
                    "members": {
         | 
| 158143 158363 | 
             
                      "things": {
         | 
| 158144 | 
            -
                        "shape": " | 
| 158364 | 
            +
                        "shape": "Srz"
         | 
| 158145 158365 | 
             
                      },
         | 
| 158146 158366 | 
             
                      "nextToken": {}
         | 
| 158147 158367 | 
             
                    }
         | 
| @@ -158182,7 +158402,7 @@ module.exports={ | |
| 158182 158402 | 
             
                    "type": "structure",
         | 
| 158183 158403 | 
             
                    "members": {
         | 
| 158184 158404 | 
             
                      "things": {
         | 
| 158185 | 
            -
                        "shape": " | 
| 158405 | 
            +
                        "shape": "Srz"
         | 
| 158186 158406 | 
             
                      },
         | 
| 158187 158407 | 
             
                      "nextToken": {}
         | 
| 158188 158408 | 
             
                    }
         | 
| @@ -158234,10 +158454,10 @@ module.exports={ | |
| 158234 158454 | 
             
                              "type": "structure",
         | 
| 158235 158455 | 
             
                              "members": {
         | 
| 158236 158456 | 
             
                                "subnetIds": {
         | 
| 158237 | 
            -
                                  "shape": " | 
| 158457 | 
            +
                                  "shape": "Sdw"
         | 
| 158238 158458 | 
             
                                },
         | 
| 158239 158459 | 
             
                                "securityGroups": {
         | 
| 158240 | 
            -
                                  "shape": " | 
| 158460 | 
            +
                                  "shape": "Sdy"
         | 
| 158241 158461 | 
             
                                },
         | 
| 158242 158462 | 
             
                                "vpcId": {},
         | 
| 158243 158463 | 
             
                                "roleArn": {}
         | 
| @@ -158334,7 +158554,7 @@ module.exports={ | |
| 158334 158554 | 
             
                          "type": "structure",
         | 
| 158335 158555 | 
             
                          "members": {
         | 
| 158336 158556 | 
             
                            "logTarget": {
         | 
| 158337 | 
            -
                              "shape": " | 
| 158557 | 
            +
                              "shape": "Sud"
         | 
| 158338 158558 | 
             
                            },
         | 
| 158339 158559 | 
             
                            "logLevel": {}
         | 
| 158340 158560 | 
             
                          }
         | 
| @@ -158410,13 +158630,13 @@ module.exports={ | |
| 158410 158630 | 
             
                            "thingName": {},
         | 
| 158411 158631 | 
             
                            "securityProfileName": {},
         | 
| 158412 158632 | 
             
                            "behavior": {
         | 
| 158413 | 
            -
                              "shape": " | 
| 158633 | 
            +
                              "shape": "S8z"
         | 
| 158414 158634 | 
             
                            },
         | 
| 158415 158635 | 
             
                            "metricValue": {
         | 
| 158416 | 
            -
                              "shape": " | 
| 158636 | 
            +
                              "shape": "S96"
         | 
| 158417 158637 | 
             
                            },
         | 
| 158418 158638 | 
             
                            "violationEventAdditionalInfo": {
         | 
| 158419 | 
            -
                              "shape": " | 
| 158639 | 
            +
                              "shape": "Soe"
         | 
| 158420 158640 | 
             
                            },
         | 
| 158421 158641 | 
             
                            "violationEventType": {},
         | 
| 158422 158642 | 
             
                            "verificationState": {},
         | 
| @@ -158478,7 +158698,7 @@ module.exports={ | |
| 158478 158698 | 
             
                        "type": "boolean"
         | 
| 158479 158699 | 
             
                      },
         | 
| 158480 158700 | 
             
                      "registrationConfig": {
         | 
| 158481 | 
            -
                        "shape": " | 
| 158701 | 
            +
                        "shape": "Si6"
         | 
| 158482 158702 | 
             
                      },
         | 
| 158483 158703 | 
             
                      "tags": {
         | 
| 158484 158704 | 
             
                        "shape": "S2e"
         | 
| @@ -158649,7 +158869,7 @@ module.exports={ | |
| 158649 158869 | 
             
                        "locationName": "ruleName"
         | 
| 158650 158870 | 
             
                      },
         | 
| 158651 158871 | 
             
                      "topicRulePayload": {
         | 
| 158652 | 
            -
                        "shape": " | 
| 158872 | 
            +
                        "shape": "Saj"
         | 
| 158653 158873 | 
             
                      }
         | 
| 158654 158874 | 
             
                    },
         | 
| 158655 158875 | 
             
                    "payload": "topicRulePayload"
         | 
| @@ -158687,10 +158907,10 @@ module.exports={ | |
| 158687 158907 | 
             
                            "thingId": {},
         | 
| 158688 158908 | 
             
                            "thingTypeName": {},
         | 
| 158689 158909 | 
             
                            "thingGroupNames": {
         | 
| 158690 | 
            -
                              "shape": " | 
| 158910 | 
            +
                              "shape": "Sv9"
         | 
| 158691 158911 | 
             
                            },
         | 
| 158692 158912 | 
             
                            "attributes": {
         | 
| 158693 | 
            -
                              "shape": " | 
| 158913 | 
            +
                              "shape": "S3o"
         | 
| 158694 158914 | 
             
                            },
         | 
| 158695 158915 | 
             
                            "shadow": {},
         | 
| 158696 158916 | 
             
                            "deviceDefender": {},
         | 
| @@ -158718,10 +158938,10 @@ module.exports={ | |
| 158718 158938 | 
             
                            "thingGroupId": {},
         | 
| 158719 158939 | 
             
                            "thingGroupDescription": {},
         | 
| 158720 158940 | 
             
                            "attributes": {
         | 
| 158721 | 
            -
                              "shape": " | 
| 158941 | 
            +
                              "shape": "S3o"
         | 
| 158722 158942 | 
             
                            },
         | 
| 158723 158943 | 
             
                            "parentGroupNames": {
         | 
| 158724 | 
            -
                              "shape": " | 
| 158944 | 
            +
                              "shape": "Sv9"
         | 
| 158725 158945 | 
             
                            }
         | 
| 158726 158946 | 
             
                          }
         | 
| 158727 158947 | 
             
                        }
         | 
| @@ -158809,7 +159029,7 @@ module.exports={ | |
| 158809 159029 | 
             
                    ],
         | 
| 158810 159030 | 
             
                    "members": {
         | 
| 158811 159031 | 
             
                      "logTarget": {
         | 
| 158812 | 
            -
                        "shape": " | 
| 159032 | 
            +
                        "shape": "Sud"
         | 
| 158813 159033 | 
             
                      },
         | 
| 158814 159034 | 
             
                      "logLevel": {}
         | 
| 158815 159035 | 
             
                    }
         | 
| @@ -158848,10 +159068,10 @@ module.exports={ | |
| 158848 159068 | 
             
                        "locationName": "taskId"
         | 
| 158849 159069 | 
             
                      },
         | 
| 158850 159070 | 
             
                      "target": {
         | 
| 158851 | 
            -
                        "shape": " | 
| 159071 | 
            +
                        "shape": "Sgu"
         | 
| 158852 159072 | 
             
                      },
         | 
| 158853 159073 | 
             
                      "auditCheckToActionsMapping": {
         | 
| 158854 | 
            -
                        "shape": " | 
| 159074 | 
            +
                        "shape": "Sgy"
         | 
| 158855 159075 | 
             
                      },
         | 
| 158856 159076 | 
             
                      "clientRequestToken": {
         | 
| 158857 159077 | 
             
                        "idempotencyToken": true
         | 
| @@ -158884,14 +159104,14 @@ module.exports={ | |
| 158884 159104 | 
             
                        "locationName": "taskId"
         | 
| 158885 159105 | 
             
                      },
         | 
| 158886 159106 | 
             
                      "target": {
         | 
| 158887 | 
            -
                        "shape": " | 
| 159107 | 
            +
                        "shape": "Sil"
         | 
| 158888 159108 | 
             
                      },
         | 
| 158889 159109 | 
             
                      "actions": {
         | 
| 158890 159110 | 
             
                        "type": "list",
         | 
| 158891 159111 | 
             
                        "member": {}
         | 
| 158892 159112 | 
             
                      },
         | 
| 158893 159113 | 
             
                      "violationEventOccurrenceRange": {
         | 
| 158894 | 
            -
                        "shape": " | 
| 159114 | 
            +
                        "shape": "Sio"
         | 
| 158895 159115 | 
             
                      },
         | 
| 158896 159116 | 
             
                      "includeOnlyActiveViolations": {
         | 
| 158897 159117 | 
             
                        "type": "boolean"
         | 
| @@ -158922,7 +159142,7 @@ module.exports={ | |
| 158922 159142 | 
             
                    ],
         | 
| 158923 159143 | 
             
                    "members": {
         | 
| 158924 159144 | 
             
                      "targetCheckNames": {
         | 
| 158925 | 
            -
                        "shape": " | 
| 159145 | 
            +
                        "shape": "S8s"
         | 
| 158926 159146 | 
             
                      }
         | 
| 158927 159147 | 
             
                    }
         | 
| 158928 159148 | 
             
                  },
         | 
| @@ -159018,7 +159238,7 @@ module.exports={ | |
| 159018 159238 | 
             
                      "authInfos": {
         | 
| 159019 159239 | 
             
                        "type": "list",
         | 
| 159020 159240 | 
             
                        "member": {
         | 
| 159021 | 
            -
                          "shape": " | 
| 159241 | 
            +
                          "shape": "Sw2"
         | 
| 159022 159242 | 
             
                        }
         | 
| 159023 159243 | 
             
                      },
         | 
| 159024 159244 | 
             
                      "clientId": {
         | 
| @@ -159026,10 +159246,10 @@ module.exports={ | |
| 159026 159246 | 
             
                        "locationName": "clientId"
         | 
| 159027 159247 | 
             
                      },
         | 
| 159028 159248 | 
             
                      "policyNamesToAdd": {
         | 
| 159029 | 
            -
                        "shape": " | 
| 159249 | 
            +
                        "shape": "Sw6"
         | 
| 159030 159250 | 
             
                      },
         | 
| 159031 159251 | 
             
                      "policyNamesToSkip": {
         | 
| 159032 | 
            -
                        "shape": " | 
| 159252 | 
            +
                        "shape": "Sw6"
         | 
| 159033 159253 | 
             
                      }
         | 
| 159034 159254 | 
             
                    }
         | 
| 159035 159255 | 
             
                  },
         | 
| @@ -159042,13 +159262,13 @@ module.exports={ | |
| 159042 159262 | 
             
                          "type": "structure",
         | 
| 159043 159263 | 
             
                          "members": {
         | 
| 159044 159264 | 
             
                            "authInfo": {
         | 
| 159045 | 
            -
                              "shape": " | 
| 159265 | 
            +
                              "shape": "Sw2"
         | 
| 159046 159266 | 
             
                            },
         | 
| 159047 159267 | 
             
                            "allowed": {
         | 
| 159048 159268 | 
             
                              "type": "structure",
         | 
| 159049 159269 | 
             
                              "members": {
         | 
| 159050 159270 | 
             
                                "policies": {
         | 
| 159051 | 
            -
                                  "shape": " | 
| 159271 | 
            +
                                  "shape": "Sol"
         | 
| 159052 159272 | 
             
                                }
         | 
| 159053 159273 | 
             
                              }
         | 
| 159054 159274 | 
             
                            },
         | 
| @@ -159059,7 +159279,7 @@ module.exports={ | |
| 159059 159279 | 
             
                                  "type": "structure",
         | 
| 159060 159280 | 
             
                                  "members": {
         | 
| 159061 159281 | 
             
                                    "policies": {
         | 
| 159062 | 
            -
                                      "shape": " | 
| 159282 | 
            +
                                      "shape": "Sol"
         | 
| 159063 159283 | 
             
                                    }
         | 
| 159064 159284 | 
             
                                  }
         | 
| 159065 159285 | 
             
                                },
         | 
| @@ -159067,7 +159287,7 @@ module.exports={ | |
| 159067 159287 | 
             
                                  "type": "structure",
         | 
| 159068 159288 | 
             
                                  "members": {
         | 
| 159069 159289 | 
             
                                    "policies": {
         | 
| 159070 | 
            -
                                      "shape": " | 
| 159290 | 
            +
                                      "shape": "Sol"
         | 
| 159071 159291 | 
             
                                    }
         | 
| 159072 159292 | 
             
                                  }
         | 
| 159073 159293 | 
             
                                }
         | 
| @@ -159212,10 +159432,10 @@ module.exports={ | |
| 159212 159432 | 
             
                    "members": {
         | 
| 159213 159433 | 
             
                      "roleArn": {},
         | 
| 159214 159434 | 
             
                      "auditNotificationTargetConfigurations": {
         | 
| 159215 | 
            -
                        "shape": " | 
| 159435 | 
            +
                        "shape": "Sg2"
         | 
| 159216 159436 | 
             
                      },
         | 
| 159217 159437 | 
             
                      "auditCheckConfigurations": {
         | 
| 159218 | 
            -
                        "shape": " | 
| 159438 | 
            +
                        "shape": "Sg5"
         | 
| 159219 159439 | 
             
                      }
         | 
| 159220 159440 | 
             
                    }
         | 
| 159221 159441 | 
             
                  },
         | 
| @@ -159345,7 +159565,7 @@ module.exports={ | |
| 159345 159565 | 
             
                        "locationName": "newAutoRegistrationStatus"
         | 
| 159346 159566 | 
             
                      },
         | 
| 159347 159567 | 
             
                      "registrationConfig": {
         | 
| 159348 | 
            -
                        "shape": " | 
| 159568 | 
            +
                        "shape": "Si6"
         | 
| 159349 159569 | 
             
                      },
         | 
| 159350 159570 | 
             
                      "removeAutoRegistration": {
         | 
| 159351 159571 | 
             
                        "type": "boolean"
         | 
| @@ -159471,6 +159691,9 @@ module.exports={ | |
| 159471 159691 | 
             
                      "domainConfigurationStatus": {},
         | 
| 159472 159692 | 
             
                      "removeAuthorizerConfig": {
         | 
| 159473 159693 | 
             
                        "type": "boolean"
         | 
| 159694 | 
            +
                      },
         | 
| 159695 | 
            +
                      "tlsConfig": {
         | 
| 159696 | 
            +
                        "shape": "S3g"
         | 
| 159474 159697 | 
             
                      }
         | 
| 159475 159698 | 
             
                    }
         | 
| 159476 159699 | 
             
                  },
         | 
| @@ -159499,7 +159722,7 @@ module.exports={ | |
| 159499 159722 | 
             
                        "locationName": "thingGroupName"
         | 
| 159500 159723 | 
             
                      },
         | 
| 159501 159724 | 
             
                      "thingGroupProperties": {
         | 
| 159502 | 
            -
                        "shape": " | 
| 159725 | 
            +
                        "shape": "S3l"
         | 
| 159503 159726 | 
             
                      },
         | 
| 159504 159727 | 
             
                      "expectedVersion": {
         | 
| 159505 159728 | 
             
                        "type": "long"
         | 
| @@ -159527,7 +159750,7 @@ module.exports={ | |
| 159527 159750 | 
             
                    "type": "structure",
         | 
| 159528 159751 | 
             
                    "members": {
         | 
| 159529 159752 | 
             
                      "eventConfigurations": {
         | 
| 159530 | 
            -
                        "shape": " | 
| 159753 | 
            +
                        "shape": "Sj9"
         | 
| 159531 159754 | 
             
                      }
         | 
| 159532 159755 | 
             
                    }
         | 
| 159533 159756 | 
             
                  },
         | 
| @@ -159554,7 +159777,7 @@ module.exports={ | |
| 159554 159777 | 
             
                      },
         | 
| 159555 159778 | 
             
                      "queryString": {},
         | 
| 159556 159779 | 
             
                      "aggregationType": {
         | 
| 159557 | 
            -
                        "shape": " | 
| 159780 | 
            +
                        "shape": "S3z"
         | 
| 159558 159781 | 
             
                      },
         | 
| 159559 159782 | 
             
                      "period": {
         | 
| 159560 159783 | 
             
                        "type": "integer"
         | 
| @@ -159578,10 +159801,10 @@ module.exports={ | |
| 159578 159801 | 
             
                    "type": "structure",
         | 
| 159579 159802 | 
             
                    "members": {
         | 
| 159580 159803 | 
             
                      "thingIndexingConfiguration": {
         | 
| 159581 | 
            -
                        "shape": " | 
| 159804 | 
            +
                        "shape": "Smk"
         | 
| 159582 159805 | 
             
                      },
         | 
| 159583 159806 | 
             
                      "thingGroupIndexingConfiguration": {
         | 
| 159584 | 
            -
                        "shape": " | 
| 159807 | 
            +
                        "shape": "Smw"
         | 
| 159585 159808 | 
             
                      }
         | 
| 159586 159809 | 
             
                    }
         | 
| 159587 159810 | 
             
                  },
         | 
| @@ -159607,23 +159830,23 @@ module.exports={ | |
| 159607 159830 | 
             
                      },
         | 
| 159608 159831 | 
             
                      "description": {},
         | 
| 159609 159832 | 
             
                      "presignedUrlConfig": {
         | 
| 159610 | 
            -
                        "shape": " | 
| 159833 | 
            +
                        "shape": "S4c"
         | 
| 159611 159834 | 
             
                      },
         | 
| 159612 159835 | 
             
                      "jobExecutionsRolloutConfig": {
         | 
| 159613 | 
            -
                        "shape": " | 
| 159836 | 
            +
                        "shape": "S4f"
         | 
| 159614 159837 | 
             
                      },
         | 
| 159615 159838 | 
             
                      "abortConfig": {
         | 
| 159616 | 
            -
                        "shape": " | 
| 159839 | 
            +
                        "shape": "S4m"
         | 
| 159617 159840 | 
             
                      },
         | 
| 159618 159841 | 
             
                      "timeoutConfig": {
         | 
| 159619 | 
            -
                        "shape": " | 
| 159842 | 
            +
                        "shape": "S4t"
         | 
| 159620 159843 | 
             
                      },
         | 
| 159621 159844 | 
             
                      "namespaceId": {
         | 
| 159622 159845 | 
             
                        "location": "querystring",
         | 
| 159623 159846 | 
             
                        "locationName": "namespaceId"
         | 
| 159624 159847 | 
             
                      },
         | 
| 159625 159848 | 
             
                      "jobExecutionsRetryConfig": {
         | 
| 159626 | 
            -
                        "shape": " | 
| 159849 | 
            +
                        "shape": "S4w"
         | 
| 159627 159850 | 
             
                      }
         | 
| 159628 159851 | 
             
                    }
         | 
| 159629 159852 | 
             
                  }
         | 
| @@ -159645,7 +159868,7 @@ module.exports={ | |
| 159645 159868 | 
             
                      },
         | 
| 159646 159869 | 
             
                      "roleArn": {},
         | 
| 159647 159870 | 
             
                      "actionParams": {
         | 
| 159648 | 
            -
                        "shape": " | 
| 159871 | 
            +
                        "shape": "S5m"
         | 
| 159649 159872 | 
             
                      }
         | 
| 159650 159873 | 
             
                    }
         | 
| 159651 159874 | 
             
                  },
         | 
| @@ -159681,7 +159904,7 @@ module.exports={ | |
| 159681 159904 | 
             
                      },
         | 
| 159682 159905 | 
             
                      "provisioningRoleArn": {},
         | 
| 159683 159906 | 
             
                      "preProvisioningHook": {
         | 
| 159684 | 
            -
                        "shape": " | 
| 159907 | 
            +
                        "shape": "S8c"
         | 
| 159685 159908 | 
             
                      },
         | 
| 159686 159909 | 
             
                      "removePreProvisioningHook": {
         | 
| 159687 159910 | 
             
                        "type": "boolean"
         | 
| @@ -159737,7 +159960,7 @@ module.exports={ | |
| 159737 159960 | 
             
                      "dayOfMonth": {},
         | 
| 159738 159961 | 
             
                      "dayOfWeek": {},
         | 
| 159739 159962 | 
             
                      "targetCheckNames": {
         | 
| 159740 | 
            -
                        "shape": " | 
| 159963 | 
            +
                        "shape": "S8s"
         | 
| 159741 159964 | 
             
                      },
         | 
| 159742 159965 | 
             
                      "scheduledAuditName": {
         | 
| 159743 159966 | 
             
                        "location": "uri",
         | 
| @@ -159769,18 +159992,18 @@ module.exports={ | |
| 159769 159992 | 
             
                      },
         | 
| 159770 159993 | 
             
                      "securityProfileDescription": {},
         | 
| 159771 159994 | 
             
                      "behaviors": {
         | 
| 159772 | 
            -
                        "shape": " | 
| 159995 | 
            +
                        "shape": "S8y"
         | 
| 159773 159996 | 
             
                      },
         | 
| 159774 159997 | 
             
                      "alertTargets": {
         | 
| 159775 | 
            -
                        "shape": " | 
| 159998 | 
            +
                        "shape": "S9o"
         | 
| 159776 159999 | 
             
                      },
         | 
| 159777 160000 | 
             
                      "additionalMetricsToRetain": {
         | 
| 159778 | 
            -
                        "shape": " | 
| 160001 | 
            +
                        "shape": "S9s",
         | 
| 159779 160002 | 
             
                        "deprecated": true,
         | 
| 159780 160003 | 
             
                        "deprecatedMessage": "Use additionalMetricsToRetainV2."
         | 
| 159781 160004 | 
             
                      },
         | 
| 159782 160005 | 
             
                      "additionalMetricsToRetainV2": {
         | 
| 159783 | 
            -
                        "shape": " | 
| 160006 | 
            +
                        "shape": "S9t"
         | 
| 159784 160007 | 
             
                      },
         | 
| 159785 160008 | 
             
                      "deleteBehaviors": {
         | 
| 159786 160009 | 
             
                        "type": "boolean"
         | 
| @@ -159805,18 +160028,18 @@ module.exports={ | |
| 159805 160028 | 
             
                      "securityProfileArn": {},
         | 
| 159806 160029 | 
             
                      "securityProfileDescription": {},
         | 
| 159807 160030 | 
             
                      "behaviors": {
         | 
| 159808 | 
            -
                        "shape": " | 
| 160031 | 
            +
                        "shape": "S8y"
         | 
| 159809 160032 | 
             
                      },
         | 
| 159810 160033 | 
             
                      "alertTargets": {
         | 
| 159811 | 
            -
                        "shape": " | 
| 160034 | 
            +
                        "shape": "S9o"
         | 
| 159812 160035 | 
             
                      },
         | 
| 159813 160036 | 
             
                      "additionalMetricsToRetain": {
         | 
| 159814 | 
            -
                        "shape": " | 
| 160037 | 
            +
                        "shape": "S9s",
         | 
| 159815 160038 | 
             
                        "deprecated": true,
         | 
| 159816 160039 | 
             
                        "deprecatedMessage": "Use additionalMetricsToRetainV2."
         | 
| 159817 160040 | 
             
                      },
         | 
| 159818 160041 | 
             
                      "additionalMetricsToRetainV2": {
         | 
| 159819 | 
            -
                        "shape": " | 
| 160042 | 
            +
                        "shape": "S9t"
         | 
| 159820 160043 | 
             
                      },
         | 
| 159821 160044 | 
             
                      "version": {
         | 
| 159822 160045 | 
             
                        "type": "long"
         | 
| @@ -159847,7 +160070,7 @@ module.exports={ | |
| 159847 160070 | 
             
                      },
         | 
| 159848 160071 | 
             
                      "description": {},
         | 
| 159849 160072 | 
             
                      "files": {
         | 
| 159850 | 
            -
                        "shape": " | 
| 160073 | 
            +
                        "shape": "S9z"
         | 
| 159851 160074 | 
             
                      },
         | 
| 159852 160075 | 
             
                      "roleArn": {}
         | 
| 159853 160076 | 
             
                    }
         | 
| @@ -159881,7 +160104,7 @@ module.exports={ | |
| 159881 160104 | 
             
                      },
         | 
| 159882 160105 | 
             
                      "thingTypeName": {},
         | 
| 159883 160106 | 
             
                      "attributePayload": {
         | 
| 159884 | 
            -
                        "shape": " | 
| 160107 | 
            +
                        "shape": "S3n"
         | 
| 159885 160108 | 
             
                      },
         | 
| 159886 160109 | 
             
                      "expectedVersion": {
         | 
| 159887 160110 | 
             
                        "type": "long"
         | 
| @@ -159913,7 +160136,7 @@ module.exports={ | |
| 159913 160136 | 
             
                        "locationName": "thingGroupName"
         | 
| 159914 160137 | 
             
                      },
         | 
| 159915 160138 | 
             
                      "thingGroupProperties": {
         | 
| 159916 | 
            -
                        "shape": " | 
| 160139 | 
            +
                        "shape": "S3l"
         | 
| 159917 160140 | 
             
                      },
         | 
| 159918 160141 | 
             
                      "expectedVersion": {
         | 
| 159919 160142 | 
             
                        "type": "long"
         | 
| @@ -159939,10 +160162,10 @@ module.exports={ | |
| 159939 160162 | 
             
                    "members": {
         | 
| 159940 160163 | 
             
                      "thingName": {},
         | 
| 159941 160164 | 
             
                      "thingGroupsToAdd": {
         | 
| 159942 | 
            -
                        "shape": " | 
| 160165 | 
            +
                        "shape": "Syh"
         | 
| 159943 160166 | 
             
                      },
         | 
| 159944 160167 | 
             
                      "thingGroupsToRemove": {
         | 
| 159945 | 
            -
                        "shape": " | 
| 160168 | 
            +
                        "shape": "Syh"
         | 
| 159946 160169 | 
             
                      },
         | 
| 159947 160170 | 
             
                      "overrideDynamicGroups": {
         | 
| 159948 160171 | 
             
                        "type": "boolean"
         | 
| @@ -159986,7 +160209,7 @@ module.exports={ | |
| 159986 160209 | 
             
                    ],
         | 
| 159987 160210 | 
             
                    "members": {
         | 
| 159988 160211 | 
             
                      "behaviors": {
         | 
| 159989 | 
            -
                        "shape": " | 
| 160212 | 
            +
                        "shape": "S8y"
         | 
| 159990 160213 | 
             
                      }
         | 
| 159991 160214 | 
             
                    }
         | 
| 159992 160215 | 
             
                  },
         | 
| @@ -160084,32 +160307,38 @@ module.exports={ | |
| 160084 160307 | 
             
                    }
         | 
| 160085 160308 | 
             
                  }
         | 
| 160086 160309 | 
             
                },
         | 
| 160087 | 
            -
                " | 
| 160310 | 
            +
                "S3g": {
         | 
| 160311 | 
            +
                  "type": "structure",
         | 
| 160312 | 
            +
                  "members": {
         | 
| 160313 | 
            +
                    "securityPolicy": {}
         | 
| 160314 | 
            +
                  }
         | 
| 160315 | 
            +
                },
         | 
| 160316 | 
            +
                "S3l": {
         | 
| 160088 160317 | 
             
                  "type": "structure",
         | 
| 160089 160318 | 
             
                  "members": {
         | 
| 160090 160319 | 
             
                    "thingGroupDescription": {},
         | 
| 160091 160320 | 
             
                    "attributePayload": {
         | 
| 160092 | 
            -
                      "shape": " | 
| 160321 | 
            +
                      "shape": "S3n"
         | 
| 160093 160322 | 
             
                    }
         | 
| 160094 160323 | 
             
                  }
         | 
| 160095 160324 | 
             
                },
         | 
| 160096 | 
            -
                " | 
| 160325 | 
            +
                "S3n": {
         | 
| 160097 160326 | 
             
                  "type": "structure",
         | 
| 160098 160327 | 
             
                  "members": {
         | 
| 160099 160328 | 
             
                    "attributes": {
         | 
| 160100 | 
            -
                      "shape": " | 
| 160329 | 
            +
                      "shape": "S3o"
         | 
| 160101 160330 | 
             
                    },
         | 
| 160102 160331 | 
             
                    "merge": {
         | 
| 160103 160332 | 
             
                      "type": "boolean"
         | 
| 160104 160333 | 
             
                    }
         | 
| 160105 160334 | 
             
                  }
         | 
| 160106 160335 | 
             
                },
         | 
| 160107 | 
            -
                " | 
| 160336 | 
            +
                "S3o": {
         | 
| 160108 160337 | 
             
                  "type": "map",
         | 
| 160109 160338 | 
             
                  "key": {},
         | 
| 160110 160339 | 
             
                  "value": {}
         | 
| 160111 160340 | 
             
                },
         | 
| 160112 | 
            -
                " | 
| 160341 | 
            +
                "S3z": {
         | 
| 160113 160342 | 
             
                  "type": "structure",
         | 
| 160114 160343 | 
             
                  "required": [
         | 
| 160115 160344 | 
             
                    "name"
         | 
| @@ -160122,7 +160351,7 @@ module.exports={ | |
| 160122 160351 | 
             
                    }
         | 
| 160123 160352 | 
             
                  }
         | 
| 160124 160353 | 
             
                },
         | 
| 160125 | 
            -
                " | 
| 160354 | 
            +
                "S4c": {
         | 
| 160126 160355 | 
             
                  "type": "structure",
         | 
| 160127 160356 | 
             
                  "members": {
         | 
| 160128 160357 | 
             
                    "roleArn": {},
         | 
| @@ -160131,7 +160360,7 @@ module.exports={ | |
| 160131 160360 | 
             
                    }
         | 
| 160132 160361 | 
             
                  }
         | 
| 160133 160362 | 
             
                },
         | 
| 160134 | 
            -
                " | 
| 160363 | 
            +
                "S4f": {
         | 
| 160135 160364 | 
             
                  "type": "structure",
         | 
| 160136 160365 | 
             
                  "members": {
         | 
| 160137 160366 | 
             
                    "maximumPerMinute": {
         | 
| @@ -160166,7 +160395,7 @@ module.exports={ | |
| 160166 160395 | 
             
                    }
         | 
| 160167 160396 | 
             
                  }
         | 
| 160168 160397 | 
             
                },
         | 
| 160169 | 
            -
                " | 
| 160398 | 
            +
                "S4m": {
         | 
| 160170 160399 | 
             
                  "type": "structure",
         | 
| 160171 160400 | 
             
                  "required": [
         | 
| 160172 160401 | 
             
                    "criteriaList"
         | 
| @@ -160196,7 +160425,7 @@ module.exports={ | |
| 160196 160425 | 
             
                    }
         | 
| 160197 160426 | 
             
                  }
         | 
| 160198 160427 | 
             
                },
         | 
| 160199 | 
            -
                " | 
| 160428 | 
            +
                "S4t": {
         | 
| 160200 160429 | 
             
                  "type": "structure",
         | 
| 160201 160430 | 
             
                  "members": {
         | 
| 160202 160431 | 
             
                    "inProgressTimeoutInMinutes": {
         | 
| @@ -160204,7 +160433,7 @@ module.exports={ | |
| 160204 160433 | 
             
                    }
         | 
| 160205 160434 | 
             
                  }
         | 
| 160206 160435 | 
             
                },
         | 
| 160207 | 
            -
                " | 
| 160436 | 
            +
                "S4w": {
         | 
| 160208 160437 | 
             
                  "type": "structure",
         | 
| 160209 160438 | 
             
                  "required": [
         | 
| 160210 160439 | 
             
                    "criteriaList"
         | 
| @@ -160228,23 +160457,23 @@ module.exports={ | |
| 160228 160457 | 
             
                    }
         | 
| 160229 160458 | 
             
                  }
         | 
| 160230 160459 | 
             
                },
         | 
| 160231 | 
            -
                " | 
| 160460 | 
            +
                "S51": {
         | 
| 160232 160461 | 
             
                  "type": "map",
         | 
| 160233 160462 | 
             
                  "key": {},
         | 
| 160234 160463 | 
             
                  "value": {}
         | 
| 160235 160464 | 
             
                },
         | 
| 160236 | 
            -
                " | 
| 160465 | 
            +
                "S54": {
         | 
| 160237 160466 | 
             
                  "type": "structure",
         | 
| 160238 160467 | 
             
                  "members": {
         | 
| 160239 160468 | 
             
                    "startTime": {},
         | 
| 160240 160469 | 
             
                    "endTime": {},
         | 
| 160241 160470 | 
             
                    "endBehavior": {},
         | 
| 160242 160471 | 
             
                    "maintenanceWindows": {
         | 
| 160243 | 
            -
                      "shape": " | 
| 160472 | 
            +
                      "shape": "S57"
         | 
| 160244 160473 | 
             
                    }
         | 
| 160245 160474 | 
             
                  }
         | 
| 160246 160475 | 
             
                },
         | 
| 160247 | 
            -
                " | 
| 160476 | 
            +
                "S57": {
         | 
| 160248 160477 | 
             
                  "type": "list",
         | 
| 160249 160478 | 
             
                  "member": {
         | 
| 160250 160479 | 
             
                    "type": "structure",
         | 
| @@ -160260,7 +160489,7 @@ module.exports={ | |
| 160260 160489 | 
             
                    }
         | 
| 160261 160490 | 
             
                  }
         | 
| 160262 160491 | 
             
                },
         | 
| 160263 | 
            -
                " | 
| 160492 | 
            +
                "S5h": {
         | 
| 160264 160493 | 
             
                  "type": "structure",
         | 
| 160265 160494 | 
             
                  "members": {
         | 
| 160266 160495 | 
             
                    "PublicKey": {},
         | 
| @@ -160270,7 +160499,7 @@ module.exports={ | |
| 160270 160499 | 
             
                    }
         | 
| 160271 160500 | 
             
                  }
         | 
| 160272 160501 | 
             
                },
         | 
| 160273 | 
            -
                " | 
| 160502 | 
            +
                "S5m": {
         | 
| 160274 160503 | 
             
                  "type": "structure",
         | 
| 160275 160504 | 
             
                  "members": {
         | 
| 160276 160505 | 
             
                    "updateDeviceCertificateParams": {
         | 
| @@ -160337,15 +160566,15 @@ module.exports={ | |
| 160337 160566 | 
             
                    }
         | 
| 160338 160567 | 
             
                  }
         | 
| 160339 160568 | 
             
                },
         | 
| 160340 | 
            -
                " | 
| 160569 | 
            +
                "S66": {
         | 
| 160341 160570 | 
             
                  "type": "list",
         | 
| 160342 160571 | 
             
                  "member": {}
         | 
| 160343 160572 | 
             
                },
         | 
| 160344 | 
            -
                " | 
| 160573 | 
            +
                "S68": {
         | 
| 160345 160574 | 
             
                  "type": "list",
         | 
| 160346 160575 | 
             
                  "member": {}
         | 
| 160347 160576 | 
             
                },
         | 
| 160348 | 
            -
                " | 
| 160577 | 
            +
                "S6a": {
         | 
| 160349 160578 | 
             
                  "type": "structure",
         | 
| 160350 160579 | 
             
                  "members": {
         | 
| 160351 160580 | 
             
                    "maximumPerMinute": {
         | 
| @@ -160380,7 +160609,7 @@ module.exports={ | |
| 160380 160609 | 
             
                    }
         | 
| 160381 160610 | 
             
                  }
         | 
| 160382 160611 | 
             
                },
         | 
| 160383 | 
            -
                " | 
| 160612 | 
            +
                "S6h": {
         | 
| 160384 160613 | 
             
                  "type": "structure",
         | 
| 160385 160614 | 
             
                  "members": {
         | 
| 160386 160615 | 
             
                    "expiresInSec": {
         | 
| @@ -160388,7 +160617,7 @@ module.exports={ | |
| 160388 160617 | 
             
                    }
         | 
| 160389 160618 | 
             
                  }
         | 
| 160390 160619 | 
             
                },
         | 
| 160391 | 
            -
                " | 
| 160620 | 
            +
                "S6s": {
         | 
| 160392 160621 | 
             
                  "type": "list",
         | 
| 160393 160622 | 
             
                  "member": {
         | 
| 160394 160623 | 
             
                    "type": "structure",
         | 
| @@ -160411,7 +160640,7 @@ module.exports={ | |
| 160411 160640 | 
             
                            }
         | 
| 160412 160641 | 
             
                          },
         | 
| 160413 160642 | 
             
                          "s3Location": {
         | 
| 160414 | 
            -
                            "shape": " | 
| 160643 | 
            +
                            "shape": "S71"
         | 
| 160415 160644 | 
             
                          }
         | 
| 160416 160645 | 
             
                        }
         | 
| 160417 160646 | 
             
                      },
         | 
| @@ -160477,7 +160706,7 @@ module.exports={ | |
| 160477 160706 | 
             
                    }
         | 
| 160478 160707 | 
             
                  }
         | 
| 160479 160708 | 
             
                },
         | 
| 160480 | 
            -
                " | 
| 160709 | 
            +
                "S71": {
         | 
| 160481 160710 | 
             
                  "type": "structure",
         | 
| 160482 160711 | 
             
                  "members": {
         | 
| 160483 160712 | 
             
                    "bucket": {},
         | 
| @@ -160485,12 +160714,12 @@ module.exports={ | |
| 160485 160714 | 
             
                    "version": {}
         | 
| 160486 160715 | 
             
                  }
         | 
| 160487 160716 | 
             
                },
         | 
| 160488 | 
            -
                " | 
| 160717 | 
            +
                "S7q": {
         | 
| 160489 160718 | 
             
                  "type": "map",
         | 
| 160490 160719 | 
             
                  "key": {},
         | 
| 160491 160720 | 
             
                  "value": {}
         | 
| 160492 160721 | 
             
                },
         | 
| 160493 | 
            -
                " | 
| 160722 | 
            +
                "S8c": {
         | 
| 160494 160723 | 
             
                  "type": "structure",
         | 
| 160495 160724 | 
             
                  "required": [
         | 
| 160496 160725 | 
             
                    "targetArn"
         | 
| @@ -160500,17 +160729,17 @@ module.exports={ | |
| 160500 160729 | 
             
                    "targetArn": {}
         | 
| 160501 160730 | 
             
                  }
         | 
| 160502 160731 | 
             
                },
         | 
| 160503 | 
            -
                " | 
| 160732 | 
            +
                "S8s": {
         | 
| 160504 160733 | 
             
                  "type": "list",
         | 
| 160505 160734 | 
             
                  "member": {}
         | 
| 160506 160735 | 
             
                },
         | 
| 160507 | 
            -
                " | 
| 160736 | 
            +
                "S8y": {
         | 
| 160508 160737 | 
             
                  "type": "list",
         | 
| 160509 160738 | 
             
                  "member": {
         | 
| 160510 | 
            -
                    "shape": " | 
| 160739 | 
            +
                    "shape": "S8z"
         | 
| 160511 160740 | 
             
                  }
         | 
| 160512 160741 | 
             
                },
         | 
| 160513 | 
            -
                " | 
| 160742 | 
            +
                "S8z": {
         | 
| 160514 160743 | 
             
                  "type": "structure",
         | 
| 160515 160744 | 
             
                  "required": [
         | 
| 160516 160745 | 
             
                    "name"
         | 
| @@ -160519,14 +160748,14 @@ module.exports={ | |
| 160519 160748 | 
             
                    "name": {},
         | 
| 160520 160749 | 
             
                    "metric": {},
         | 
| 160521 160750 | 
             
                    "metricDimension": {
         | 
| 160522 | 
            -
                      "shape": " | 
| 160751 | 
            +
                      "shape": "S92"
         | 
| 160523 160752 | 
             
                    },
         | 
| 160524 160753 | 
             
                    "criteria": {
         | 
| 160525 160754 | 
             
                      "type": "structure",
         | 
| 160526 160755 | 
             
                      "members": {
         | 
| 160527 160756 | 
             
                        "comparisonOperator": {},
         | 
| 160528 160757 | 
             
                        "value": {
         | 
| 160529 | 
            -
                          "shape": " | 
| 160758 | 
            +
                          "shape": "S96"
         | 
| 160530 160759 | 
             
                        },
         | 
| 160531 160760 | 
             
                        "durationSeconds": {
         | 
| 160532 160761 | 
             
                          "type": "integer"
         | 
| @@ -160559,7 +160788,7 @@ module.exports={ | |
| 160559 160788 | 
             
                    }
         | 
| 160560 160789 | 
             
                  }
         | 
| 160561 160790 | 
             
                },
         | 
| 160562 | 
            -
                " | 
| 160791 | 
            +
                "S92": {
         | 
| 160563 160792 | 
             
                  "type": "structure",
         | 
| 160564 160793 | 
             
                  "required": [
         | 
| 160565 160794 | 
             
                    "dimensionName"
         | 
| @@ -160569,7 +160798,7 @@ module.exports={ | |
| 160569 160798 | 
             
                    "operator": {}
         | 
| 160570 160799 | 
             
                  }
         | 
| 160571 160800 | 
             
                },
         | 
| 160572 | 
            -
                " | 
| 160801 | 
            +
                "S96": {
         | 
| 160573 160802 | 
             
                  "type": "structure",
         | 
| 160574 160803 | 
             
                  "members": {
         | 
| 160575 160804 | 
             
                    "count": {
         | 
| @@ -160600,7 +160829,7 @@ module.exports={ | |
| 160600 160829 | 
             
                    }
         | 
| 160601 160830 | 
             
                  }
         | 
| 160602 160831 | 
             
                },
         | 
| 160603 | 
            -
                " | 
| 160832 | 
            +
                "S9o": {
         | 
| 160604 160833 | 
             
                  "type": "map",
         | 
| 160605 160834 | 
             
                  "key": {},
         | 
| 160606 160835 | 
             
                  "value": {
         | 
| @@ -160615,11 +160844,11 @@ module.exports={ | |
| 160615 160844 | 
             
                    }
         | 
| 160616 160845 | 
             
                  }
         | 
| 160617 160846 | 
             
                },
         | 
| 160618 | 
            -
                " | 
| 160847 | 
            +
                "S9s": {
         | 
| 160619 160848 | 
             
                  "type": "list",
         | 
| 160620 160849 | 
             
                  "member": {}
         | 
| 160621 160850 | 
             
                },
         | 
| 160622 | 
            -
                " | 
| 160851 | 
            +
                "S9t": {
         | 
| 160623 160852 | 
             
                  "type": "list",
         | 
| 160624 160853 | 
             
                  "member": {
         | 
| 160625 160854 | 
             
                    "type": "structure",
         | 
| @@ -160629,12 +160858,12 @@ module.exports={ | |
| 160629 160858 | 
             
                    "members": {
         | 
| 160630 160859 | 
             
                      "metric": {},
         | 
| 160631 160860 | 
             
                      "metricDimension": {
         | 
| 160632 | 
            -
                        "shape": " | 
| 160861 | 
            +
                        "shape": "S92"
         | 
| 160633 160862 | 
             
                      }
         | 
| 160634 160863 | 
             
                    }
         | 
| 160635 160864 | 
             
                  }
         | 
| 160636 160865 | 
             
                },
         | 
| 160637 | 
            -
                " | 
| 160866 | 
            +
                "S9z": {
         | 
| 160638 160867 | 
             
                  "type": "list",
         | 
| 160639 160868 | 
             
                  "member": {
         | 
| 160640 160869 | 
             
                    "type": "structure",
         | 
| @@ -160643,12 +160872,12 @@ module.exports={ | |
| 160643 160872 | 
             
                        "type": "integer"
         | 
| 160644 160873 | 
             
                      },
         | 
| 160645 160874 | 
             
                      "s3Location": {
         | 
| 160646 | 
            -
                        "shape": " | 
| 160875 | 
            +
                        "shape": "S71"
         | 
| 160647 160876 | 
             
                      }
         | 
| 160648 160877 | 
             
                    }
         | 
| 160649 160878 | 
             
                  }
         | 
| 160650 160879 | 
             
                },
         | 
| 160651 | 
            -
                " | 
| 160880 | 
            +
                "Sab": {
         | 
| 160652 160881 | 
             
                  "type": "structure",
         | 
| 160653 160882 | 
             
                  "members": {
         | 
| 160654 160883 | 
             
                    "thingTypeDescription": {},
         | 
| @@ -160658,7 +160887,7 @@ module.exports={ | |
| 160658 160887 | 
             
                    }
         | 
| 160659 160888 | 
             
                  }
         | 
| 160660 160889 | 
             
                },
         | 
| 160661 | 
            -
                " | 
| 160890 | 
            +
                "Saj": {
         | 
| 160662 160891 | 
             
                  "type": "structure",
         | 
| 160663 160892 | 
             
                  "required": [
         | 
| 160664 160893 | 
             
                    "sql",
         | 
| @@ -160668,24 +160897,24 @@ module.exports={ | |
| 160668 160897 | 
             
                    "sql": {},
         | 
| 160669 160898 | 
             
                    "description": {},
         | 
| 160670 160899 | 
             
                    "actions": {
         | 
| 160671 | 
            -
                      "shape": " | 
| 160900 | 
            +
                      "shape": "Sam"
         | 
| 160672 160901 | 
             
                    },
         | 
| 160673 160902 | 
             
                    "ruleDisabled": {
         | 
| 160674 160903 | 
             
                      "type": "boolean"
         | 
| 160675 160904 | 
             
                    },
         | 
| 160676 160905 | 
             
                    "awsIotSqlVersion": {},
         | 
| 160677 160906 | 
             
                    "errorAction": {
         | 
| 160678 | 
            -
                      "shape": " | 
| 160907 | 
            +
                      "shape": "San"
         | 
| 160679 160908 | 
             
                    }
         | 
| 160680 160909 | 
             
                  }
         | 
| 160681 160910 | 
             
                },
         | 
| 160682 | 
            -
                " | 
| 160911 | 
            +
                "Sam": {
         | 
| 160683 160912 | 
             
                  "type": "list",
         | 
| 160684 160913 | 
             
                  "member": {
         | 
| 160685 | 
            -
                    "shape": " | 
| 160914 | 
            +
                    "shape": "San"
         | 
| 160686 160915 | 
             
                  }
         | 
| 160687 160916 | 
             
                },
         | 
| 160688 | 
            -
                " | 
| 160917 | 
            +
                "San": {
         | 
| 160689 160918 | 
             
                  "type": "structure",
         | 
| 160690 160919 | 
             
                  "members": {
         | 
| 160691 160920 | 
             
                    "dynamoDB": {
         | 
| @@ -161158,15 +161387,15 @@ module.exports={ | |
| 161158 161387 | 
             
                    }
         | 
| 161159 161388 | 
             
                  }
         | 
| 161160 161389 | 
             
                },
         | 
| 161161 | 
            -
                " | 
| 161390 | 
            +
                "Sdw": {
         | 
| 161162 161391 | 
             
                  "type": "list",
         | 
| 161163 161392 | 
             
                  "member": {}
         | 
| 161164 161393 | 
             
                },
         | 
| 161165 | 
            -
                " | 
| 161394 | 
            +
                "Sdy": {
         | 
| 161166 161395 | 
             
                  "type": "list",
         | 
| 161167 161396 | 
             
                  "member": {}
         | 
| 161168 161397 | 
             
                },
         | 
| 161169 | 
            -
                " | 
| 161398 | 
            +
                "Se2": {
         | 
| 161170 161399 | 
             
                  "type": "structure",
         | 
| 161171 161400 | 
             
                  "members": {
         | 
| 161172 161401 | 
             
                    "arn": {},
         | 
| @@ -161188,10 +161417,10 @@ module.exports={ | |
| 161188 161417 | 
             
                      "type": "structure",
         | 
| 161189 161418 | 
             
                      "members": {
         | 
| 161190 161419 | 
             
                        "subnetIds": {
         | 
| 161191 | 
            -
                          "shape": " | 
| 161420 | 
            +
                          "shape": "Sdw"
         | 
| 161192 161421 | 
             
                        },
         | 
| 161193 161422 | 
             
                        "securityGroups": {
         | 
| 161194 | 
            -
                          "shape": " | 
| 161423 | 
            +
                          "shape": "Sdy"
         | 
| 161195 161424 | 
             
                        },
         | 
| 161196 161425 | 
             
                        "vpcId": {},
         | 
| 161197 161426 | 
             
                        "roleArn": {}
         | 
| @@ -161199,7 +161428,7 @@ module.exports={ | |
| 161199 161428 | 
             
                    }
         | 
| 161200 161429 | 
             
                  }
         | 
| 161201 161430 | 
             
                },
         | 
| 161202 | 
            -
                " | 
| 161431 | 
            +
                "Sg2": {
         | 
| 161203 161432 | 
             
                  "type": "map",
         | 
| 161204 161433 | 
             
                  "key": {},
         | 
| 161205 161434 | 
             
                  "value": {
         | 
| @@ -161213,7 +161442,7 @@ module.exports={ | |
| 161213 161442 | 
             
                    }
         | 
| 161214 161443 | 
             
                  }
         | 
| 161215 161444 | 
             
                },
         | 
| 161216 | 
            -
                " | 
| 161445 | 
            +
                "Sg5": {
         | 
| 161217 161446 | 
             
                  "type": "map",
         | 
| 161218 161447 | 
             
                  "key": {},
         | 
| 161219 161448 | 
             
                  "value": {
         | 
| @@ -161225,7 +161454,7 @@ module.exports={ | |
| 161225 161454 | 
             
                    }
         | 
| 161226 161455 | 
             
                  }
         | 
| 161227 161456 | 
             
                },
         | 
| 161228 | 
            -
                " | 
| 161457 | 
            +
                "Sga": {
         | 
| 161229 161458 | 
             
                  "type": "structure",
         | 
| 161230 161459 | 
             
                  "members": {
         | 
| 161231 161460 | 
             
                    "findingId": {},
         | 
| @@ -161246,12 +161475,12 @@ module.exports={ | |
| 161246 161475 | 
             
                          "shape": "S1o"
         | 
| 161247 161476 | 
             
                        },
         | 
| 161248 161477 | 
             
                        "additionalInfo": {
         | 
| 161249 | 
            -
                          "shape": " | 
| 161478 | 
            +
                          "shape": "Sge"
         | 
| 161250 161479 | 
             
                        }
         | 
| 161251 161480 | 
             
                      }
         | 
| 161252 161481 | 
             
                    },
         | 
| 161253 161482 | 
             
                    "relatedResources": {
         | 
| 161254 | 
            -
                      "shape": " | 
| 161483 | 
            +
                      "shape": "Sgf"
         | 
| 161255 161484 | 
             
                    },
         | 
| 161256 161485 | 
             
                    "reasonForNonCompliance": {},
         | 
| 161257 161486 | 
             
                    "reasonForNonComplianceCode": {},
         | 
| @@ -161260,12 +161489,12 @@ module.exports={ | |
| 161260 161489 | 
             
                    }
         | 
| 161261 161490 | 
             
                  }
         | 
| 161262 161491 | 
             
                },
         | 
| 161263 | 
            -
                " | 
| 161492 | 
            +
                "Sge": {
         | 
| 161264 161493 | 
             
                  "type": "map",
         | 
| 161265 161494 | 
             
                  "key": {},
         | 
| 161266 161495 | 
             
                  "value": {}
         | 
| 161267 161496 | 
             
                },
         | 
| 161268 | 
            -
                " | 
| 161497 | 
            +
                "Sgf": {
         | 
| 161269 161498 | 
             
                  "type": "list",
         | 
| 161270 161499 | 
             
                  "member": {
         | 
| 161271 161500 | 
             
                    "type": "structure",
         | 
| @@ -161275,12 +161504,12 @@ module.exports={ | |
| 161275 161504 | 
             
                        "shape": "S1o"
         | 
| 161276 161505 | 
             
                      },
         | 
| 161277 161506 | 
             
                      "additionalInfo": {
         | 
| 161278 | 
            -
                        "shape": " | 
| 161507 | 
            +
                        "shape": "Sge"
         | 
| 161279 161508 | 
             
                      }
         | 
| 161280 161509 | 
             
                    }
         | 
| 161281 161510 | 
             
                  }
         | 
| 161282 161511 | 
             
                },
         | 
| 161283 | 
            -
                " | 
| 161512 | 
            +
                "Sgu": {
         | 
| 161284 161513 | 
             
                  "type": "structure",
         | 
| 161285 161514 | 
             
                  "members": {
         | 
| 161286 161515 | 
             
                    "auditTaskId": {},
         | 
| @@ -161298,7 +161527,7 @@ module.exports={ | |
| 161298 161527 | 
             
                    }
         | 
| 161299 161528 | 
             
                  }
         | 
| 161300 161529 | 
             
                },
         | 
| 161301 | 
            -
                " | 
| 161530 | 
            +
                "Sgy": {
         | 
| 161302 161531 | 
             
                  "type": "map",
         | 
| 161303 161532 | 
             
                  "key": {},
         | 
| 161304 161533 | 
             
                  "value": {
         | 
| @@ -161306,7 +161535,7 @@ module.exports={ | |
| 161306 161535 | 
             
                    "member": {}
         | 
| 161307 161536 | 
             
                  }
         | 
| 161308 161537 | 
             
                },
         | 
| 161309 | 
            -
                " | 
| 161538 | 
            +
                "Sh0": {
         | 
| 161310 161539 | 
             
                  "type": "list",
         | 
| 161311 161540 | 
             
                  "member": {
         | 
| 161312 161541 | 
             
                    "type": "structure",
         | 
| @@ -161315,12 +161544,12 @@ module.exports={ | |
| 161315 161544 | 
             
                      "id": {},
         | 
| 161316 161545 | 
             
                      "roleArn": {},
         | 
| 161317 161546 | 
             
                      "actionParams": {
         | 
| 161318 | 
            -
                        "shape": " | 
| 161547 | 
            +
                        "shape": "S5m"
         | 
| 161319 161548 | 
             
                      }
         | 
| 161320 161549 | 
             
                    }
         | 
| 161321 161550 | 
             
                  }
         | 
| 161322 161551 | 
             
                },
         | 
| 161323 | 
            -
                " | 
| 161552 | 
            +
                "Shr": {
         | 
| 161324 161553 | 
             
                  "type": "structure",
         | 
| 161325 161554 | 
             
                  "members": {
         | 
| 161326 161555 | 
             
                    "authorizerName": {},
         | 
| @@ -161345,7 +161574,7 @@ module.exports={ | |
| 161345 161574 | 
             
                    }
         | 
| 161346 161575 | 
             
                  }
         | 
| 161347 161576 | 
             
                },
         | 
| 161348 | 
            -
                " | 
| 161577 | 
            +
                "Si4": {
         | 
| 161349 161578 | 
             
                  "type": "structure",
         | 
| 161350 161579 | 
             
                  "members": {
         | 
| 161351 161580 | 
             
                    "notBefore": {
         | 
| @@ -161356,7 +161585,7 @@ module.exports={ | |
| 161356 161585 | 
             
                    }
         | 
| 161357 161586 | 
             
                  }
         | 
| 161358 161587 | 
             
                },
         | 
| 161359 | 
            -
                " | 
| 161588 | 
            +
                "Si6": {
         | 
| 161360 161589 | 
             
                  "type": "structure",
         | 
| 161361 161590 | 
             
                  "members": {
         | 
| 161362 161591 | 
             
                    "templateBody": {},
         | 
| @@ -161364,7 +161593,7 @@ module.exports={ | |
| 161364 161593 | 
             
                    "templateName": {}
         | 
| 161365 161594 | 
             
                  }
         | 
| 161366 161595 | 
             
                },
         | 
| 161367 | 
            -
                " | 
| 161596 | 
            +
                "Sij": {
         | 
| 161368 161597 | 
             
                  "type": "structure",
         | 
| 161369 161598 | 
             
                  "members": {
         | 
| 161370 161599 | 
             
                    "taskId": {},
         | 
| @@ -161376,10 +161605,10 @@ module.exports={ | |
| 161376 161605 | 
             
                      "type": "timestamp"
         | 
| 161377 161606 | 
             
                    },
         | 
| 161378 161607 | 
             
                    "target": {
         | 
| 161379 | 
            -
                      "shape": " | 
| 161608 | 
            +
                      "shape": "Sil"
         | 
| 161380 161609 | 
             
                    },
         | 
| 161381 161610 | 
             
                    "violationEventOccurrenceRange": {
         | 
| 161382 | 
            -
                      "shape": " | 
| 161611 | 
            +
                      "shape": "Sio"
         | 
| 161383 161612 | 
             
                    },
         | 
| 161384 161613 | 
             
                    "onlyActiveViolationsIncluded": {
         | 
| 161385 161614 | 
             
                      "type": "boolean"
         | 
| @@ -161388,7 +161617,7 @@ module.exports={ | |
| 161388 161617 | 
             
                      "type": "boolean"
         | 
| 161389 161618 | 
             
                    },
         | 
| 161390 161619 | 
             
                    "actionsDefinition": {
         | 
| 161391 | 
            -
                      "shape": " | 
| 161620 | 
            +
                      "shape": "Sh0"
         | 
| 161392 161621 | 
             
                    },
         | 
| 161393 161622 | 
             
                    "taskStatistics": {
         | 
| 161394 161623 | 
             
                      "type": "structure",
         | 
| @@ -161406,7 +161635,7 @@ module.exports={ | |
| 161406 161635 | 
             
                    }
         | 
| 161407 161636 | 
             
                  }
         | 
| 161408 161637 | 
             
                },
         | 
| 161409 | 
            -
                " | 
| 161638 | 
            +
                "Sil": {
         | 
| 161410 161639 | 
             
                  "type": "structure",
         | 
| 161411 161640 | 
             
                  "members": {
         | 
| 161412 161641 | 
             
                    "violationIds": {
         | 
| @@ -161417,7 +161646,7 @@ module.exports={ | |
| 161417 161646 | 
             
                    "behaviorName": {}
         | 
| 161418 161647 | 
             
                  }
         | 
| 161419 161648 | 
             
                },
         | 
| 161420 | 
            -
                " | 
| 161649 | 
            +
                "Sio": {
         | 
| 161421 161650 | 
             
                  "type": "structure",
         | 
| 161422 161651 | 
             
                  "required": [
         | 
| 161423 161652 | 
             
                    "startTime",
         | 
| @@ -161432,7 +161661,7 @@ module.exports={ | |
| 161432 161661 | 
             
                    }
         | 
| 161433 161662 | 
             
                  }
         | 
| 161434 161663 | 
             
                },
         | 
| 161435 | 
            -
                " | 
| 161664 | 
            +
                "Sj9": {
         | 
| 161436 161665 | 
             
                  "type": "map",
         | 
| 161437 161666 | 
             
                  "key": {},
         | 
| 161438 161667 | 
             
                  "value": {
         | 
| @@ -161444,24 +161673,24 @@ module.exports={ | |
| 161444 161673 | 
             
                    }
         | 
| 161445 161674 | 
             
                  }
         | 
| 161446 161675 | 
             
                },
         | 
| 161447 | 
            -
                " | 
| 161676 | 
            +
                "Skf": {
         | 
| 161448 161677 | 
             
                  "type": "list",
         | 
| 161449 161678 | 
             
                  "member": {}
         | 
| 161450 161679 | 
             
                },
         | 
| 161451 | 
            -
                " | 
| 161680 | 
            +
                "Sl8": {
         | 
| 161452 161681 | 
             
                  "type": "list",
         | 
| 161453 161682 | 
             
                  "member": {
         | 
| 161454 | 
            -
                    "shape": " | 
| 161683 | 
            +
                    "shape": "Sl9"
         | 
| 161455 161684 | 
             
                  }
         | 
| 161456 161685 | 
             
                },
         | 
| 161457 | 
            -
                " | 
| 161686 | 
            +
                "Sl9": {
         | 
| 161458 161687 | 
             
                  "type": "structure",
         | 
| 161459 161688 | 
             
                  "members": {
         | 
| 161460 161689 | 
             
                    "groupName": {},
         | 
| 161461 161690 | 
             
                    "groupArn": {}
         | 
| 161462 161691 | 
             
                  }
         | 
| 161463 161692 | 
             
                },
         | 
| 161464 | 
            -
                " | 
| 161693 | 
            +
                "Sll": {
         | 
| 161465 161694 | 
             
                  "type": "structure",
         | 
| 161466 161695 | 
             
                  "members": {
         | 
| 161467 161696 | 
             
                    "deprecated": {
         | 
| @@ -161475,7 +161704,7 @@ module.exports={ | |
| 161475 161704 | 
             
                    }
         | 
| 161476 161705 | 
             
                  }
         | 
| 161477 161706 | 
             
                },
         | 
| 161478 | 
            -
                " | 
| 161707 | 
            +
                "Smk": {
         | 
| 161479 161708 | 
             
                  "type": "structure",
         | 
| 161480 161709 | 
             
                  "required": [
         | 
| 161481 161710 | 
             
                    "thingIndexingMode"
         | 
| @@ -161486,10 +161715,10 @@ module.exports={ | |
| 161486 161715 | 
             
                    "deviceDefenderIndexingMode": {},
         | 
| 161487 161716 | 
             
                    "namedShadowIndexingMode": {},
         | 
| 161488 161717 | 
             
                    "managedFields": {
         | 
| 161489 | 
            -
                      "shape": " | 
| 161718 | 
            +
                      "shape": "Smp"
         | 
| 161490 161719 | 
             
                    },
         | 
| 161491 161720 | 
             
                    "customFields": {
         | 
| 161492 | 
            -
                      "shape": " | 
| 161721 | 
            +
                      "shape": "Smp"
         | 
| 161493 161722 | 
             
                    },
         | 
| 161494 161723 | 
             
                    "filter": {
         | 
| 161495 161724 | 
             
                      "type": "structure",
         | 
| @@ -161502,7 +161731,7 @@ module.exports={ | |
| 161502 161731 | 
             
                    }
         | 
| 161503 161732 | 
             
                  }
         | 
| 161504 161733 | 
             
                },
         | 
| 161505 | 
            -
                " | 
| 161734 | 
            +
                "Smp": {
         | 
| 161506 161735 | 
             
                  "type": "list",
         | 
| 161507 161736 | 
             
                  "member": {
         | 
| 161508 161737 | 
             
                    "type": "structure",
         | 
| @@ -161512,7 +161741,7 @@ module.exports={ | |
| 161512 161741 | 
             
                    }
         | 
| 161513 161742 | 
             
                  }
         | 
| 161514 161743 | 
             
                },
         | 
| 161515 | 
            -
                " | 
| 161744 | 
            +
                "Smw": {
         | 
| 161516 161745 | 
             
                  "type": "structure",
         | 
| 161517 161746 | 
             
                  "required": [
         | 
| 161518 161747 | 
             
                    "thingGroupIndexingMode"
         | 
| @@ -161520,20 +161749,20 @@ module.exports={ | |
| 161520 161749 | 
             
                  "members": {
         | 
| 161521 161750 | 
             
                    "thingGroupIndexingMode": {},
         | 
| 161522 161751 | 
             
                    "managedFields": {
         | 
| 161523 | 
            -
                      "shape": " | 
| 161752 | 
            +
                      "shape": "Smp"
         | 
| 161524 161753 | 
             
                    },
         | 
| 161525 161754 | 
             
                    "customFields": {
         | 
| 161526 | 
            -
                      "shape": " | 
| 161755 | 
            +
                      "shape": "Smp"
         | 
| 161527 161756 | 
             
                    }
         | 
| 161528 161757 | 
             
                  }
         | 
| 161529 161758 | 
             
                },
         | 
| 161530 | 
            -
                " | 
| 161759 | 
            +
                "Soe": {
         | 
| 161531 161760 | 
             
                  "type": "structure",
         | 
| 161532 161761 | 
             
                  "members": {
         | 
| 161533 161762 | 
             
                    "confidenceLevel": {}
         | 
| 161534 161763 | 
             
                  }
         | 
| 161535 161764 | 
             
                },
         | 
| 161536 | 
            -
                " | 
| 161765 | 
            +
                "Sol": {
         | 
| 161537 161766 | 
             
                  "type": "list",
         | 
| 161538 161767 | 
             
                  "member": {
         | 
| 161539 161768 | 
             
                    "type": "structure",
         | 
| @@ -161543,7 +161772,7 @@ module.exports={ | |
| 161543 161772 | 
             
                    }
         | 
| 161544 161773 | 
             
                  }
         | 
| 161545 161774 | 
             
                },
         | 
| 161546 | 
            -
                " | 
| 161775 | 
            +
                "Spn": {
         | 
| 161547 161776 | 
             
                  "type": "list",
         | 
| 161548 161777 | 
             
                  "member": {
         | 
| 161549 161778 | 
             
                    "type": "structure",
         | 
| @@ -161558,7 +161787,7 @@ module.exports={ | |
| 161558 161787 | 
             
                    }
         | 
| 161559 161788 | 
             
                  }
         | 
| 161560 161789 | 
             
                },
         | 
| 161561 | 
            -
                " | 
| 161790 | 
            +
                "Sqn": {
         | 
| 161562 161791 | 
             
                  "type": "structure",
         | 
| 161563 161792 | 
             
                  "members": {
         | 
| 161564 161793 | 
             
                    "status": {},
         | 
| @@ -161579,15 +161808,15 @@ module.exports={ | |
| 161579 161808 | 
             
                    }
         | 
| 161580 161809 | 
             
                  }
         | 
| 161581 161810 | 
             
                },
         | 
| 161582 | 
            -
                " | 
| 161811 | 
            +
                "Srp": {
         | 
| 161583 161812 | 
             
                  "type": "list",
         | 
| 161584 161813 | 
             
                  "member": {}
         | 
| 161585 161814 | 
             
                },
         | 
| 161586 | 
            -
                " | 
| 161815 | 
            +
                "Srz": {
         | 
| 161587 161816 | 
             
                  "type": "list",
         | 
| 161588 161817 | 
             
                  "member": {}
         | 
| 161589 161818 | 
             
                },
         | 
| 161590 | 
            -
                " | 
| 161819 | 
            +
                "Ssk": {
         | 
| 161591 161820 | 
             
                  "type": "structure",
         | 
| 161592 161821 | 
             
                  "required": [
         | 
| 161593 161822 | 
             
                    "name",
         | 
| @@ -161598,7 +161827,7 @@ module.exports={ | |
| 161598 161827 | 
             
                    "arn": {}
         | 
| 161599 161828 | 
             
                  }
         | 
| 161600 161829 | 
             
                },
         | 
| 161601 | 
            -
                " | 
| 161830 | 
            +
                "Ssp": {
         | 
| 161602 161831 | 
             
                  "type": "structure",
         | 
| 161603 161832 | 
             
                  "required": [
         | 
| 161604 161833 | 
             
                    "arn"
         | 
| @@ -161607,7 +161836,7 @@ module.exports={ | |
| 161607 161836 | 
             
                    "arn": {}
         | 
| 161608 161837 | 
             
                  }
         | 
| 161609 161838 | 
             
                },
         | 
| 161610 | 
            -
                " | 
| 161839 | 
            +
                "Sud": {
         | 
| 161611 161840 | 
             
                  "type": "structure",
         | 
| 161612 161841 | 
             
                  "required": [
         | 
| 161613 161842 | 
             
                    "targetType"
         | 
| @@ -161617,11 +161846,11 @@ module.exports={ | |
| 161617 161846 | 
             
                    "targetName": {}
         | 
| 161618 161847 | 
             
                  }
         | 
| 161619 161848 | 
             
                },
         | 
| 161620 | 
            -
                " | 
| 161849 | 
            +
                "Sv9": {
         | 
| 161621 161850 | 
             
                  "type": "list",
         | 
| 161622 161851 | 
             
                  "member": {}
         | 
| 161623 161852 | 
             
                },
         | 
| 161624 | 
            -
                " | 
| 161853 | 
            +
                "Sw2": {
         | 
| 161625 161854 | 
             
                  "type": "structure",
         | 
| 161626 161855 | 
             
                  "required": [
         | 
| 161627 161856 | 
             
                    "resources"
         | 
| @@ -161634,11 +161863,11 @@ module.exports={ | |
| 161634 161863 | 
             
                    }
         | 
| 161635 161864 | 
             
                  }
         | 
| 161636 161865 | 
             
                },
         | 
| 161637 | 
            -
                " | 
| 161866 | 
            +
                "Sw6": {
         | 
| 161638 161867 | 
             
                  "type": "list",
         | 
| 161639 161868 | 
             
                  "member": {}
         | 
| 161640 161869 | 
             
                },
         | 
| 161641 | 
            -
                " | 
| 161870 | 
            +
                "Syh": {
         | 
| 161642 161871 | 
             
                  "type": "list",
         | 
| 161643 161872 | 
             
                  "member": {}
         | 
| 161644 161873 | 
             
                }
         | 
| @@ -166965,7 +167194,10 @@ module.exports={ | |
| 166965 167194 | 
             
                        "shape": "Sv"
         | 
| 166966 167195 | 
             
                      },
         | 
| 166967 167196 | 
             
                      "KeyId": {},
         | 
| 166968 | 
            -
                      "EncryptionAlgorithm": {}
         | 
| 167197 | 
            +
                      "EncryptionAlgorithm": {},
         | 
| 167198 | 
            +
                      "Recipient": {
         | 
| 167199 | 
            +
                        "shape": "S21"
         | 
| 167200 | 
            +
                      }
         | 
| 166969 167201 | 
             
                    }
         | 
| 166970 167202 | 
             
                  },
         | 
| 166971 167203 | 
             
                  "output": {
         | 
| @@ -166973,9 +167205,12 @@ module.exports={ | |
| 166973 167205 | 
             
                    "members": {
         | 
| 166974 167206 | 
             
                      "KeyId": {},
         | 
| 166975 167207 | 
             
                      "Plaintext": {
         | 
| 166976 | 
            -
                        "shape": " | 
| 167208 | 
            +
                        "shape": "S25"
         | 
| 166977 167209 | 
             
                      },
         | 
| 166978 | 
            -
                      "EncryptionAlgorithm": {}
         | 
| 167210 | 
            +
                      "EncryptionAlgorithm": {},
         | 
| 167211 | 
            +
                      "CiphertextForRecipient": {
         | 
| 167212 | 
            +
                        "type": "blob"
         | 
| 167213 | 
            +
                      }
         | 
| 166979 167214 | 
             
                    }
         | 
| 166980 167215 | 
             
                  }
         | 
| 166981 167216 | 
             
                },
         | 
| @@ -167159,7 +167394,7 @@ module.exports={ | |
| 167159 167394 | 
             
                    "members": {
         | 
| 167160 167395 | 
             
                      "KeyId": {},
         | 
| 167161 167396 | 
             
                      "Plaintext": {
         | 
| 167162 | 
            -
                        "shape": " | 
| 167397 | 
            +
                        "shape": "S25"
         | 
| 167163 167398 | 
             
                      },
         | 
| 167164 167399 | 
             
                      "EncryptionContext": {
         | 
| 167165 167400 | 
             
                        "shape": "Ss"
         | 
| @@ -167198,6 +167433,9 @@ module.exports={ | |
| 167198 167433 | 
             
                      "KeySpec": {},
         | 
| 167199 167434 | 
             
                      "GrantTokens": {
         | 
| 167200 167435 | 
             
                        "shape": "Sv"
         | 
| 167436 | 
            +
                      },
         | 
| 167437 | 
            +
                      "Recipient": {
         | 
| 167438 | 
            +
                        "shape": "S21"
         | 
| 167201 167439 | 
             
                      }
         | 
| 167202 167440 | 
             
                    }
         | 
| 167203 167441 | 
             
                  },
         | 
| @@ -167208,9 +167446,12 @@ module.exports={ | |
| 167208 167446 | 
             
                        "type": "blob"
         | 
| 167209 167447 | 
             
                      },
         | 
| 167210 167448 | 
             
                      "Plaintext": {
         | 
| 167211 | 
            -
                        "shape": " | 
| 167449 | 
            +
                        "shape": "S25"
         | 
| 167212 167450 | 
             
                      },
         | 
| 167213 | 
            -
                      "KeyId": {}
         | 
| 167451 | 
            +
                      "KeyId": {},
         | 
| 167452 | 
            +
                      "CiphertextForRecipient": {
         | 
| 167453 | 
            +
                        "type": "blob"
         | 
| 167454 | 
            +
                      }
         | 
| 167214 167455 | 
             
                    }
         | 
| 167215 167456 | 
             
                  }
         | 
| 167216 167457 | 
             
                },
         | 
| @@ -167229,6 +167470,9 @@ module.exports={ | |
| 167229 167470 | 
             
                      "KeyPairSpec": {},
         | 
| 167230 167471 | 
             
                      "GrantTokens": {
         | 
| 167231 167472 | 
             
                        "shape": "Sv"
         | 
| 167473 | 
            +
                      },
         | 
| 167474 | 
            +
                      "Recipient": {
         | 
| 167475 | 
            +
                        "shape": "S21"
         | 
| 167232 167476 | 
             
                      }
         | 
| 167233 167477 | 
             
                    }
         | 
| 167234 167478 | 
             
                  },
         | 
| @@ -167239,13 +167483,16 @@ module.exports={ | |
| 167239 167483 | 
             
                        "type": "blob"
         | 
| 167240 167484 | 
             
                      },
         | 
| 167241 167485 | 
             
                      "PrivateKeyPlaintext": {
         | 
| 167242 | 
            -
                        "shape": " | 
| 167486 | 
            +
                        "shape": "S25"
         | 
| 167243 167487 | 
             
                      },
         | 
| 167244 167488 | 
             
                      "PublicKey": {
         | 
| 167245 167489 | 
             
                        "type": "blob"
         | 
| 167246 167490 | 
             
                      },
         | 
| 167247 167491 | 
             
                      "KeyId": {},
         | 
| 167248 | 
            -
                      "KeyPairSpec": {}
         | 
| 167492 | 
            +
                      "KeyPairSpec": {},
         | 
| 167493 | 
            +
                      "CiphertextForRecipient": {
         | 
| 167494 | 
            +
                        "type": "blob"
         | 
| 167495 | 
            +
                      }
         | 
| 167249 167496 | 
             
                    }
         | 
| 167250 167497 | 
             
                  }
         | 
| 167251 167498 | 
             
                },
         | 
| @@ -167321,7 +167568,7 @@ module.exports={ | |
| 167321 167568 | 
             
                    ],
         | 
| 167322 167569 | 
             
                    "members": {
         | 
| 167323 167570 | 
             
                      "Message": {
         | 
| 167324 | 
            -
                        "shape": " | 
| 167571 | 
            +
                        "shape": "S25"
         | 
| 167325 167572 | 
             
                      },
         | 
| 167326 167573 | 
             
                      "KeyId": {},
         | 
| 167327 167574 | 
             
                      "MacAlgorithm": {},
         | 
| @@ -167348,14 +167595,20 @@ module.exports={ | |
| 167348 167595 | 
             
                      "NumberOfBytes": {
         | 
| 167349 167596 | 
             
                        "type": "integer"
         | 
| 167350 167597 | 
             
                      },
         | 
| 167351 | 
            -
                      "CustomKeyStoreId": {}
         | 
| 167598 | 
            +
                      "CustomKeyStoreId": {},
         | 
| 167599 | 
            +
                      "Recipient": {
         | 
| 167600 | 
            +
                        "shape": "S21"
         | 
| 167601 | 
            +
                      }
         | 
| 167352 167602 | 
             
                    }
         | 
| 167353 167603 | 
             
                  },
         | 
| 167354 167604 | 
             
                  "output": {
         | 
| 167355 167605 | 
             
                    "type": "structure",
         | 
| 167356 167606 | 
             
                    "members": {
         | 
| 167357 167607 | 
             
                      "Plaintext": {
         | 
| 167358 | 
            -
                        "shape": " | 
| 167608 | 
            +
                        "shape": "S25"
         | 
| 167609 | 
            +
                      },
         | 
| 167610 | 
            +
                      "CiphertextForRecipient": {
         | 
| 167611 | 
            +
                        "type": "blob"
         | 
| 167359 167612 | 
             
                      }
         | 
| 167360 167613 | 
             
                    }
         | 
| 167361 167614 | 
             
                  }
         | 
| @@ -167420,7 +167673,7 @@ module.exports={ | |
| 167420 167673 | 
             
                        "type": "blob"
         | 
| 167421 167674 | 
             
                      },
         | 
| 167422 167675 | 
             
                      "PublicKey": {
         | 
| 167423 | 
            -
                        "shape": " | 
| 167676 | 
            +
                        "shape": "S25"
         | 
| 167424 167677 | 
             
                      },
         | 
| 167425 167678 | 
             
                      "ParametersValidTo": {
         | 
| 167426 167679 | 
             
                        "type": "timestamp"
         | 
| @@ -167546,7 +167799,7 @@ module.exports={ | |
| 167546 167799 | 
             
                    }
         | 
| 167547 167800 | 
             
                  },
         | 
| 167548 167801 | 
             
                  "output": {
         | 
| 167549 | 
            -
                    "shape": " | 
| 167802 | 
            +
                    "shape": "S3r"
         | 
| 167550 167803 | 
             
                  }
         | 
| 167551 167804 | 
             
                },
         | 
| 167552 167805 | 
             
                "ListKeyPolicies": {
         | 
| @@ -167649,7 +167902,7 @@ module.exports={ | |
| 167649 167902 | 
             
                    }
         | 
| 167650 167903 | 
             
                  },
         | 
| 167651 167904 | 
             
                  "output": {
         | 
| 167652 | 
            -
                    "shape": " | 
| 167905 | 
            +
                    "shape": "S3r"
         | 
| 167653 167906 | 
             
                  }
         | 
| 167654 167907 | 
             
                },
         | 
| 167655 167908 | 
             
                "PutKeyPolicy": {
         | 
| @@ -167803,7 +168056,7 @@ module.exports={ | |
| 167803 168056 | 
             
                    "members": {
         | 
| 167804 168057 | 
             
                      "KeyId": {},
         | 
| 167805 168058 | 
             
                      "Message": {
         | 
| 167806 | 
            -
                        "shape": " | 
| 168059 | 
            +
                        "shape": "S25"
         | 
| 167807 168060 | 
             
                      },
         | 
| 167808 168061 | 
             
                      "MessageType": {},
         | 
| 167809 168062 | 
             
                      "GrantTokens": {
         | 
| @@ -167932,7 +168185,7 @@ module.exports={ | |
| 167932 168185 | 
             
                    "members": {
         | 
| 167933 168186 | 
             
                      "KeyId": {},
         | 
| 167934 168187 | 
             
                      "Message": {
         | 
| 167935 | 
            -
                        "shape": " | 
| 168188 | 
            +
                        "shape": "S25"
         | 
| 167936 168189 | 
             
                      },
         | 
| 167937 168190 | 
             
                      "MessageType": {},
         | 
| 167938 168191 | 
             
                      "Signature": {
         | 
| @@ -167966,7 +168219,7 @@ module.exports={ | |
| 167966 168219 | 
             
                    ],
         | 
| 167967 168220 | 
             
                    "members": {
         | 
| 167968 168221 | 
             
                      "Message": {
         | 
| 167969 | 
            -
                        "shape": " | 
| 168222 | 
            +
                        "shape": "S25"
         | 
| 167970 168223 | 
             
                      },
         | 
| 167971 168224 | 
             
                      "KeyId": {},
         | 
| 167972 168225 | 
             
                      "MacAlgorithm": {},
         | 
| @@ -168147,11 +168400,20 @@ module.exports={ | |
| 168147 168400 | 
             
                    "Region": {}
         | 
| 168148 168401 | 
             
                  }
         | 
| 168149 168402 | 
             
                },
         | 
| 168150 | 
            -
                " | 
| 168403 | 
            +
                "S21": {
         | 
| 168404 | 
            +
                  "type": "structure",
         | 
| 168405 | 
            +
                  "members": {
         | 
| 168406 | 
            +
                    "KeyEncryptionAlgorithm": {},
         | 
| 168407 | 
            +
                    "AttestationDocument": {
         | 
| 168408 | 
            +
                      "type": "blob"
         | 
| 168409 | 
            +
                    }
         | 
| 168410 | 
            +
                  }
         | 
| 168411 | 
            +
                },
         | 
| 168412 | 
            +
                "S25": {
         | 
| 168151 168413 | 
             
                  "type": "blob",
         | 
| 168152 168414 | 
             
                  "sensitive": true
         | 
| 168153 168415 | 
             
                },
         | 
| 168154 | 
            -
                " | 
| 168416 | 
            +
                "S3r": {
         | 
| 168155 168417 | 
             
                  "type": "structure",
         | 
| 168156 168418 | 
             
                  "members": {
         | 
| 168157 168419 | 
             
                    "Grants": {
         | 
| @@ -213042,7 +213304,12 @@ module.exports={ | |
| 213042 213304 | 
             
                            }
         | 
| 213043 213305 | 
             
                          }
         | 
| 213044 213306 | 
             
                        }
         | 
| 213045 | 
            -
                      }
         | 
| 213307 | 
            +
                      },
         | 
| 213308 | 
            +
                      "JobId": {},
         | 
| 213309 | 
            +
                      "Video": {
         | 
| 213310 | 
            +
                        "shape": "S75"
         | 
| 213311 | 
            +
                      },
         | 
| 213312 | 
            +
                      "JobTag": {}
         | 
| 213046 213313 | 
             
                    }
         | 
| 213047 213314 | 
             
                  }
         | 
| 213048 213315 | 
             
                },
         | 
| @@ -213058,7 +213325,8 @@ module.exports={ | |
| 213058 213325 | 
             
                        "type": "integer"
         | 
| 213059 213326 | 
             
                      },
         | 
| 213060 213327 | 
             
                      "NextToken": {},
         | 
| 213061 | 
            -
                      "SortBy": {}
         | 
| 213328 | 
            +
                      "SortBy": {},
         | 
| 213329 | 
            +
                      "AggregateBy": {}
         | 
| 213062 213330 | 
             
                    }
         | 
| 213063 213331 | 
             
                  },
         | 
| 213064 213332 | 
             
                  "output": {
         | 
| @@ -213079,12 +213347,33 @@ module.exports={ | |
| 213079 213347 | 
             
                            },
         | 
| 213080 213348 | 
             
                            "ModerationLabel": {
         | 
| 213081 213349 | 
             
                              "shape": "S5n"
         | 
| 213350 | 
            +
                            },
         | 
| 213351 | 
            +
                            "StartTimestampMillis": {
         | 
| 213352 | 
            +
                              "type": "long"
         | 
| 213353 | 
            +
                            },
         | 
| 213354 | 
            +
                            "EndTimestampMillis": {
         | 
| 213355 | 
            +
                              "type": "long"
         | 
| 213356 | 
            +
                            },
         | 
| 213357 | 
            +
                            "DurationMillis": {
         | 
| 213358 | 
            +
                              "type": "long"
         | 
| 213082 213359 | 
             
                            }
         | 
| 213083 213360 | 
             
                          }
         | 
| 213084 213361 | 
             
                        }
         | 
| 213085 213362 | 
             
                      },
         | 
| 213086 213363 | 
             
                      "NextToken": {},
         | 
| 213087 | 
            -
                      "ModerationModelVersion": {}
         | 
| 213364 | 
            +
                      "ModerationModelVersion": {},
         | 
| 213365 | 
            +
                      "JobId": {},
         | 
| 213366 | 
            +
                      "Video": {
         | 
| 213367 | 
            +
                        "shape": "S75"
         | 
| 213368 | 
            +
                      },
         | 
| 213369 | 
            +
                      "JobTag": {},
         | 
| 213370 | 
            +
                      "GetRequestMetadata": {
         | 
| 213371 | 
            +
                        "type": "structure",
         | 
| 213372 | 
            +
                        "members": {
         | 
| 213373 | 
            +
                          "SortBy": {},
         | 
| 213374 | 
            +
                          "AggregateBy": {}
         | 
| 213375 | 
            +
                        }
         | 
| 213376 | 
            +
                      }
         | 
| 213088 213377 | 
             
                    }
         | 
| 213089 213378 | 
             
                  }
         | 
| 213090 213379 | 
             
                },
         | 
| @@ -213124,7 +213413,12 @@ module.exports={ | |
| 213124 213413 | 
             
                            }
         | 
| 213125 213414 | 
             
                          }
         | 
| 213126 213415 | 
             
                        }
         | 
| 213127 | 
            -
                      }
         | 
| 213416 | 
            +
                      },
         | 
| 213417 | 
            +
                      "JobId": {},
         | 
| 213418 | 
            +
                      "Video": {
         | 
| 213419 | 
            +
                        "shape": "S75"
         | 
| 213420 | 
            +
                      },
         | 
| 213421 | 
            +
                      "JobTag": {}
         | 
| 213128 213422 | 
             
                    }
         | 
| 213129 213423 | 
             
                  }
         | 
| 213130 213424 | 
             
                },
         | 
| @@ -213151,12 +213445,12 @@ module.exports={ | |
| 213151 213445 | 
             
                        "type": "float"
         | 
| 213152 213446 | 
             
                      },
         | 
| 213153 213447 | 
             
                      "ReferenceImage": {
         | 
| 213154 | 
            -
                        "shape": " | 
| 213448 | 
            +
                        "shape": "S7l"
         | 
| 213155 213449 | 
             
                      },
         | 
| 213156 213450 | 
             
                      "AuditImages": {
         | 
| 213157 213451 | 
             
                        "type": "list",
         | 
| 213158 213452 | 
             
                        "member": {
         | 
| 213159 | 
            -
                          "shape": " | 
| 213453 | 
            +
                          "shape": "S7l"
         | 
| 213160 213454 | 
             
                        }
         | 
| 213161 213455 | 
             
                      }
         | 
| 213162 213456 | 
             
                    }
         | 
| @@ -213195,14 +213489,19 @@ module.exports={ | |
| 213195 213489 | 
             
                              "type": "long"
         | 
| 213196 213490 | 
             
                            },
         | 
| 213197 213491 | 
             
                            "Person": {
         | 
| 213198 | 
            -
                              "shape": " | 
| 213492 | 
            +
                              "shape": "S7t"
         | 
| 213199 213493 | 
             
                            },
         | 
| 213200 213494 | 
             
                            "FaceMatches": {
         | 
| 213201 | 
            -
                              "shape": " | 
| 213495 | 
            +
                              "shape": "S7v"
         | 
| 213202 213496 | 
             
                            }
         | 
| 213203 213497 | 
             
                          }
         | 
| 213204 213498 | 
             
                        }
         | 
| 213205 | 
            -
                      }
         | 
| 213499 | 
            +
                      },
         | 
| 213500 | 
            +
                      "JobId": {},
         | 
| 213501 | 
            +
                      "Video": {
         | 
| 213502 | 
            +
                        "shape": "S75"
         | 
| 213503 | 
            +
                      },
         | 
| 213504 | 
            +
                      "JobTag": {}
         | 
| 213206 213505 | 
             
                    }
         | 
| 213207 213506 | 
             
                  }
         | 
| 213208 213507 | 
             
                },
         | 
| @@ -213254,7 +213553,19 @@ module.exports={ | |
| 213254 213553 | 
             
                          }
         | 
| 213255 213554 | 
             
                        }
         | 
| 213256 213555 | 
             
                      },
         | 
| 213257 | 
            -
                      "LabelModelVersion": {}
         | 
| 213556 | 
            +
                      "LabelModelVersion": {},
         | 
| 213557 | 
            +
                      "JobId": {},
         | 
| 213558 | 
            +
                      "Video": {
         | 
| 213559 | 
            +
                        "shape": "S75"
         | 
| 213560 | 
            +
                      },
         | 
| 213561 | 
            +
                      "JobTag": {},
         | 
| 213562 | 
            +
                      "GetRequestMetadata": {
         | 
| 213563 | 
            +
                        "type": "structure",
         | 
| 213564 | 
            +
                        "members": {
         | 
| 213565 | 
            +
                          "SortBy": {},
         | 
| 213566 | 
            +
                          "AggregateBy": {}
         | 
| 213567 | 
            +
                        }
         | 
| 213568 | 
            +
                      }
         | 
| 213258 213569 | 
             
                    }
         | 
| 213259 213570 | 
             
                  }
         | 
| 213260 213571 | 
             
                },
         | 
| @@ -213291,11 +213602,16 @@ module.exports={ | |
| 213291 213602 | 
             
                              "type": "long"
         | 
| 213292 213603 | 
             
                            },
         | 
| 213293 213604 | 
             
                            "Person": {
         | 
| 213294 | 
            -
                              "shape": " | 
| 213605 | 
            +
                              "shape": "S7t"
         | 
| 213295 213606 | 
             
                            }
         | 
| 213296 213607 | 
             
                          }
         | 
| 213297 213608 | 
             
                        }
         | 
| 213298 | 
            -
                      }
         | 
| 213609 | 
            +
                      },
         | 
| 213610 | 
            +
                      "JobId": {},
         | 
| 213611 | 
            +
                      "Video": {
         | 
| 213612 | 
            +
                        "shape": "S75"
         | 
| 213613 | 
            +
                      },
         | 
| 213614 | 
            +
                      "JobTag": {}
         | 
| 213299 213615 | 
             
                    }
         | 
| 213300 213616 | 
             
                  }
         | 
| 213301 213617 | 
             
                },
         | 
| @@ -213402,7 +213718,12 @@ module.exports={ | |
| 213402 213718 | 
             
                            "ModelVersion": {}
         | 
| 213403 213719 | 
             
                          }
         | 
| 213404 213720 | 
             
                        }
         | 
| 213405 | 
            -
                      }
         | 
| 213721 | 
            +
                      },
         | 
| 213722 | 
            +
                      "JobId": {},
         | 
| 213723 | 
            +
                      "Video": {
         | 
| 213724 | 
            +
                        "shape": "S75"
         | 
| 213725 | 
            +
                      },
         | 
| 213726 | 
            +
                      "JobTag": {}
         | 
| 213406 213727 | 
             
                    }
         | 
| 213407 213728 | 
             
                  }
         | 
| 213408 213729 | 
             
                },
         | 
| @@ -213443,7 +213764,12 @@ module.exports={ | |
| 213443 213764 | 
             
                        }
         | 
| 213444 213765 | 
             
                      },
         | 
| 213445 213766 | 
             
                      "NextToken": {},
         | 
| 213446 | 
            -
                      "TextModelVersion": {}
         | 
| 213767 | 
            +
                      "TextModelVersion": {},
         | 
| 213768 | 
            +
                      "JobId": {},
         | 
| 213769 | 
            +
                      "Video": {
         | 
| 213770 | 
            +
                        "shape": "S75"
         | 
| 213771 | 
            +
                      },
         | 
| 213772 | 
            +
                      "JobTag": {}
         | 
| 213447 213773 | 
             
                    }
         | 
| 213448 213774 | 
             
                  }
         | 
| 213449 213775 | 
             
                },
         | 
| @@ -213478,7 +213804,7 @@ module.exports={ | |
| 213478 213804 | 
             
                          "type": "structure",
         | 
| 213479 213805 | 
             
                          "members": {
         | 
| 213480 213806 | 
             
                            "Face": {
         | 
| 213481 | 
            -
                              "shape": " | 
| 213807 | 
            +
                              "shape": "S7x"
         | 
| 213482 213808 | 
             
                            },
         | 
| 213483 213809 | 
             
                            "FaceDetail": {
         | 
| 213484 213810 | 
             
                              "shape": "S4e"
         | 
| @@ -213628,7 +213954,7 @@ module.exports={ | |
| 213628 213954 | 
             
                      "Faces": {
         | 
| 213629 213955 | 
             
                        "type": "list",
         | 
| 213630 213956 | 
             
                        "member": {
         | 
| 213631 | 
            -
                          "shape": " | 
| 213957 | 
            +
                          "shape": "S7x"
         | 
| 213632 213958 | 
             
                        }
         | 
| 213633 213959 | 
             
                      },
         | 
| 213634 213960 | 
             
                      "NextToken": {},
         | 
| @@ -213813,7 +214139,7 @@ module.exports={ | |
| 213813 214139 | 
             
                    "members": {
         | 
| 213814 214140 | 
             
                      "SearchedFaceId": {},
         | 
| 213815 214141 | 
             
                      "FaceMatches": {
         | 
| 213816 | 
            -
                        "shape": " | 
| 214142 | 
            +
                        "shape": "S7v"
         | 
| 213817 214143 | 
             
                      },
         | 
| 213818 214144 | 
             
                      "FaceModelVersion": {}
         | 
| 213819 214145 | 
             
                    }
         | 
| @@ -213850,7 +214176,7 @@ module.exports={ | |
| 213850 214176 | 
             
                        "type": "float"
         | 
| 213851 214177 | 
             
                      },
         | 
| 213852 214178 | 
             
                      "FaceMatches": {
         | 
| 213853 | 
            -
                        "shape": " | 
| 214179 | 
            +
                        "shape": "S7v"
         | 
| 213854 214180 | 
             
                      },
         | 
| 213855 214181 | 
             
                      "FaceModelVersion": {}
         | 
| 213856 214182 | 
             
                    }
         | 
| @@ -213864,11 +214190,11 @@ module.exports={ | |
| 213864 214190 | 
             
                    ],
         | 
| 213865 214191 | 
             
                    "members": {
         | 
| 213866 214192 | 
             
                      "Video": {
         | 
| 213867 | 
            -
                        "shape": " | 
| 214193 | 
            +
                        "shape": "S75"
         | 
| 213868 214194 | 
             
                      },
         | 
| 213869 214195 | 
             
                      "ClientRequestToken": {},
         | 
| 213870 214196 | 
             
                      "NotificationChannel": {
         | 
| 213871 | 
            -
                        "shape": " | 
| 214197 | 
            +
                        "shape": "Saj"
         | 
| 213872 214198 | 
             
                      },
         | 
| 213873 214199 | 
             
                      "JobTag": {}
         | 
| 213874 214200 | 
             
                    }
         | 
| @@ -213889,14 +214215,14 @@ module.exports={ | |
| 213889 214215 | 
             
                    ],
         | 
| 213890 214216 | 
             
                    "members": {
         | 
| 213891 214217 | 
             
                      "Video": {
         | 
| 213892 | 
            -
                        "shape": " | 
| 214218 | 
            +
                        "shape": "S75"
         | 
| 213893 214219 | 
             
                      },
         | 
| 213894 214220 | 
             
                      "MinConfidence": {
         | 
| 213895 214221 | 
             
                        "type": "float"
         | 
| 213896 214222 | 
             
                      },
         | 
| 213897 214223 | 
             
                      "ClientRequestToken": {},
         | 
| 213898 214224 | 
             
                      "NotificationChannel": {
         | 
| 213899 | 
            -
                        "shape": " | 
| 214225 | 
            +
                        "shape": "Saj"
         | 
| 213900 214226 | 
             
                      },
         | 
| 213901 214227 | 
             
                      "JobTag": {}
         | 
| 213902 214228 | 
             
                    }
         | 
| @@ -213917,11 +214243,11 @@ module.exports={ | |
| 213917 214243 | 
             
                    ],
         | 
| 213918 214244 | 
             
                    "members": {
         | 
| 213919 214245 | 
             
                      "Video": {
         | 
| 213920 | 
            -
                        "shape": " | 
| 214246 | 
            +
                        "shape": "S75"
         | 
| 213921 214247 | 
             
                      },
         | 
| 213922 214248 | 
             
                      "ClientRequestToken": {},
         | 
| 213923 214249 | 
             
                      "NotificationChannel": {
         | 
| 213924 | 
            -
                        "shape": " | 
| 214250 | 
            +
                        "shape": "Saj"
         | 
| 213925 214251 | 
             
                      },
         | 
| 213926 214252 | 
             
                      "FaceAttributes": {},
         | 
| 213927 214253 | 
             
                      "JobTag": {}
         | 
| @@ -213944,7 +214270,7 @@ module.exports={ | |
| 213944 214270 | 
             
                    ],
         | 
| 213945 214271 | 
             
                    "members": {
         | 
| 213946 214272 | 
             
                      "Video": {
         | 
| 213947 | 
            -
                        "shape": " | 
| 214273 | 
            +
                        "shape": "S75"
         | 
| 213948 214274 | 
             
                      },
         | 
| 213949 214275 | 
             
                      "ClientRequestToken": {},
         | 
| 213950 214276 | 
             
                      "FaceMatchThreshold": {
         | 
| @@ -213952,7 +214278,7 @@ module.exports={ | |
| 213952 214278 | 
             
                      },
         | 
| 213953 214279 | 
             
                      "CollectionId": {},
         | 
| 213954 214280 | 
             
                      "NotificationChannel": {
         | 
| 213955 | 
            -
                        "shape": " | 
| 214281 | 
            +
                        "shape": "Saj"
         | 
| 213956 214282 | 
             
                      },
         | 
| 213957 214283 | 
             
                      "JobTag": {}
         | 
| 213958 214284 | 
             
                    }
         | 
| @@ -213973,14 +214299,14 @@ module.exports={ | |
| 213973 214299 | 
             
                    ],
         | 
| 213974 214300 | 
             
                    "members": {
         | 
| 213975 214301 | 
             
                      "Video": {
         | 
| 213976 | 
            -
                        "shape": " | 
| 214302 | 
            +
                        "shape": "S75"
         | 
| 213977 214303 | 
             
                      },
         | 
| 213978 214304 | 
             
                      "ClientRequestToken": {},
         | 
| 213979 214305 | 
             
                      "MinConfidence": {
         | 
| 213980 214306 | 
             
                        "type": "float"
         | 
| 213981 214307 | 
             
                      },
         | 
| 213982 214308 | 
             
                      "NotificationChannel": {
         | 
| 213983 | 
            -
                        "shape": " | 
| 214309 | 
            +
                        "shape": "Saj"
         | 
| 213984 214310 | 
             
                      },
         | 
| 213985 214311 | 
             
                      "JobTag": {},
         | 
| 213986 214312 | 
             
                      "Features": {
         | 
| @@ -214013,11 +214339,11 @@ module.exports={ | |
| 214013 214339 | 
             
                    ],
         | 
| 214014 214340 | 
             
                    "members": {
         | 
| 214015 214341 | 
             
                      "Video": {
         | 
| 214016 | 
            -
                        "shape": " | 
| 214342 | 
            +
                        "shape": "S75"
         | 
| 214017 214343 | 
             
                      },
         | 
| 214018 214344 | 
             
                      "ClientRequestToken": {},
         | 
| 214019 214345 | 
             
                      "NotificationChannel": {
         | 
| 214020 | 
            -
                        "shape": " | 
| 214346 | 
            +
                        "shape": "Saj"
         | 
| 214021 214347 | 
             
                      },
         | 
| 214022 214348 | 
             
                      "JobTag": {}
         | 
| 214023 214349 | 
             
                    }
         | 
| @@ -214063,11 +214389,11 @@ module.exports={ | |
| 214063 214389 | 
             
                    ],
         | 
| 214064 214390 | 
             
                    "members": {
         | 
| 214065 214391 | 
             
                      "Video": {
         | 
| 214066 | 
            -
                        "shape": " | 
| 214392 | 
            +
                        "shape": "S75"
         | 
| 214067 214393 | 
             
                      },
         | 
| 214068 214394 | 
             
                      "ClientRequestToken": {},
         | 
| 214069 214395 | 
             
                      "NotificationChannel": {
         | 
| 214070 | 
            -
                        "shape": " | 
| 214396 | 
            +
                        "shape": "Saj"
         | 
| 214071 214397 | 
             
                      },
         | 
| 214072 214398 | 
             
                      "JobTag": {},
         | 
| 214073 214399 | 
             
                      "Filters": {
         | 
| @@ -214163,11 +214489,11 @@ module.exports={ | |
| 214163 214489 | 
             
                    ],
         | 
| 214164 214490 | 
             
                    "members": {
         | 
| 214165 214491 | 
             
                      "Video": {
         | 
| 214166 | 
            -
                        "shape": " | 
| 214492 | 
            +
                        "shape": "S75"
         | 
| 214167 214493 | 
             
                      },
         | 
| 214168 214494 | 
             
                      "ClientRequestToken": {},
         | 
| 214169 214495 | 
             
                      "NotificationChannel": {
         | 
| 214170 | 
            -
                        "shape": " | 
| 214496 | 
            +
                        "shape": "Saj"
         | 
| 214171 214497 | 
             
                      },
         | 
| 214172 214498 | 
             
                      "JobTag": {},
         | 
| 214173 214499 | 
             
                      "Filters": {
         | 
| @@ -214945,7 +215271,15 @@ module.exports={ | |
| 214945 215271 | 
             
                    "ColorRange": {}
         | 
| 214946 215272 | 
             
                  }
         | 
| 214947 215273 | 
             
                },
         | 
| 214948 | 
            -
                " | 
| 215274 | 
            +
                "S75": {
         | 
| 215275 | 
            +
                  "type": "structure",
         | 
| 215276 | 
            +
                  "members": {
         | 
| 215277 | 
            +
                    "S3Object": {
         | 
| 215278 | 
            +
                      "shape": "S4"
         | 
| 215279 | 
            +
                    }
         | 
| 215280 | 
            +
                  }
         | 
| 215281 | 
            +
                },
         | 
| 215282 | 
            +
                "S7l": {
         | 
| 214949 215283 | 
             
                  "type": "structure",
         | 
| 214950 215284 | 
             
                  "members": {
         | 
| 214951 215285 | 
             
                    "Bytes": {
         | 
| @@ -214960,7 +215294,7 @@ module.exports={ | |
| 214960 215294 | 
             
                    }
         | 
| 214961 215295 | 
             
                  }
         | 
| 214962 215296 | 
             
                },
         | 
| 214963 | 
            -
                " | 
| 215297 | 
            +
                "S7t": {
         | 
| 214964 215298 | 
             
                  "type": "structure",
         | 
| 214965 215299 | 
             
                  "members": {
         | 
| 214966 215300 | 
             
                    "Index": {
         | 
| @@ -214974,7 +215308,7 @@ module.exports={ | |
| 214974 215308 | 
             
                    }
         | 
| 214975 215309 | 
             
                  }
         | 
| 214976 215310 | 
             
                },
         | 
| 214977 | 
            -
                " | 
| 215311 | 
            +
                "S7v": {
         | 
| 214978 215312 | 
             
                  "type": "list",
         | 
| 214979 215313 | 
             
                  "member": {
         | 
| 214980 215314 | 
             
                    "type": "structure",
         | 
| @@ -214983,12 +215317,12 @@ module.exports={ | |
| 214983 215317 | 
             
                        "type": "float"
         | 
| 214984 215318 | 
             
                      },
         | 
| 214985 215319 | 
             
                      "Face": {
         | 
| 214986 | 
            -
                        "shape": " | 
| 215320 | 
            +
                        "shape": "S7x"
         | 
| 214987 215321 | 
             
                      }
         | 
| 214988 215322 | 
             
                    }
         | 
| 214989 215323 | 
             
                  }
         | 
| 214990 215324 | 
             
                },
         | 
| 214991 | 
            -
                " | 
| 215325 | 
            +
                "S7x": {
         | 
| 214992 215326 | 
             
                  "type": "structure",
         | 
| 214993 215327 | 
             
                  "members": {
         | 
| 214994 215328 | 
             
                    "FaceId": {},
         | 
| @@ -215003,15 +215337,7 @@ module.exports={ | |
| 215003 215337 | 
             
                    "IndexFacesModelVersion": {}
         | 
| 215004 215338 | 
             
                  }
         | 
| 215005 215339 | 
             
                },
         | 
| 215006 | 
            -
                " | 
| 215007 | 
            -
                  "type": "structure",
         | 
| 215008 | 
            -
                  "members": {
         | 
| 215009 | 
            -
                    "S3Object": {
         | 
| 215010 | 
            -
                      "shape": "S4"
         | 
| 215011 | 
            -
                    }
         | 
| 215012 | 
            -
                  }
         | 
| 215013 | 
            -
                },
         | 
| 215014 | 
            -
                "Saf": {
         | 
| 215340 | 
            +
                "Saj": {
         | 
| 215015 215341 | 
             
                  "type": "structure",
         | 
| 215016 215342 | 
             
                  "required": [
         | 
| 215017 215343 | 
             
                    "SNSTopicArn",
         | 
| @@ -256274,7 +256600,7 @@ AWS.util.update(AWS, { | |
| 256274 256600 | 
             
              /**
         | 
| 256275 256601 | 
             
               * @constant
         | 
| 256276 256602 | 
             
               */
         | 
| 256277 | 
            -
              VERSION: '2. | 
| 256603 | 
            +
              VERSION: '2.1369.0',
         | 
| 256278 256604 |  | 
| 256279 256605 | 
             
              /**
         | 
| 256280 256606 | 
             
               * @api private
         | 
| @@ -262166,6 +262492,15 @@ function buildRequest(req) { | |
| 262166 262492 | 
             
              var builder = new JsonBuilder();
         | 
| 262167 262493 |  | 
| 262168 262494 | 
             
              if (version === 1) version = '1.0';
         | 
| 262495 | 
            +
             | 
| 262496 | 
            +
              if (api.awsQueryCompatible) {
         | 
| 262497 | 
            +
                if (!httpRequest.params) {
         | 
| 262498 | 
            +
                  httpRequest.params = {};
         | 
| 262499 | 
            +
                }
         | 
| 262500 | 
            +
                // because Query protocol does this.
         | 
| 262501 | 
            +
                Object.assign(httpRequest.params, req.params);
         | 
| 262502 | 
            +
              }
         | 
| 262503 | 
            +
             | 
| 262169 262504 | 
             
              httpRequest.body = builder.build(req.params || {}, input);
         | 
| 262170 262505 | 
             
              httpRequest.headers['Content-Type'] = 'application/x-amz-json-' + version;
         | 
| 262171 262506 | 
             
              httpRequest.headers['X-Amz-Target'] = target;
         | 
| @@ -268492,7 +268827,7 @@ AWS.util.update(AWS.SQS.prototype, { | |
| 268492 268827 | 
             
               * @api private
         | 
| 268493 268828 | 
             
               */
         | 
| 268494 268829 | 
             
              setupRequestListeners: function setupRequestListeners(request) {
         | 
| 268495 | 
            -
                request.addListener('build', this.buildEndpoint | 
| 268830 | 
            +
                request.addListener('build', this.buildEndpoint);
         | 
| 268496 268831 |  | 
| 268497 268832 | 
             
                if (request.service.config.computeChecksums) {
         | 
| 268498 268833 | 
             
                  if (request.operation === 'sendMessage') {
         | 
| @@ -268605,8 +268940,7 @@ AWS.util.update(AWS.SQS.prototype, { | |
| 268605 268940 | 
             
               * @api private
         | 
| 268606 268941 | 
             
               */
         | 
| 268607 268942 | 
             
              buildEndpoint: function buildEndpoint(request) {
         | 
| 268608 | 
            -
                var  | 
| 268609 | 
            -
                var url = params.QueueUrl;
         | 
| 268943 | 
            +
                var url = request.httpRequest.params.QueueUrl;
         | 
| 268610 268944 | 
             
                if (url) {
         | 
| 268611 268945 | 
             
                  request.httpRequest.endpoint = new AWS.Endpoint(url);
         | 
| 268612 268946 |  | 
| @@ -278392,7 +278726,7 @@ var LRUCache = /** @class */ (function () { | |
| 278392 278726 | 
             
            }());
         | 
| 278393 278727 | 
             
            exports.LRUCache = LRUCache;
         | 
| 278394 278728 | 
             
            },{}],462:[function(require,module,exports){
         | 
| 278395 | 
            -
            // AWS SDK for JavaScript v2. | 
| 278729 | 
            +
            // AWS SDK for JavaScript v2.1369.0
         | 
| 278396 278730 | 
             
            // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
         | 
| 278397 278731 | 
             
            // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
         | 
| 278398 278732 | 
             
            require('./browser_loader');
         |