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
| @@ -620,6 +620,104 @@ | |
| 620 620 | 
             
                    }
         | 
| 621 621 | 
             
                  }
         | 
| 622 622 | 
             
                },
         | 
| 623 | 
            +
                "DescribeDomainHealth": {
         | 
| 624 | 
            +
                  "http": {
         | 
| 625 | 
            +
                    "method": "GET",
         | 
| 626 | 
            +
                    "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/health"
         | 
| 627 | 
            +
                  },
         | 
| 628 | 
            +
                  "input": {
         | 
| 629 | 
            +
                    "type": "structure",
         | 
| 630 | 
            +
                    "required": [
         | 
| 631 | 
            +
                      "DomainName"
         | 
| 632 | 
            +
                    ],
         | 
| 633 | 
            +
                    "members": {
         | 
| 634 | 
            +
                      "DomainName": {
         | 
| 635 | 
            +
                        "location": "uri",
         | 
| 636 | 
            +
                        "locationName": "DomainName"
         | 
| 637 | 
            +
                      }
         | 
| 638 | 
            +
                    }
         | 
| 639 | 
            +
                  },
         | 
| 640 | 
            +
                  "output": {
         | 
| 641 | 
            +
                    "type": "structure",
         | 
| 642 | 
            +
                    "members": {
         | 
| 643 | 
            +
                      "DomainState": {},
         | 
| 644 | 
            +
                      "AvailabilityZoneCount": {},
         | 
| 645 | 
            +
                      "ActiveAvailabilityZoneCount": {},
         | 
| 646 | 
            +
                      "StandByAvailabilityZoneCount": {},
         | 
| 647 | 
            +
                      "DataNodeCount": {},
         | 
| 648 | 
            +
                      "DedicatedMaster": {
         | 
| 649 | 
            +
                        "type": "boolean"
         | 
| 650 | 
            +
                      },
         | 
| 651 | 
            +
                      "MasterEligibleNodeCount": {},
         | 
| 652 | 
            +
                      "WarmNodeCount": {},
         | 
| 653 | 
            +
                      "MasterNode": {},
         | 
| 654 | 
            +
                      "ClusterHealth": {},
         | 
| 655 | 
            +
                      "TotalShards": {},
         | 
| 656 | 
            +
                      "TotalUnAssignedShards": {},
         | 
| 657 | 
            +
                      "EnvironmentInformation": {
         | 
| 658 | 
            +
                        "type": "list",
         | 
| 659 | 
            +
                        "member": {
         | 
| 660 | 
            +
                          "type": "structure",
         | 
| 661 | 
            +
                          "members": {
         | 
| 662 | 
            +
                            "AvailabilityZoneInformation": {
         | 
| 663 | 
            +
                              "type": "list",
         | 
| 664 | 
            +
                              "member": {
         | 
| 665 | 
            +
                                "type": "structure",
         | 
| 666 | 
            +
                                "members": {
         | 
| 667 | 
            +
                                  "AvailabilityZoneName": {},
         | 
| 668 | 
            +
                                  "ZoneStatus": {},
         | 
| 669 | 
            +
                                  "ConfiguredDataNodeCount": {},
         | 
| 670 | 
            +
                                  "AvailableDataNodeCount": {},
         | 
| 671 | 
            +
                                  "TotalShards": {},
         | 
| 672 | 
            +
                                  "TotalUnAssignedShards": {}
         | 
| 673 | 
            +
                                }
         | 
| 674 | 
            +
                              }
         | 
| 675 | 
            +
                            }
         | 
| 676 | 
            +
                          }
         | 
| 677 | 
            +
                        }
         | 
| 678 | 
            +
                      }
         | 
| 679 | 
            +
                    }
         | 
| 680 | 
            +
                  }
         | 
| 681 | 
            +
                },
         | 
