aws-sdk 2.1370.0 → 2.1372.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 +22 -1
- package/README.md +1 -1
- package/apis/appsync-2017-07-25.min.json +42 -34
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/inspector2-2020-06-08.min.json +305 -133
- package/apis/iottwinmaker-2021-11-29.min.json +10 -3
- package/apis/monitoring-2010-08-01.min.json +19 -15
- package/apis/network-firewall-2020-11-12.min.json +79 -68
- package/apis/opensearch-2021-01-01.min.json +141 -27
- package/apis/quicksight-2018-04-01.min.json +2136 -684
- package/apis/quicksight-2018-04-01.paginators.json +10 -0
- package/apis/rekognition-2016-06-27.min.json +101 -90
- package/apis/s3-2006-03-01.examples.json +115 -115
- package/apis/securityhub-2018-10-26.examples.json +45 -0
- package/apis/securityhub-2018-10-26.min.json +71 -3
- package/apis/securityhub-2018-10-26.paginators.json +6 -0
- package/apis/sqs-2012-11-05.min.json +36 -103
- package/apis/sqs-2012-11-05.paginators.json +3 -3
- package/apis/wellarchitected-2020-03-31.min.json +44 -39
- package/clients/appsync.d.ts +15 -2
- package/clients/cloudwatch.d.ts +11 -6
- package/clients/configservice.d.ts +1 -1
- package/clients/connect.d.ts +11 -11
- package/clients/inspector2.d.ts +181 -9
- package/clients/iottwinmaker.d.ts +15 -0
- package/clients/networkfirewall.d.ts +15 -5
- package/clients/opensearch.d.ts +203 -16
- package/clients/quicksight.d.ts +1918 -96
- package/clients/rekognition.d.ts +22 -8
- package/clients/s3.d.ts +168 -168
- package/clients/sagemaker.d.ts +1 -1
- package/clients/securityhub.d.ts +102 -15
- package/clients/sqs.d.ts +42 -42
- package/clients/wellarchitected.d.ts +13 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +16 -16
- package/dist/aws-sdk.js +168 -213
- package/dist/aws-sdk.min.js +60 -60
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -30,6 +30,12 @@ | |
| 30 30 | 
             
                  "limit_key": "MaxResults",
         | 
| 31 31 | 
             
                  "result_key": "StandardsSubscriptions"
         | 
| 32 32 | 
             
                },
         | 
| 33 | 
            +
                "GetFindingHistory": {
         | 
| 34 | 
            +
                  "input_token": "NextToken",
         | 
| 35 | 
            +
                  "output_token": "NextToken",
         | 
| 36 | 
            +
                  "limit_key": "MaxResults",
         | 
| 37 | 
            +
                  "result_key": "Records"
         | 
| 38 | 
            +
                },
         | 
