aws-sdk 2.1631.0 → 2.1633.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/README.md +1 -1
- package/apis/batch-2016-08-10.min.json +51 -9
- package/apis/codeguru-security-2018-05-10.min.json +6 -0
- package/apis/eks-2017-11-01.min.json +126 -83
- package/apis/elasticache-2015-02-02.min.json +3 -0
- package/apis/iottwinmaker-2021-11-29.min.json +3 -1
- package/apis/launch-wizard-2018-05-10.min.json +159 -0
- package/clients/amplify.d.ts +13 -13
- package/clients/batch.d.ts +42 -1
- package/clients/codebuild.d.ts +2 -2
- package/clients/codegurusecurity.d.ts +60 -55
- package/clients/eks.d.ts +69 -19
- package/clients/elasticache.d.ts +6 -6
- package/clients/iottwinmaker.d.ts +1 -1
- package/clients/launchwizard.d.ts +181 -8
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +6 -3
- package/dist/aws-sdk.min.js +9 -9
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/README.md
    CHANGED
    
    | @@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true; | |
| 64 64 | 
             
            To use the SDK in the browser, simply add the following script tag to your
         | 
| 65 65 | 
             
            HTML pages:
         | 
| 66 66 |  | 
| 67 | 
            -
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2. | 
| 67 | 
            +
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1633.0.min.js"></script>
         | 
| 68 68 |  | 
| 69 69 | 
             
            You can also build a custom browser SDK with your specified set of AWS services.
         | 
| 70 70 | 
             
            This can allow you to reduce the SDK's size, specify different API versions of
         | 
| @@ -5,6 +5,9 @@ | |
| 5 5 | 
             
                "endpointPrefix": "batch",
         | 
| 6 6 | 
             
                "jsonVersion": "1.1",
         | 
| 7 7 | 
             
                "protocol": "rest-json",
         | 
| 8 | 
            +
                "protocols": [
         | 
| 9 | 
            +
                  "rest-json"
         | 
| 10 | 
            +
                ],
         | 
| 8 11 | 
             
                "serviceAbbreviation": "AWS Batch",
         | 
| 9 12 | 
             
                "serviceFullName": "AWS Batch",
         | 
| 10 13 | 
             
                "serviceId": "Batch",
         | 
| @@ -845,6 +848,45 @@ | |
| 845 848 | 
             
                    }
         | 
| 846 849 | 
             
                  }
         | 
| 847 850 | 
             
                },
         | 
| 851 | 
            +
                "GetJobQueueSnapshot": {
         | 
| 852 | 
            +
                  "http": {
         | 
| 853 | 
            +
                    "requestUri": "/v1/getjobqueuesnapshot"
         | 
| 854 | 
            +
                  },
         | 
| 855 | 
            +
                  "input": {
         | 
| 856 | 
            +
                    "type": "structure",
         | 
| 857 | 
            +
                    "required": [
         | 
| 858 | 
            +
                      "jobQueue"
         | 
| 859 | 
            +
                    ],
         | 
| 860 | 
            +
                    "members": {
         | 
| 861 | 
            +
                      "jobQueue": {}
         | 
| 862 | 
            +
                    }
         | 
| 863 | 
            +
                  },
         | 
| 864 | 
            +
                  "output": {
         | 
| 865 | 
            +
                    "type": "structure",
         | 
| 866 | 
            +
                    "members": {
         | 
| 867 | 
            +
                      "frontOfQueue": {
         | 
| 868 | 
            +
                        "type": "structure",
         | 
| 869 | 
            +
                        "members": {
         | 
| 870 | 
            +
                          "jobs": {
         | 
| 871 | 
            +
                            "type": "list",
         | 
| 872 | 
            +
                            "member": {
         | 
| 873 | 
            +
                              "type": "structure",
         | 
| 874 | 
            +
                              "members": {
         | 
| 875 | 
            +
                                "jobArn": {},
         | 
| 876 | 
            +
                                "earliestTimeAtPosition": {
         | 
| 877 | 
            +
                                  "type": "long"
         | 
| 878 | 
            +
                                }
         | 
| 879 | 
            +
                              }
         | 
| 880 | 
            +
                            }
         | 
| 881 | 
            +
                          },
         | 
| 882 | 
            +
                          "lastUpdatedAt": {
         | 
| 883 | 
            +
                            "type": "long"
         | 
| 884 | 
            +
                          }
         | 
| 885 | 
            +
                        }
         | 
| 886 | 
            +
                      }
         | 
| 887 | 
            +
                    }
         | 
| 888 | 
            +
                  }
         | 
| 889 | 
            +
                },
         | 