| 682 | 
            +
                "DescribeDomainNodes": {
         | 
| 683 | 
            +
                  "http": {
         | 
| 684 | 
            +
                    "method": "GET",
         | 
| 685 | 
            +
                    "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/nodes"
         | 
| 686 | 
            +
                  },
         | 
| 687 | 
            +
                  "input": {
         | 
| 688 | 
            +
                    "type": "structure",
         | 
| 689 | 
            +
                    "required": [
         | 
| 690 | 
            +
                      "DomainName"
         | 
| 691 | 
            +
                    ],
         | 
| 692 | 
            +
                    "members": {
         | 
| 693 | 
            +
                      "DomainName": {
         | 
| 694 | 
            +
                        "location": "uri",
         | 
| 695 | 
            +
                        "locationName": "DomainName"
         | 
| 696 | 
            +
                      }
         | 
| 697 | 
            +
                    }
         | 
| 698 | 
            +
                  },
         | 
| 699 | 
            +
                  "output": {
         | 
| 700 | 
            +
                    "type": "structure",
         | 
| 701 | 
            +
                    "members": {
         | 
| 702 | 
            +
                      "DomainNodesStatusList": {
         | 
| 703 | 
            +
                        "type": "list",
         | 
| 704 | 
            +
                        "member": {
         | 
| 705 | 
            +
                          "type": "structure",
         | 
| 706 | 
            +
                          "members": {
         | 
| 707 | 
            +
                            "NodeId": {},
         | 
| 708 | 
            +
                            "NodeType": {},
         | 
| 709 | 
            +
                            "AvailabilityZone": {},
         | 
| 710 | 
            +
                            "InstanceType": {},
         | 
| 711 | 
            +
                            "NodeStatus": {},
         | 
| 712 | 
            +
                            "StorageType": {},
         | 
| 713 | 
            +
                            "StorageVolumeType": {},
         | 
| 714 | 
            +
                            "StorageSize": {}
         | 
| 715 | 
            +
                          }
         | 
| 716 | 
            +
                        }
         | 
| 717 | 
            +
                      }
         | 
| 718 | 
            +
                    }
         | 
| 719 | 
            +
                  }
         | 
| 720 | 
            +
                },
         | 
| 623 721 | 
             
                "DescribeDomains": {
         | 
| 624 722 | 
             
                  "http": {
         | 
| 625 723 | 
             
                    "requestUri": "/2021-01-01/opensearch/domain-info"
         | 
| @@ -681,13 +779,13 @@ | |
| 681 779 | 
             
                    "type": "structure",
         | 
| 682 780 | 
             
                    "members": {
         | 
| 683 781 | 
             
                      "DryRunProgressStatus": {
         | 
| 684 | 
            -
                        "shape": " | 
| 782 | 
            +
                        "shape": "S6a"
         | 
| 685 783 | 
             
                      },
         | 
| 686 784 | 
             
                      "DryRunConfig": {
         | 
| 687 785 | 
             
                        "shape": "S2q"
         | 
| 688 786 | 
             
                      },
         | 
| 689 787 | 
             
                      "DryRunResults": {
         | 
| 690 | 
            -
                        "shape": " | 
| 788 | 
            +
                        "shape": "S6d"
         | 
| 691 789 | 
             
                      }
         | 
| 692 790 | 
             
                    }
         | 
| 693 791 | 
             
                  }
         | 
| @@ -700,7 +798,7 @@ | |
| 700 798 | 
             
                    "type": "structure",
         | 
| 701 799 | 
             
                    "members": {
         | 
| 702 800 | 
             
                      "Filters": {
         | 
| 703 | 
            -
                        "shape": " | 
| 801 | 
            +
                        "shape": "S6g"
         | 
| 704 802 | 
             
                      },
         | 
| 705 803 | 
             
                      "MaxResults": {
         | 
| 706 804 | 
             
                        "type": "integer"
         | 
| @@ -770,7 +868,7 @@ | |
| 770 868 | 
             
                                      "members": {
         | 
| 771 869 | 
             
                                        "LimitName": {},
         | 
| 772 870 | 
             
                                        "LimitValues": {
         | 
| 773 | 
            -
                                          "shape": " | 
| 871 | 
            +
                                          "shape": "S6x"
         | 
| 774 872 | 
             
                                        }
         | 
| 775 873 | 
             
                                      }
         | 
| 776 874 | 
             
                                    }
         | 
| @@ -801,7 +899,7 @@ | |
| 801 899 | 
             
                                "members": {
         | 
| 802 900 | 
             
                                  "LimitName": {},
         | 
| 803 901 | 
             
                                  "LimitValues": {
         | 
| 804 | 
            -
                                    "shape": " | 
| 902 | 
            +
                                    "shape": "S6x"
         | 
| 805 903 | 
             
                                  }
         | 
| 806 904 | 
             
                                }
         | 
| 807 905 | 
             
                              }
         | 
| @@ -820,7 +918,7 @@ | |
| 820 918 | 
             
                    "type": "structure",
         | 
| 821 919 | 
             
                    "members": {
         | 
| 822 920 | 
             
                      "Filters": {
         | 
| 823 | 
            -
                        "shape": " | 
| 921 | 
            +
                        "shape": "S6g"
         | 
| 824 922 | 
             
                      },
         | 
| 825 923 | 
             
                      "MaxResults": {
         | 
| 826 924 | 
             
                        "type": "integer"
         | 
| @@ -926,7 +1024,7 @@ | |
| 926 1024 | 
             
                            "CurrencyCode": {},
         | 
| 927 1025 | 
             
                            "PaymentOption": {},
         | 
| 928 1026 | 
             
                            "RecurringCharges": {
         | 
| 929 | 
            -
                              "shape": " | 
| 1027 | 
            +
                              "shape": "S7n"
         | 
| 930 1028 | 
             
                            }
         | 
| 931 1029 | 
             
                          }
         | 
| 932 1030 | 
             
                        }
         | 
| @@ -992,7 +1090,7 @@ | |
| 992 1090 | 
             
                            "State": {},
         | 
| 993 1091 | 
             
                            "PaymentOption": {},
         | 
| 994 1092 | 
             
                            "RecurringCharges": {
         | 
| 995 | 
            -
                              "shape": " | 
| 1093 | 
            +
                              "shape": "S7n"
         | 
| 996 1094 | 
             
                            }
         | 
| 997 1095 | 
             
                          }
         | 