| 33 39 | 
             
                "GetFindings": {
         | 
| 34 40 | 
             
                  "input_token": "NextToken",
         | 
| 35 41 | 
             
                  "output_token": "NextToken",
         | 
| @@ -2,14 +2,16 @@ | |
| 2 2 | 
             
              "version": "2.0",
         | 
| 3 3 | 
             
              "metadata": {
         | 
| 4 4 | 
             
                "apiVersion": "2012-11-05",
         | 
| 5 | 
            +
                "awsQueryCompatible": {},
         | 
| 5 6 | 
             
                "endpointPrefix": "sqs",
         | 
| 6 | 
            -
                " | 
| 7 | 
            +
                "jsonVersion": "1.0",
         | 
| 8 | 
            +
                "protocol": "json",
         | 
| 7 9 | 
             
                "serviceAbbreviation": "Amazon SQS",
         | 
| 8 10 | 
             
                "serviceFullName": "Amazon Simple Queue Service",
         | 
| 9 11 | 
             
                "serviceId": "SQS",
         | 
| 10 12 | 
             
                "signatureVersion": "v4",
         | 
| 11 | 
            -
                " | 
| 12 | 
            -
                " | 
| 13 | 
            +
                "targetPrefix": "AmazonSQS",
         | 
| 14 | 
            +
                "uid": "sqs-2012-11-05"
         | 
| 13 15 | 
             
              },
         | 
| 14 16 | 
             
              "operations": {
         | 
| 15 17 | 
             
                "AddPermission": {
         | 
| @@ -26,16 +28,12 @@ | |
| 26 28 | 
             
                      "Label": {},
         | 
| 27 29 | 
             
                      "AWSAccountIds": {
         | 
| 28 30 | 
             
                        "type": "list",
         | 
| 29 | 
            -
                        "member": {
         | 
| 30 | 
            -
                          "locationName": "AWSAccountId"
         | 
| 31 | 
            -
                        },
         | 
| 31 | 
            +
                        "member": {},
         | 
| 32 32 | 
             
                        "flattened": true
         | 
| 33 33 | 
             
                      },
         | 
| 34 34 | 
             
                      "Actions": {
         | 
| 35 35 | 
             
                        "type": "list",
         | 
| 36 | 
            -
                        "member": {
         | 
| 37 | 
            -
                          "locationName": "ActionName"
         | 
| 38 | 
            -
                        },
         | 
| 36 | 
            +
                        "member": {},
         | 
| 39 37 | 
             
                        "flattened": true
         | 
| 40 38 | 
             
                      }
         | 
| 41 39 | 
             
                    }
         | 
| @@ -70,7 +68,6 @@ | |
| 70 68 | 
             
                      "Entries": {
         | 
| 71 69 | 
             
                        "type": "list",
         | 
| 72 70 | 
             
                        "member": {
         | 
| 73 | 
            -
                          "locationName": "ChangeMessageVisibilityBatchRequestEntry",
         | 
| 74 71 | 
             
                          "type": "structure",
         | 
| 75 72 | 
             
                          "required": [
         | 
| 76 73 | 
             
                            "Id",
         | 
| @@ -89,7 +86,6 @@ | |
| 89 86 | 
             
                    }
         | 
| 90 87 | 
             
                  },
         | 
| 91 88 | 
             
                  "output": {
         | 
| 92 | 
            -
                    "resultWrapper": "ChangeMessageVisibilityBatchResult",
         | 
| 93 89 | 
             
                    "type": "structure",
         | 
| 94 90 | 
             
                    "required": [
         | 
| 95 91 | 
             
                      "Successful",
         | 
| @@ -99,7 +95,6 @@ | |
| 99 95 | 
             
                      "Successful": {
         | 
| 100 96 | 
             
                        "type": "list",
         | 
| 101 97 | 
             
                        "member": {
         | 
| 102 | 
            -
                          "locationName": "ChangeMessageVisibilityBatchResultEntry",
         | 
| 103 98 | 
             
                          "type": "structure",
         | 
| 104 99 | 
             
                          "required": [
         | 
| 105 100 | 
             
                            "Id"
         | 
| @@ -125,17 +120,14 @@ | |
| 125 120 | 
             
                    "members": {
         | 
| 126 121 | 
             
                      "QueueName": {},
         | 
| 127 122 | 
             
                      "Attributes": {
         | 
| 128 | 
            -
                        "shape": "Sh" | 
| 129 | 
            -
                        "locationName": "Attribute"
         | 
| 123 | 
            +
                        "shape": "Sh"
         | 
| 130 124 | 
             
                      },
         | 
| 131 125 | 
             
                      "tags": {
         | 
| 132 | 
            -
                        "shape": "Sj" | 
| 133 | 
            -
                        "locationName": "Tag"
         | 
| 126 | 
            +
                        "shape": "Sj"
         | 
| 134 127 | 
             
                      }
         | 
| 135 128 | 
             
                    }
         | 
| 136 129 | 
             
                  },
         | 
| 137 130 | 
             
                  "output": {
         | 
| 138 | 
            -
                    "resultWrapper": "CreateQueueResult",
         | 
| 139 131 | 
             
                    "type": "structure",
         | 
| 140 132 | 
             
                    "members": {
         | 
| 141 133 | 
             
                      "QueueUrl": {}
         | 
| @@ -167,7 +159,6 @@ | |
| 167 159 | 
             
                      "Entries": {
         | 
| 168 160 | 
             
                        "type": "list",
         | 
| 169 161 | 
             
                        "member": {
         | 
| 170 | 
            -
                          "locationName": "DeleteMessageBatchRequestEntry",
         | 
| 171 162 | 
             
                          "type": "structure",
         | 
| 172 163 | 
             
                          "required": [
         | 
| 173 164 | 
             
                            "Id",
         | 
| @@ -183,7 +174,6 @@ | |
| 183 174 | 
             
                    }
         | 
| 184 175 | 
             
                  },
         | 
| 185 176 | 
             
                  "output": {
         | 
| 186 | 
            -
                    "resultWrapper": "DeleteMessageBatchResult",
         | 
| 187 177 | 
             
                    "type": "structure",
         | 
| 188 178 | 
             
                    "required": [
         | 
| 189 179 | 
             
                      "Successful",
         | 
| @@ -193,7 +183,6 @@ | |
| 193 183 | 
             
                      "Successful": {
         | 
| 194 184 | 
             
                        "type": "list",
         | 
| 195 185 | 
             
                        "member": {
         | 
| 196 | 
            -
                          "locationName": "DeleteMessageBatchResultEntry",
         | 
| 197 186 | 
             
                          "type": "structure",
         | 
| 198 187 | 
             
                          "required": [
         | 
| 199 188 | 
             
                            "Id"
         | 
| @@ -235,12 +224,10 @@ | |
| 235 224 | 
             
                    }
         | 
| 236 225 | 
             
                  },
         | 
| 237 226 | 
             
                  "output": {
         | 
| 238 | 
            -
                    "resultWrapper": "GetQueueAttributesResult",
         | 
| 239 227 | 
             
                    "type": "structure",
         | 
| 240 228 | 
             
                    "members": {
         | 
| 241 229 | 
             
                      "Attributes": {
         | 
| 242 | 
            -
                        "shape": "Sh" | 
| 243 | 
            -
                        "locationName": "Attribute"
         | 
| 230 | 
            +
                        "shape": "Sh"
         | 
| 244 231 | 
             
                      }
         | 
| 245 232 | 
             
                    }
         | 
| 246 233 | 
             
                  }
         | 
| @@ -257,7 +244,6 @@ | |
| 257 244 | 
             
                    }
         | 
| 258 245 | 
             
                  },
         | 
| 259 246 | 
             
                  "output": {
         | 
| 260 | 
            -
                    "resultWrapper": "GetQueueUrlResult",
         | 
| 261 247 | 
             
                    "type": "structure",
         | 
| 262 248 | 
             
                    "members": {
         | 
| 263 249 | 
             
                      "QueueUrl": {}
         | 
| @@ -279,7 +265,6 @@ | |
| 279 265 | 
             
                    }
         | 
| 280 266 | 
             
                  },
         | 
| 281 267 | 
             
                  "output": {
         | 
| 282 | 
            -
                    "resultWrapper": "ListDeadLetterSourceQueuesResult",
         | 
| 283 268 | 
             
                    "type": "structure",
         | 
| 284 269 | 
             
                    "required": [
         | 
| 285 270 | 
             
                      "queueUrls"
         | 
| @@ -303,12 +288,10 @@ | |
| 303 288 | 
             
                    }
         | 
| 304 289 | 
             
                  },
         | 
| 305 290 | 
             
                  "output": {
         | 
| 306 | 
            -
                    "resultWrapper": "ListQueueTagsResult",
         | 
| 307 291 | 
             
                    "type": "structure",
         | 
| 308 292 | 
             
                    "members": {
         | 
| 309 293 | 
             
                      "Tags": {
         | 
| 310 | 
            -
                        "shape": "Sj" | 
| 311 | 
            -
                        "locationName": "Tag"
         | 
| 294 | 
            +
                        "shape": "Sj"
         | 
| 312 295 | 
             
                      }
         | 
| 313 296 | 
             
                    }
         | 
| 314 297 | 
             
                  }
         | 
| @@ -325,7 +308,6 @@ | |
| 325 308 | 
             
                    }
         | 
| 326 309 | 
             
                  },
         | 
| 327 310 | 
             
                  "output": {
         | 
| 328 | 
            -
                    "resultWrapper": "ListQueuesResult",
         | 
| 329 311 | 
             
                    "type": "structure",
         | 
| 330 312 | 
             
                    "members": {
         | 
| 331 313 | 
             
                      "QueueUrls": {
         | 
| @@ -359,9 +341,7 @@ | |
| 359 341 | 
             
                      },
         | 
| 360 342 | 
             
                      "MessageAttributeNames": {
         | 
| 361 343 | 
             
                        "type": "list",
         | 
| 362 | 
            -
                        "member": {
         | 
| 363 | 
            -
                          "locationName": "MessageAttributeName"
         | 
| 364 | 
            -
                        },
         | 
| 344 | 
            +
                        "member": {},
         | 
| 365 345 | 
             
                        "flattened": true
         | 
| 366 346 | 
             
                      },
         | 
| 367 347 | 
             
                      "MaxNumberOfMessages": {
         | 
| @@ -377,13 +357,11 @@ | |
| 377 357 | 
             
                    }
         | 
| 378 358 | 
             
                  },
         | 
| 379 359 | 
             
                  "output": {
         | 
| 380 | 
            -
                    "resultWrapper": "ReceiveMessageResult",
         | 
| 381 360 | 
             
                    "type": "structure",
         | 
| 382 361 | 
             
                    "members": {
         | 
| 383 362 | 
             
                      "Messages": {
         | 
| 384 363 | 
             
                        "type": "list",
         | 
| 385 364 | 
             
                        "member": {
         | 
| 386 | 
            -
                          "locationName": "Message",
         | 
| 387 365 | 
             
                          "type": "structure",
         | 
| 388 366 | 
             
                          "members": {
         | 
| 389 367 | 
             
                            "MessageId": {},
         | 
| @@ -391,20 +369,14 @@ | |
| 391 369 | 
             
                            "MD5OfBody": {},
         | 
| 392 370 | 
             
                            "Body": {},
         | 
| 393 371 | 
             
                            "Attributes": {
         | 
| 394 | 
            -
                              "locationName": "Attribute",
         | 
| 395 372 | 
             
                              "type": "map",
         | 
| 396 | 
            -
                              "key": {
         | 
| 397 | 
            -
             | 
| 398 | 
            -
                              },
         | 
| 399 | 
            -
                              "value": {
         | 
| 400 | 
            -
                                "locationName": "Value"
         | 
| 401 | 
            -
                              },
         | 
| 373 | 
            +
                              "key": {},
         | 
| 374 | 
            +
                              "value": {},
         | 
| 402 375 | 
             
                              "flattened": true
         | 
| 403 376 | 
             
                            },
         | 
| 404 377 | 
             
                            "MD5OfMessageAttributes": {},
         | 
| 405 378 | 
             
                            "MessageAttributes": {
         | 
| 406 | 
            -
                              "shape": "S1i" | 
| 407 | 
            -
                              "locationName": "MessageAttribute"
         | 
| 379 | 
            +
                              "shape": "S1i"
         | 
| 408 380 | 
             
                            }
         | 
| 409 381 | 
             
                          }
         | 
| 410 382 | 
             
                        },
         | 
| @@ -440,19 +412,16 @@ | |
| 440 412 | 
             
                        "type": "integer"
         | 
| 441 413 | 
             
                      },
         | 
| 442 414 | 
             
                      "MessageAttributes": {
         | 
| 443 | 
            -
                        "shape": "S1i" | 
| 444 | 
            -
                        "locationName": "MessageAttribute"
         | 
| 415 | 
            +
                        "shape": "S1i"
         | 
| 445 416 | 
             
                      },
         | 
| 446 417 | 
             
                      "MessageSystemAttributes": {
         | 
| 447 | 
            -
                        "shape": "S1p" | 
| 448 | 
            -
                        "locationName": "MessageSystemAttribute"
         | 
| 418 | 
            +
                        "shape": "S1p"
         | 
| 449 419 | 
             
                      },
         | 
| 450 420 | 
             
                      "MessageDeduplicationId": {},
         | 
| 451 421 | 
             
                      "MessageGroupId": {}
         | 
| 452 422 | 
             
                    }
         | 
| 453 423 | 
             
                  },
         | 
| 454 424 | 
             
                  "output": {
         | 
| 455 | 
            -
                    "resultWrapper": "SendMessageResult",
         | 
| 456 425 | 
             
                    "type": "structure",
         | 
| 457 426 | 
             
                    "members": {
         | 
| 458 427 | 
             
                      "MD5OfMessageBody": {},
         | 
| @@ -475,7 +444,6 @@ | |
| 475 444 | 
             
                      "Entries": {
         | 
| 476 445 | 
             
                        "type": "list",
         | 
| 477 446 | 
             
                        "member": {
         | 
| 478 | 
            -
                          "locationName": "SendMessageBatchRequestEntry",
         | 
| 479 447 | 
             
                          "type": "structure",
         | 
| 480 448 | 
             
                          "required": [
         | 
| 481 449 | 
             
                            "Id",
         | 
| @@ -488,12 +456,10 @@ | |
| 488 456 | 
             
                              "type": "integer"
         | 
| 489 457 | 
             
                            },
         | 
| 490 458 | 
             
                            "MessageAttributes": {
         | 
| 491 | 
            -
                              "shape": "S1i" | 
| 492 | 
            -
                              "locationName": "MessageAttribute"
         | 
| 459 | 
            +
                              "shape": "S1i"
         | 
| 493 460 | 
             
                            },
         | 
| 494 461 | 
             
                            "MessageSystemAttributes": {
         | 
| 495 | 
            -
                              "shape": "S1p" | 
| 496 | 
            -
                              "locationName": "MessageSystemAttribute"
         | 
| 462 | 
            +
                              "shape": "S1p"
         | 
| 497 463 | 
             
                            },
         | 
| 498 464 | 
             
                            "MessageDeduplicationId": {},
         | 
| 499 465 | 
             
                            "MessageGroupId": {}
         | 
| @@ -504,7 +470,6 @@ | |
| 504 470 | 
             
                    }
         | 
| 505 471 | 
             
                  },
         | 
| 506 472 | 
             
                  "output": {
         | 
| 507 | 
            -
                    "resultWrapper": "SendMessageBatchResult",
         | 
| 508 473 | 
             
                    "type": "structure",
         | 
| 509 474 | 
             
                    "required": [
         | 
| 510 475 | 
             
                      "Successful",
         | 
| @@ -514,7 +479,6 @@ | |
| 514 479 | 
             
                      "Successful": {
         | 
| 515 480 | 
             
                        "type": "list",
         | 
| 516 481 | 
             
                        "member": {
         | 
| 517 | 
            -
                          "locationName": "SendMessageBatchResultEntry",
         | 
| 518 482 | 
             
                          "type": "structure",
         | 
| 519 483 | 
             
                          "required": [
         | 
| 520 484 | 
             
                            "Id",
         | 
| @@ -548,8 +512,7 @@ | |
| 548 512 | 
             
                    "members": {
         | 
| 549 513 | 
             
                      "QueueUrl": {},
         | 
| 550 514 | 
             
                      "Attributes": {
         | 
| 551 | 
            -
                        "shape": "Sh" | 
| 552 | 
            -
                        "locationName": "Attribute"
         | 
| 515 | 
            +
                        "shape": "Sh"
         | 
| 553 516 | 
             
                      }
         | 
| 554 517 | 
             
                    }
         | 
| 555 518 | 
             
                  }
         | 
| @@ -580,9 +543,7 @@ | |
| 580 543 | 
             
                      "QueueUrl": {},
         | 
| 581 544 | 
             
                      "TagKeys": {
         | 
| 582 545 | 
             
                        "type": "list",
         | 
| 583 | 
            -
                        "member": {
         | 
| 584 | 
            -
                          "locationName": "TagKey"
         | 
| 585 | 
            -
                        },
         | 
| 546 | 
            +
                        "member": {},
         | 
| 586 547 | 
             
                        "flattened": true
         | 
| 587 548 | 
             
                      }
         | 
| 588 549 | 
             
                    }
         | 
| @@ -593,7 +554,6 @@ | |
| 593 554 | 
             
                "Sd": {
         | 
| 594 555 | 
             
                  "type": "list",
         | 
| 595 556 | 
             
                  "member": {
         | 
| 596 | 
            -
                    "locationName": "BatchResultErrorEntry",
         | 
| 597 557 | 
             
                    "type": "structure",
         | 
| 598 558 | 
             
                    "required": [
         | 
| 599 559 | 
             
                      "Id",
         | 
| @@ -613,47 +573,30 @@ | |
| 613 573 | 
             
                },
         | 
| 614 574 | 
             
                "Sh": {
         | 
| 615 575 | 
             
                  "type": "map",
         | 
| 616 | 
            -
                  "key": {
         | 
| 617 | 
            -
             | 
| 618 | 
            -
                   | 
| 619 | 
            -
                  "value": {
         | 
| 620 | 
            -
                    "locationName": "Value"
         | 
| 621 | 
            -
                  },
         | 
| 622 | 
            -
                  "flattened": true,
         | 
| 623 | 
            -
                  "locationName": "Attribute"
         | 
| 576 | 
            +
                  "key": {},
         | 
| 577 | 
            +
                  "value": {},
         | 
| 578 | 
            +
                  "flattened": true
         | 
| 624 579 | 
             
                },
         | 
| 625 580 | 
             
                "Sj": {
         | 
| 626 581 | 
             
                  "type": "map",
         | 
| 627 | 
            -
                  "key": {
         | 
| 628 | 
            -
             | 
| 629 | 
            -
                   | 
| 630 | 
            -
                  "value": {
         | 
| 631 | 
            -
                    "locationName": "Value"
         | 
| 632 | 
            -
                  },
         | 
| 633 | 
            -
                  "flattened": true,
         | 
| 634 | 
            -
                  "locationName": "Tag"
         | 
| 582 | 
            +
                  "key": {},
         | 
| 583 | 
            +
                  "value": {},
         | 
| 584 | 
            +
                  "flattened": true
         | 
| 635 585 | 
             
                },
         | 
| 636 586 | 
             
                "Sw": {
         | 
| 637 587 | 
             
                  "type": "list",
         | 
| 638 | 
            -
                  "member": {
         | 
| 639 | 
            -
                    "locationName": "AttributeName"
         | 
| 640 | 
            -
                  },
         | 
| 588 | 
            +
                  "member": {},
         | 
| 641 589 | 
             
                  "flattened": true
         | 
| 642 590 | 
             
                },
         | 
| 643 591 | 
             
                "S14": {
         | 
| 644 592 | 
             
                  "type": "list",
         | 
| 645 | 
            -
                  "member": {
         | 
| 646 | 
            -
                    "locationName": "QueueUrl"
         | 
| 647 | 
            -
                  },
         | 
| 593 | 
            +
                  "member": {},
         | 
| 648 594 | 
             
                  "flattened": true
         | 
| 649 595 | 
             
                },
         | 
| 650 596 | 
             
                "S1i": {
         | 
| 651 597 | 
             
                  "type": "map",
         | 
| 652 | 
            -
                  "key": {
         | 
| 653 | 
            -
                    "locationName": "Name"
         | 
| 654 | 
            -
                  },
         | 
| 598 | 
            +
                  "key": {},
         | 
| 655 599 | 
             
                  "value": {
         | 
| 656 | 
            -
                    "locationName": "Value",
         | 
| 657 600 | 
             
                    "type": "structure",
         | 
| 658 601 | 
             
                    "required": [
         | 
| 659 602 | 
             
                      "DataType"
         | 
| @@ -665,13 +608,11 @@ | |
| 665 608 | 
             
                      },
         | 
| 666 609 | 
             
                      "StringListValues": {
         | 
| 667 610 | 
             
                        "shape": "S1l",
         | 
| 668 | 
            -
                        "flattened": true | 
| 669 | 
            -
                        "locationName": "StringListValue"
         | 
| 611 | 
            +
                        "flattened": true
         | 
| 670 612 | 
             
                      },
         | 
| 671 613 | 
             
                      "BinaryListValues": {
         | 
| 672 614 | 
             
                        "shape": "S1m",
         | 
| 673 | 
            -
                        "flattened": true | 
| 674 | 
            -
                        "locationName": "BinaryListValue"
         | 
| 615 | 
            +
                        "flattened": true
         | 
| 675 616 | 
             
                      },
         | 
| 676 617 | 
             
                      "DataType": {}
         | 
| 677 618 | 
             
                    }
         | 
| @@ -680,24 +621,18 @@ | |
| 680 621 | 
             
                },
         | 
| 681 622 | 
             
                "S1l": {
         | 
| 682 623 | 
             
                  "type": "list",
         | 
| 683 | 
            -
                  "member": {
         | 
| 684 | 
            -
                    "locationName": "StringListValue"
         | 
| 685 | 
            -
                  }
         | 
| 624 | 
            +
                  "member": {}
         | 
| 686 625 | 
             
                },
         | 
| 687 626 | 
             
                "S1m": {
         | 
| 688 627 | 
             
                  "type": "list",
         | 
| 689 628 | 
             
                  "member": {
         | 
| 690 | 
            -
                    "locationName": "BinaryListValue",
         | 
| 691 629 | 
             
                    "type": "blob"
         | 
| 692 630 | 
             
                  }
         | 
| 693 631 | 
             
                },
         | 
| 694 632 | 
             
                "S1p": {
         | 
| 695 633 | 
             
                  "type": "map",
         | 
| 696 | 
            -
                  "key": {
         | 
| 697 | 
            -
                    "locationName": "Name"
         | 
| 698 | 
            -
                  },
         | 
| 634 | 
            +
                  "key": {},
         | 
| 699 635 | 
             
                  "value": {
         | 
| 700 | 
            -
                    "locationName": "Value",
         | 
| 701 636 | 
             
                    "type": "structure",
         | 
| 702 637 | 
             
                    "required": [
         | 
| 703 638 | 
             
                      "DataType"
         | 
| @@ -709,13 +644,11 @@ | |
| 709 644 | 
             
                      },
         | 
| 710 645 | 
             
                      "StringListValues": {
         | 
| 711 646 | 
             
                        "shape": "S1l",
         | 
| 712 | 
            -
                        "flattened": true | 
| 713 | 
            -
                        "locationName": "StringListValue"
         | 
| 647 | 
            +
                        "flattened": true
         | 
| 714 648 | 
             
                      },
         | 
| 715 649 | 
             
                      "BinaryListValues": {
         | 
| 716 650 | 
             
                        "shape": "S1m",
         | 
| 717 | 
            -
                        "flattened": true | 
| 718 | 
            -
                        "locationName": "BinaryListValue"
         | 
| 651 | 
            +
                        "flattened": true
         | 
| 719 652 | 
             
                      },
         | 
| 720 653 | 
             
                      "DataType": {}
         | 
| 721 654 | 
             
                    }
         | 
| @@ -2,15 +2,15 @@ | |
| 2 2 | 
             
              "pagination": {
         | 
| 3 3 | 
             
                "ListDeadLetterSourceQueues": {
         | 
| 4 4 | 
             
                  "input_token": "NextToken",
         | 
| 5 | 
            -
                  "limit_key": "MaxResults",
         | 
| 6 5 | 
             
                  "output_token": "NextToken",
         | 
| 6 | 
            +
                  "limit_key": "MaxResults",
         | 
| 7 7 | 
             
                  "result_key": "queueUrls"
         | 
| 8 8 | 
             
                },
         | 
| 9 9 | 
             
                "ListQueues": {
         | 
| 10 10 | 
             
                  "input_token": "NextToken",
         | 
| 11 | 
            -
                  "limit_key": "MaxResults",
         | 
| 12 11 | 
             
                  "output_token": "NextToken",
         | 
| 12 | 
            +
                  "limit_key": "MaxResults",
         | 
| 13 13 | 
             
                  "result_key": "QueueUrls"
         | 
| 14 14 | 
             
                }
         | 
| 15 15 | 
             
              }
         | 
| 16 | 
            -
            }
         | 
| 16 | 
            +
            }
         |