| 848 890 | 
             
                "ListJobs": {
         | 
| 849 891 | 
             
                  "http": {
         | 
| 850 892 | 
             
                    "requestUri": "/v1/listjobs"
         | 
| @@ -1101,7 +1143,7 @@ | |
| 1101 1143 | 
             
                        "shape": "S1o"
         | 
| 1102 1144 | 
             
                      },
         | 
| 1103 1145 | 
             
                      "containerOverrides": {
         | 
| 1104 | 
            -
                        "shape": " | 
| 1146 | 
            +
                        "shape": "S5o"
         | 
| 1105 1147 | 
             
                      },
         | 
| 1106 1148 | 
             
                      "nodeOverrides": {
         | 
| 1107 1149 | 
             
                        "type": "structure",
         | 
| @@ -1119,10 +1161,10 @@ | |
| 1119 1161 | 
             
                              "members": {
         | 
| 1120 1162 | 
             
                                "targetNodes": {},
         | 
| 1121 1163 | 
             
                                "containerOverrides": {
         | 
| 1122 | 
            -
                                  "shape": " | 
| 1164 | 
            +
                                  "shape": "S5o"
         | 
| 1123 1165 | 
             
                                },
         | 
| 1124 1166 | 
             
                                "ecsPropertiesOverride": {
         | 
| 1125 | 
            -
                                  "shape": " | 
| 1167 | 
            +
                                  "shape": "S5s"
         | 
| 1126 1168 | 
             
                                },
         | 
| 1127 1169 | 
             
                                "instanceTypes": {
         | 
| 1128 1170 | 
             
                                  "shape": "Sb"
         | 
| @@ -1151,10 +1193,10 @@ | |
| 1151 1193 | 
             
                            "type": "structure",
         | 
| 1152 1194 | 
             
                            "members": {
         | 
| 1153 1195 | 
             
                              "containers": {
         | 
| 1154 | 
            -
                                "shape": " | 
| 1196 | 
            +
                                "shape": "S5z"
         | 
| 1155 1197 | 
             
                              },
         | 
| 1156 1198 | 
             
                              "initContainers": {
         | 
| 1157 | 
            -
                                "shape": " | 
| 1199 | 
            +
                                "shape": "S5z"
         | 
| 1158 1200 | 
             
                              },
         | 
| 1159 1201 | 
             
                              "metadata": {
         | 
| 1160 1202 | 
             
                                "shape": "S3q"
         | 
| @@ -1164,7 +1206,7 @@ | |
| 1164 1206 | 
             
                        }
         | 
| 1165 1207 | 
             
                      },
         | 
| 1166 1208 | 
             
                      "ecsPropertiesOverride": {
         | 
| 1167 | 
            -
                        "shape": " | 
| 1209 | 
            +
                        "shape": "S5s"
         | 
| 1168 1210 | 
             
                      }
         | 
| 1169 1211 | 
             
                    }
         | 
| 1170 1212 | 
             
                  },
         | 
| @@ -2268,7 +2310,7 @@ | |
| 2268 2310 | 
             
                    }
         | 
| 2269 2311 | 
             
                  }
         | 
| 2270 2312 | 
             
                },
         | 
| 2271 | 
            -
                " | 
| 2313 | 
            +
                "S5o": {
         | 
| 2272 2314 | 
             
                  "type": "structure",
         | 
| 2273 2315 | 
             
                  "members": {
         | 
| 2274 2316 | 
             
                    "vcpus": {
         | 
| @@ -2293,7 +2335,7 @@ | |
| 2293 2335 | 
             
                    }
         | 
| 2294 2336 | 
             
                  }
         | 
| 2295 2337 | 
             
                },
         | 
| 2296 | 
            -
                " | 
| 2338 | 
            +
                "S5s": {
         | 
| 2297 2339 | 
             
                  "type": "structure",
         | 
| 2298 2340 | 
             
                  "members": {
         | 
| 2299 2341 | 
             
                    "taskProperties": {
         | 
| @@ -2324,7 +2366,7 @@ | |
| 2324 2366 | 
             
                    }
         | 
| 2325 2367 | 
             
                  }
         | 
| 2326 2368 | 
             
                },
         | 
| 2327 | 
            -
                " | 
| 2369 | 
            +
                "S5z": {
         | 
| 2328 2370 | 
             
                  "type": "list",
         | 
| 2329 2371 | 
             
                  "member": {
         | 
| 2330 2372 | 
             
                    "type": "structure",
         | 
| @@ -5,6 +5,9 @@ | |
| 5 5 | 
             
                "endpointPrefix": "codeguru-security",
         | 
| 6 6 | 
             
                "jsonVersion": "1.1",
         | 
| 7 7 | 
             
                "protocol": "rest-json",
         | 
| 8 | 
            +
                "protocols": [
         | 
| 9 | 
            +
                  "rest-json"
         | 
| 10 | 
            +
                ],
         | 
| 8 11 | 
             
                "serviceFullName": "Amazon CodeGuru Security",
         | 
| 9 12 | 
             
                "serviceId": "CodeGuru Security",
         | 
| 10 13 | 
             
                "signatureVersion": "v4",
         | 
| @@ -310,6 +313,7 @@ | |
| 310 313 | 
             
                      "createdAt": {
         | 
| 311 314 | 
             
                        "type": "timestamp"
         | 
| 312 315 | 
             
                      },
         | 
| 316 | 
            +
                      "errorMessage": {},
         | 
| 313 317 | 
             
                      "numberOfRevisions": {
         | 
| 314 318 | 
             
                        "type": "long"
         | 
| 315 319 | 
             
                      },
         | 
| @@ -637,6 +641,8 @@ | |
| 637 641 | 
             
                          },
         | 
| 638 642 | 
             
                          "id": {},
         | 
| 639 643 | 
             
                          "itemCount": {
         | 
| 644 | 
            +
                            "deprecated": true,
         | 
| 645 | 
            +
                            "deprecatedMessage": "This shape is not used.",
         | 
| 640 646 | 
             
                            "type": "integer"
         | 
| 641 647 | 
             
                          },
         | 
| 642 648 | 
             
                          "referenceUrls": {
         |