| 998 1096 | 
             
                        }
         | 
| @@ -1097,7 +1195,7 @@ | |
| 1097 1195 | 
             
                          "members": {
         | 
| 1098 1196 | 
             
                            "SourceVersion": {},
         | 
| 1099 1197 | 
             
                            "TargetVersions": {
         | 
| 1100 | 
            -
                              "shape": " | 
| 1198 | 
            +
                              "shape": "S88"
         | 
| 1101 1199 | 
             
                            }
         | 
| 1102 1200 | 
             
                          }
         | 
| 1103 1201 | 
             
                        }
         | 
| @@ -1301,7 +1399,7 @@ | |
| 1301 1399 | 
             
                    "type": "structure",
         | 
| 1302 1400 | 
             
                    "members": {
         | 
| 1303 1401 | 
             
                      "DomainPackageDetailsList": {
         | 
| 1304 | 
            -
                        "shape": " | 
| 1402 | 
            +
                        "shape": "S8z"
         | 
| 1305 1403 | 
             
                      },
         | 
| 1306 1404 | 
             
                      "NextToken": {}
         | 
| 1307 1405 | 
             
                    }
         | 
| @@ -1334,6 +1432,15 @@ | |
| 1334 1432 | 
             
                      "NextToken": {
         | 
| 1335 1433 | 
             
                        "location": "querystring",
         | 
| 1336 1434 | 
             
                        "locationName": "nextToken"
         | 
| 1435 | 
            +
                      },
         | 
| 1436 | 
            +
                      "RetrieveAZs": {
         | 
| 1437 | 
            +
                        "location": "querystring",
         | 
| 1438 | 
            +
                        "locationName": "retrieveAZs",
         | 
| 1439 | 
            +
                        "type": "boolean"
         | 
| 1440 | 
            +
                      },
         | 
| 1441 | 
            +
                      "InstanceType": {
         | 
| 1442 | 
            +
                        "location": "querystring",
         | 
| 1443 | 
            +
                        "locationName": "instanceType"
         | 
| 1337 1444 | 
             
                      }
         | 
| 1338 1445 | 
             
                    }
         | 
| 1339 1446 | 
             
                  },
         | 
| @@ -1364,6 +1471,10 @@ | |
| 1364 1471 | 
             
                            "InstanceRole": {
         | 
| 1365 1472 | 
             
                              "type": "list",
         | 
| 1366 1473 | 
             
                              "member": {}
         | 
| 1474 | 
            +
                            },
         | 
| 1475 | 
            +
                            "AvailabilityZones": {
         | 
| 1476 | 
            +
                              "type": "list",
         | 
| 1477 | 
            +
                              "member": {}
         | 
| 1367 1478 | 
             
                            }
         | 
| 1368 1479 | 
             
                          }
         | 
| 1369 1480 | 
             
                        }
         | 
| @@ -1402,7 +1513,7 @@ | |
| 1402 1513 | 
             
                    "type": "structure",
         | 
| 1403 1514 | 
             
                    "members": {
         | 
| 1404 1515 | 
             
                      "DomainPackageDetailsList": {
         | 
| 1405 | 
            -
                        "shape": " | 
| 1516 | 
            +
                        "shape": "S8z"
         | 
| 1406 1517 | 
             
                      },
         | 
| 1407 1518 | 
             
                      "NextToken": {}
         | 
| 1408 1519 | 
             
                    }
         | 
| @@ -1440,7 +1551,7 @@ | |
| 1440 1551 | 
             
                      "ScheduledActions": {
         | 
| 1441 1552 | 
             
                        "type": "list",
         | 
| 1442 1553 | 
             
                        "member": {
         | 
| 1443 | 
            -
                          "shape": " | 
| 1554 | 
            +
                          "shape": "S9c"
         | 
| 1444 1555 | 
             
                        }
         | 
| 1445 1556 | 
             
                      },
         | 
| 1446 1557 | 
             
                      "NextToken": {}
         | 
| @@ -1496,7 +1607,7 @@ | |
| 1496 1607 | 
             
                    "type": "structure",
         | 
| 1497 1608 | 
             
                    "members": {
         | 
| 1498 1609 | 
             
                      "Versions": {
         | 
| 1499 | 
            -
                        "shape": " | 
| 1610 | 
            +
                        "shape": "S88"
         | 
| 1500 1611 | 
             
                      },
         | 
| 1501 1612 | 
             
                      "NextToken": {}
         | 
| 1502 1613 | 
             
                    }
         | 
| @@ -1562,7 +1673,7 @@ | |
| 1562 1673 | 
             
                    ],
         | 
| 1563 1674 | 
             
                    "members": {
         | 
| 1564 1675 | 
             
                      "VpcEndpointSummaryList": {
         | 
| 1565 | 
            -
                        "shape": " | 
| 1676 | 
            +
                        "shape": "S9q"
         | 
| 1566 1677 | 
             
                      },
         | 
| 1567 1678 | 
             
                      "NextToken": {}
         | 
| 1568 1679 | 
             
                    }
         | 
| @@ -1597,7 +1708,7 @@ | |
| 1597 1708 | 
             
                    ],
         | 
| 1598 1709 | 
             
                    "members": {
         | 
| 1599 1710 | 
             
                      "VpcEndpointSummaryList": {
         | 
| 1600 | 
            -
                        "shape": " | 
| 1711 | 
            +
                        "shape": "S9q"
         | 
| 1601 1712 | 
             
                      },
         | 
| 1602 1713 | 
             
                      "NextToken": {}
         | 
| 1603 1714 | 
             
                    }
         | 
| @@ -1795,10 +1906,10 @@ | |
| 1795 1906 | 
             
                        "shape": "S4u"
         | 
| 1796 1907 | 
             
                      },
         | 
| 1797 1908 | 
             
                      "DryRunResults": {
         | 
| 1798 | 
            -
                        "shape": " | 
| 1909 | 
            +
                        "shape": "S6d"
         | 
| 1799 1910 | 
             
                      },
         | 
| 1800 1911 | 
             
                      "DryRunProgressStatus": {
         | 
| 1801 | 
            -
                        "shape": " | 
| 1912 | 
            +
                        "shape": "S6a"
         | 
| 1802 1913 | 
             
                      }
         | 
| 1803 1914 | 
             
                    }
         | 
| 1804 1915 | 
             
                  }
         | 
| @@ -1861,7 +1972,7 @@ | |
| 1861 1972 | 
             
                    "type": "structure",
         | 
| 1862 1973 | 
             
                    "members": {
         | 
| 1863 1974 | 
             
                      "ScheduledAction": {
         | 
| 1864 | 
            -
                        "shape": " | 
| 1975 | 
            +
                        "shape": "S9c"
         | 
| 1865 1976 | 
             
                      }
         | 
| 1866 1977 | 
             
                    }
         | 
| 1867 1978 | 
             
                  }
         | 
| @@ -2081,6 +2192,9 @@ | |
| 2081 2192 | 
             
                          "type": "boolean"
         | 
| 2082 2193 | 
             
                        }
         | 
| 2083 2194 | 
             
                      }
         | 
| 2195 | 
            +
                    },
         | 
| 2196 | 
            +
                    "MultiAZWithStandbyEnabled": {
         | 
| 2197 | 
            +
                      "type": "boolean"
         | 
| 2084 2198 | 
             
                    }
         | 
| 2085 2199 | 
             
                  }
         | 
| 2086 2200 | 
             
                },
         | 
| @@ -2815,7 +2929,7 @@ | |
| 2815 2929 | 
             
                    }
         | 
| 2816 2930 | 
             
                  }
         | 
| 2817 2931 | 
             
                },
         | 
| 2818 | 
            -
                " | 
| 2932 | 
            +
                "S6a": {
         | 
| 2819 2933 | 
             
                  "type": "structure",
         | 
| 2820 2934 | 
             
                  "required": [
         | 
| 2821 2935 | 
             
                    "DryRunId",
         | 
| @@ -2840,14 +2954,14 @@ | |
| 2840 2954 | 
             
                    }
         | 
| 2841 2955 | 
             
                  }
         | 
| 2842 2956 | 
             
                },
         | 
| 2843 | 
            -
                " | 
| 2957 | 
            +
                "S6d": {
         | 
| 2844 2958 | 
             
                  "type": "structure",
         | 
| 2845 2959 | 
             
                  "members": {
         | 
| 2846 2960 | 
             
                    "DeploymentType": {},
         | 
| 2847 2961 | 
             
                    "Message": {}
         | 
| 2848 2962 | 
             
                  }
         | 
| 2849 2963 | 
             
                },
         | 
| 2850 | 
            -
                " | 
| 2964 | 
            +
                "S6g": {
         | 
| 2851 2965 | 
             
                  "type": "list",
         | 
| 2852 2966 | 
             
                  "member": {
         | 
| 2853 2967 | 
             
                    "type": "structure",
         | 
| @@ -2860,11 +2974,11 @@ | |
| 2860 2974 | 
             
                    }
         | 
| 2861 2975 | 
             
                  }
         | 
| 2862 2976 | 
             
                },
         | 
| 2863 | 
            -
                " | 
| 2977 | 
            +
                "S6x": {
         | 
| 2864 2978 | 
             
                  "type": "list",
         | 
| 2865 2979 | 
             
                  "member": {}
         | 
| 2866 2980 | 
             
                },
         | 
| 2867 | 
            -
                " | 
| 2981 | 
            +
                "S7n": {
         | 
| 2868 2982 | 
             
                  "type": "list",
         | 
| 2869 2983 | 
             
                  "member": {
         | 
| 2870 2984 | 
             
                    "type": "structure",
         | 
| @@ -2876,17 +2990,17 @@ | |
| 2876 2990 | 
             
                    }
         | 
| 2877 2991 | 
             
                  }
         | 
| 2878 2992 | 
             
                },
         | 
| 2879 | 
            -
                " | 
| 2993 | 
            +
                "S88": {
         | 
| 2880 2994 | 
             
                  "type": "list",
         | 
| 2881 2995 | 
             
                  "member": {}
         | 
| 2882 2996 | 
             
                },
         | 
| 2883 | 
            -
                " | 
| 2997 | 
            +
                "S8z": {
         | 
| 2884 2998 | 
             
                  "type": "list",
         | 
| 2885 2999 | 
             
                  "member": {
         | 
| 2886 3000 | 
             
                    "shape": "Sn"
         | 
| 2887 3001 | 
             
                  }
         | 
| 2888 3002 | 
             
                },
         | 
| 2889 | 
            -
                " | 
| 3003 | 
            +
                "S9c": {
         | 
| 2890 3004 | 
             
                  "type": "structure",
         | 
| 2891 3005 | 
             
                  "required": [
         | 
| 2892 3006 | 
             
                    "Id",
         | 
| @@ -2912,7 +3026,7 @@ | |
| 2912 3026 | 
             
                    }
         | 
| 2913 3027 | 
             
                  }
         | 
| 2914 3028 | 
             
                },
         | 
| 2915 | 
            -
                " | 
| 3029 | 
            +
                "S9q": {
         | 
| 2916 3030 | 
             
                  "type": "list",
         | 
| 2917 3031 | 
             
                  "member": {
         | 
| 2918 3032 | 
             
                    "shape": "S41"
         |