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
| @@ -3,8 +3,10 @@ | |
| 3 3 | 
             
              "metadata": {
         | 
| 4 4 | 
             
                "apiVersion": "2021-11-29",
         | 
| 5 5 | 
             
                "endpointPrefix": "iottwinmaker",
         | 
| 6 | 
            -
                "jsonVersion": "1.1",
         | 
| 7 6 | 
             
                "protocol": "rest-json",
         | 
| 7 | 
            +
                "protocols": [
         | 
| 8 | 
            +
                  "rest-json"
         | 
| 9 | 
            +
                ],
         | 
| 8 10 | 
             
                "serviceFullName": "AWS IoT TwinMaker",
         | 
| 9 11 | 
             
                "serviceId": "IoTTwinMaker",
         | 
| 10 12 | 
             
                "signatureVersion": "v4",
         | 
| @@ -5,6 +5,9 @@ | |
| 5 5 | 
             
                "endpointPrefix": "launchwizard",
         | 
| 6 6 | 
             
                "jsonVersion": "1.1",
         | 
| 7 7 | 
             
                "protocol": "rest-json",
         | 
| 8 | 
            +
                "protocols": [
         | 
| 9 | 
            +
                  "rest-json"
         | 
| 10 | 
            +
                ],
         | 
| 8 11 | 
             
                "serviceFullName": "AWS Launch Wizard",
         | 
| 9 12 | 
             
                "serviceId": "Launch Wizard",
         | 
| 10 13 | 
             
                "signatureVersion": "v4",
         | 
| @@ -34,6 +37,9 @@ | |
| 34 37 | 
             
                      "specifications": {
         | 
| 35 38 | 
             
                        "shape": "S5"
         | 
| 36 39 | 
             
                      },
         | 
| 40 | 
            +
                      "tags": {
         | 
| 41 | 
            +
                        "shape": "S8"
         | 
| 42 | 
            +
                      },
         | 
| 37 43 | 
             
                      "workloadName": {}
         | 
| 38 44 | 
             
                    }
         | 
| 39 45 | 
             
                  },
         | 
| @@ -93,6 +99,7 @@ | |
| 93 99 | 
             
                          "deletedAt": {
         | 
| 94 100 | 
             
                            "type": "timestamp"
         | 
| 95 101 | 
             
                          },
         | 
| 102 | 
            +
                          "deploymentArn": {},
         | 
| 96 103 | 
             
                          "id": {},
         | 
| 97 104 | 
             
                          "name": {},
         | 
| 98 105 | 
             
                          "patternName": {},
         | 
| @@ -101,6 +108,9 @@ | |
| 101 108 | 
             
                            "shape": "S5"
         | 
| 102 109 | 
             
                          },
         | 
| 103 110 | 
             
                          "status": {},
         | 
| 111 | 
            +
                          "tags": {
         | 
| 112 | 
            +
                            "shape": "S8"
         | 
| 113 | 
            +
                          },
         | 
| 104 114 | 
             
                          "workloadName": {}
         | 
| 105 115 | 
             
                        }
         | 
| 106 116 | 
             
                      }
         | 
| @@ -139,6 +149,66 @@ | |
| 139 149 | 
             
                    }
         | 
| 140 150 | 
             
                  }
         | 
| 141 151 | 
             
                },
         | 
| 152 | 
            +
                "GetWorkloadDeploymentPattern": {
         | 
| 153 | 
            +
                  "http": {
         | 
| 154 | 
            +
                    "requestUri": "/getWorkloadDeploymentPattern",
         | 
| 155 | 
            +
                    "responseCode": 200
         | 
| 156 | 
            +
                  },
         | 
| 157 | 
            +
                  "input": {
         | 
| 158 | 
            +
                    "type": "structure",
         | 
| 159 | 
            +
                    "required": [
         | 
| 160 | 
            +
                      "deploymentPatternName",
         | 
| 161 | 
            +
                      "workloadName"
         | 
| 162 | 
            +
                    ],
         | 
| 163 | 
            +
                    "members": {
         | 
| 164 | 
            +
                      "deploymentPatternName": {},
         | 
| 165 | 
            +
                      "workloadName": {}
         | 
| 166 | 
            +
                    }
         | 
| 167 | 
            +
                  },
         | 
| 168 | 
            +
                  "output": {
         | 
| 169 | 
            +
                    "type": "structure",
         | 
| 170 | 
            +
                    "members": {
         | 
| 171 | 
            +
                      "workloadDeploymentPattern": {
         | 
| 172 | 
            +
                        "type": "structure",
         | 
| 173 | 
            +
                        "members": {
         | 
| 174 | 
            +
                          "deploymentPatternName": {},
         | 
| 175 | 
            +
                          "description": {},
         | 
| 176 | 
            +
                          "displayName": {},
         | 
| 177 | 
            +
                          "specifications": {
         | 
| 178 | 
            +
                            "type": "list",
         | 
| 179 | 
            +
                            "member": {
         | 
| 180 | 
            +
                              "type": "structure",
         | 
| 181 | 
            +
                              "members": {
         | 
| 182 | 
            +
                                "allowedValues": {
         | 
| 183 | 
            +
                                  "type": "list",
         | 
| 184 | 
            +
                                  "member": {}
         | 
| 185 | 
            +
                                },
         | 
| 186 | 
            +
                                "conditionals": {
         | 
| 187 | 
            +
                                  "type": "list",
         | 
| 188 | 
            +
                                  "member": {
         | 
| 189 | 
            +
                                    "type": "structure",
         | 
| 190 | 
            +
                                    "members": {
         | 
| 191 | 
            +
                                      "comparator": {},
         | 
| 192 | 
            +
                                      "name": {},
         | 
| 193 | 
            +
                                      "value": {}
         | 
| 194 | 
            +
                                    }
         | 
| 195 | 
            +
                                  }
         | 
| 196 | 
            +
                                },
         | 
| 197 | 
            +
                                "description": {},
         | 
| 198 | 
            +
                                "name": {},
         | 
| 199 | 
            +
                                "required": {}
         | 
| 200 | 
            +
                              }
         | 
| 201 | 
            +
                            }
         | 
| 202 | 
            +
                          },
         | 
| 203 | 
            +
                          "status": {},
         | 
| 204 | 
            +
                          "statusMessage": {},
         | 
| 205 | 
            +
                          "workloadName": {},
         | 
| 206 | 
            +
                          "workloadVersionName": {}
         | 
| 207 | 
            +
                        }
         | 
| 208 | 
            +
                      }
         | 
| 209 | 
            +
                    }
         | 
| 210 | 
            +
                  }
         | 
| 211 | 
            +
                },
         | 
| 142 212 | 
             
                "ListDeploymentEvents": {
         | 
| 143 213 | 
             
                  "http": {
         | 
| 144 214 | 
             
                    "requestUri": "/listDeploymentEvents",
         | 
| @@ -229,6 +299,33 @@ | |
| 229 299 | 
             
                    }
         | 
| 230 300 | 
             
                  }
         | 
| 231 301 | 
             
                },
         | 
| 302 | 
            +
                "ListTagsForResource": {
         | 
| 303 | 
            +
                  "http": {
         | 
| 304 | 
            +
                    "method": "GET",
         | 
| 305 | 
            +
                    "requestUri": "/tags/{resourceArn}",
         | 
| 306 | 
            +
                    "responseCode": 200
         | 
| 307 | 
            +
                  },
         | 
| 308 | 
            +
                  "input": {
         | 
| 309 | 
            +
                    "type": "structure",
         | 
| 310 | 
            +
                    "required": [
         | 
| 311 | 
            +
                      "resourceArn"
         | 
| 312 | 
            +
                    ],
         | 
| 313 | 
            +
                    "members": {
         | 
| 314 | 
            +
                      "resourceArn": {
         | 
| 315 | 
            +
                        "location": "uri",
         | 
| 316 | 
            +
                        "locationName": "resourceArn"
         | 
| 317 | 
            +
                      }
         | 
| 318 | 
            +
                    }
         | 
| 319 | 
            +
                  },
         | 
| 320 | 
            +
                  "output": {
         | 
| 321 | 
            +
                    "type": "structure",
         | 
| 322 | 
            +
                    "members": {
         | 
| 323 | 
            +
                      "tags": {
         | 
| 324 | 
            +
                        "shape": "S8"
         | 
| 325 | 
            +
                      }
         | 
| 326 | 
            +
                    }
         | 
| 327 | 
            +
                  }
         | 
| 328 | 
            +
                },
         | 
| 232 329 | 
             
                "ListWorkloadDeploymentPatterns": {
         | 
| 233 330 | 
             
                  "http": {
         | 
| 234 331 | 
             
                    "requestUri": "/listWorkloadDeploymentPatterns",
         | 
| @@ -299,6 +396,63 @@ | |
| 299 396 | 
             
                      }
         | 
| 300 397 | 
             
                    }
         | 
| 301 398 | 
             
                  }
         | 
| 399 | 
            +
                },
         | 
| 400 | 
            +
                "TagResource": {
         | 
| 401 | 
            +
                  "http": {
         | 
| 402 | 
            +
                    "requestUri": "/tags/{resourceArn}",
         | 
| 403 | 
            +
                    "responseCode": 200
         | 
| 404 | 
            +
                  },
         | 
| 405 | 
            +
                  "input": {
         | 
| 406 | 
            +
                    "type": "structure",
         | 
| 407 | 
            +
                    "required": [
         | 
| 408 | 
            +
                      "resourceArn",
         | 
| 409 | 
            +
                      "tags"
         | 
| 410 | 
            +
                    ],
         | 
| 411 | 
            +
                    "members": {
         | 
| 412 | 
            +
                      "resourceArn": {
         | 
| 413 | 
            +
                        "location": "uri",
         | 
| 414 | 
            +
                        "locationName": "resourceArn"
         | 
| 415 | 
            +
                      },
         | 
| 416 | 
            +
                      "tags": {
         | 
| 417 | 
            +
                        "shape": "S8"
         | 
| 418 | 
            +
                      }
         | 
| 419 | 
            +
                    }
         | 
| 420 | 
            +
                  },
         | 
| 421 | 
            +
                  "output": {
         | 
| 422 | 
            +
                    "type": "structure",
         | 
| 423 | 
            +
                    "members": {}
         | 
| 424 | 
            +
                  }
         | 
| 425 | 
            +
                },
         | 
| 426 | 
            +
                "UntagResource": {
         | 
| 427 | 
            +
                  "http": {
         | 
| 428 | 
            +
                    "method": "DELETE",
         | 
| 429 | 
            +
                    "requestUri": "/tags/{resourceArn}",
         | 
| 430 | 
            +
                    "responseCode": 200
         | 
| 431 | 
            +
                  },
         | 
| 432 | 
            +
                  "input": {
         | 
| 433 | 
            +
                    "type": "structure",
         | 
| 434 | 
            +
                    "required": [
         | 
| 435 | 
            +
                      "resourceArn",
         | 
| 436 | 
            +
                      "tagKeys"
         | 
| 437 | 
            +
                    ],
         | 
| 438 | 
            +
                    "members": {
         | 
| 439 | 
            +
                      "resourceArn": {
         | 
| 440 | 
            +
                        "location": "uri",
         | 
| 441 | 
            +
                        "locationName": "resourceArn"
         | 
| 442 | 
            +
                      },
         | 
| 443 | 
            +
                      "tagKeys": {
         | 
| 444 | 
            +
                        "location": "querystring",
         | 
| 445 | 
            +
                        "locationName": "tagKeys",
         | 
| 446 | 
            +
                        "type": "list",
         | 
| 447 | 
            +
                        "member": {}
         | 
| 448 | 
            +
                      }
         | 
| 449 | 
            +
                    }
         | 
| 450 | 
            +
                  },
         | 
| 451 | 
            +
                  "output": {
         | 
| 452 | 
            +
                    "type": "structure",
         | 
| 453 | 
            +
                    "members": {}
         | 
| 454 | 
            +
                  },
         | 
| 455 | 
            +
                  "idempotent": true
         | 
| 302 456 | 
             
                }
         | 
| 303 457 | 
             
              },
         | 
| 304 458 | 
             
              "shapes": {
         | 
| @@ -307,6 +461,11 @@ | |
| 307 461 | 
             
                  "key": {},
         | 
| 308 462 | 
             
                  "value": {},
         | 
| 309 463 | 
             
                  "sensitive": true
         | 
| 464 | 
            +
                },
         | 
| 465 | 
            +
                "S8": {
         | 
| 466 | 
            +
                  "type": "map",
         | 
| 467 | 
            +
                  "key": {},
         | 
| 468 | 
            +
                  "value": {}
         | 
| 310 469 | 
             
                }
         | 
| 311 470 | 
             
              }
         | 
| 312 471 | 
             
            }
         | 
    
        package/clients/amplify.d.ts
    CHANGED
    
    | @@ -20,11 +20,11 @@ declare class Amplify extends Service { | |
| 20 20 | 
             
               */
         | 
| 21 21 | 
             
              createApp(callback?: (err: AWSError, data: Amplify.Types.CreateAppResult) => void): Request<Amplify.Types.CreateAppResult, AWSError>;
         | 
| 22 22 | 
             
              /**
         | 
| 23 | 
            -
               * Creates a new backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to  | 
| 23 | 
            +
               * Creates a new backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to Amplify Gen 2 applications. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 24 24 | 
             
               */
         | 
| 25 25 | 
             
              createBackendEnvironment(params: Amplify.Types.CreateBackendEnvironmentRequest, callback?: (err: AWSError, data: Amplify.Types.CreateBackendEnvironmentResult) => void): Request<Amplify.Types.CreateBackendEnvironmentResult, AWSError>;
         | 
| 26 26 | 
             
              /**
         | 
| 27 | 
            -
               * Creates a new backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to  | 
| 27 | 
            +
               * Creates a new backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to Amplify Gen 2 applications. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 28 28 | 
             
               */
         | 
| 29 29 | 
             
              createBackendEnvironment(callback?: (err: AWSError, data: Amplify.Types.CreateBackendEnvironmentResult) => void): Request<Amplify.Types.CreateBackendEnvironmentResult, AWSError>;
         | 
| 30 30 | 
             
              /**
         | 
| @@ -68,11 +68,11 @@ declare class Amplify extends Service { | |
| 68 68 | 
             
               */
         | 
| 69 69 | 
             
              deleteApp(callback?: (err: AWSError, data: Amplify.Types.DeleteAppResult) => void): Request<Amplify.Types.DeleteAppResult, AWSError>;
         | 
| 70 70 | 
             
              /**
         | 
| 71 | 
            -
               * Deletes a backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend  | 
| 71 | 
            +
               * Deletes a backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to Amplify Gen 2 applications. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 72 72 | 
             
               */
         | 
| 73 73 | 
             
              deleteBackendEnvironment(params: Amplify.Types.DeleteBackendEnvironmentRequest, callback?: (err: AWSError, data: Amplify.Types.DeleteBackendEnvironmentResult) => void): Request<Amplify.Types.DeleteBackendEnvironmentResult, AWSError>;
         | 
| 74 74 | 
             
              /**
         | 
| 75 | 
            -
               * Deletes a backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend  | 
| 75 | 
            +
               * Deletes a backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to Amplify Gen 2 applications. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 76 76 | 
             
               */
         | 
| 77 77 | 
             
              deleteBackendEnvironment(callback?: (err: AWSError, data: Amplify.Types.DeleteBackendEnvironmentResult) => void): Request<Amplify.Types.DeleteBackendEnvironmentResult, AWSError>;
         | 
| 78 78 | 
             
              /**
         | 
| @@ -132,11 +132,11 @@ declare class Amplify extends Service { | |
| 132 132 | 
             
               */
         | 
| 133 133 | 
             
              getArtifactUrl(callback?: (err: AWSError, data: Amplify.Types.GetArtifactUrlResult) => void): Request<Amplify.Types.GetArtifactUrlResult, AWSError>;
         | 
| 134 134 | 
             
              /**
         | 
| 135 | 
            -
               * Returns a backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend  | 
| 135 | 
            +
               * Returns a backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to Amplify Gen 2 applications. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 136 136 | 
             
               */
         | 
| 137 137 | 
             
              getBackendEnvironment(params: Amplify.Types.GetBackendEnvironmentRequest, callback?: (err: AWSError, data: Amplify.Types.GetBackendEnvironmentResult) => void): Request<Amplify.Types.GetBackendEnvironmentResult, AWSError>;
         | 
| 138 138 | 
             
              /**
         | 
| 139 | 
            -
               * Returns a backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend  | 
| 139 | 
            +
               * Returns a backend environment for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to Amplify Gen 2 applications. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 140 140 | 
             
               */
         | 
| 141 141 | 
             
              getBackendEnvironment(callback?: (err: AWSError, data: Amplify.Types.GetBackendEnvironmentResult) => void): Request<Amplify.Types.GetBackendEnvironmentResult, AWSError>;
         | 
| 142 142 | 
             
              /**
         | 
| @@ -188,11 +188,11 @@ declare class Amplify extends Service { | |
| 188 188 | 
             
               */
         | 
| 189 189 | 
             
              listArtifacts(callback?: (err: AWSError, data: Amplify.Types.ListArtifactsResult) => void): Request<Amplify.Types.ListArtifactsResult, AWSError>;
         | 
| 190 190 | 
             
              /**
         | 
| 191 | 
            -
               * Lists the backend environments for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend  | 
| 191 | 
            +
               * Lists the backend environments for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to Amplify Gen 2 applications. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 192 192 | 
             
               */
         | 
| 193 193 | 
             
              listBackendEnvironments(params: Amplify.Types.ListBackendEnvironmentsRequest, callback?: (err: AWSError, data: Amplify.Types.ListBackendEnvironmentsResult) => void): Request<Amplify.Types.ListBackendEnvironmentsResult, AWSError>;
         | 
| 194 194 | 
             
              /**
         | 
| 195 | 
            -
               * Lists the backend environments for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend  | 
| 195 | 
            +
               * Lists the backend environments for an Amplify app.  This API is available only to Amplify Gen 1 applications where the backend is created using Amplify Studio or the Amplify command line interface (CLI). This API isn’t available to Amplify Gen 2 applications. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 196 196 | 
             
               */
         | 
| 197 197 | 
             
              listBackendEnvironments(callback?: (err: AWSError, data: Amplify.Types.ListBackendEnvironmentsResult) => void): Request<Amplify.Types.ListBackendEnvironmentsResult, AWSError>;
         | 
| 198 198 | 
             
              /**
         | 
| @@ -617,7 +617,7 @@ declare namespace Amplify { | |
| 617 617 | 
             
                 */
         | 
| 618 618 | 
             
                sourceBranch?: BranchName;
         | 
| 619 619 | 
             
                /**
         | 
| 620 | 
            -
                 *  The Amazon Resource Name (ARN) for a backend environment that is part of an Amplify app. 
         | 
| 620 | 
            +
                 *  The Amazon Resource Name (ARN) for a backend environment that is part of an Amplify app.  This property is available to Amplify Gen 1 apps only. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 621 621 | 
             
                 */
         | 
| 622 622 | 
             
                backendEnvironmentArn?: BackendEnvironmentArn;
         | 
| 623 623 | 
             
                backend?: Backend;
         | 
| @@ -833,11 +833,11 @@ declare namespace Amplify { | |
| 833 833 | 
             
                 */
         | 
| 834 834 | 
             
                pullRequestEnvironmentName?: PullRequestEnvironmentName;
         | 
| 835 835 | 
             
                /**
         | 
| 836 | 
            -
                 * The Amazon Resource Name (ARN) for a backend environment that is part of  | 
| 836 | 
            +
                 * The Amazon Resource Name (ARN) for a backend environment that is part of a Gen 1 Amplify app.  This field is available to Amplify Gen 1 apps only where the backend is created using Amplify Studio or the Amplify command line interface (CLI).
         | 
| 837 837 | 
             
                 */
         | 
| 838 838 | 
             
                backendEnvironmentArn?: BackendEnvironmentArn;
         | 
| 839 839 | 
             
                /**
         | 
| 840 | 
            -
                 * The backend for a Branch of an Amplify app. Use for a backend created from an CloudFormation stack.
         | 
| 840 | 
            +
                 * The backend for a Branch of an Amplify app. Use for a backend created from an CloudFormation stack. This field is available to Amplify Gen 2 apps only. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 841 841 | 
             
                 */
         | 
| 842 842 | 
             
                backend?: Backend;
         | 
| 843 843 | 
             
              }
         | 
| @@ -1864,11 +1864,11 @@ declare namespace Amplify { | |
| 1864 1864 | 
             
                 */
         | 
| 1865 1865 | 
             
                pullRequestEnvironmentName?: PullRequestEnvironmentName;
         | 
| 1866 1866 | 
             
                /**
         | 
| 1867 | 
            -
                 * The Amazon Resource Name (ARN) for a backend environment that is part of  | 
| 1867 | 
            +
                 * The Amazon Resource Name (ARN) for a backend environment that is part of a Gen 1 Amplify app.  This field is available to Amplify Gen 1 apps only where the backend is created using Amplify Studio or the Amplify command line interface (CLI).
         | 
| 1868 1868 | 
             
                 */
         | 
| 1869 1869 | 
             
                backendEnvironmentArn?: BackendEnvironmentArn;
         | 
| 1870 1870 | 
             
                /**
         | 
| 1871 | 
            -
                 * The backend for a Branch of an Amplify app. Use for a backend created from an CloudFormation stack.
         | 
| 1871 | 
            +
                 * The backend for a Branch of an Amplify app. Use for a backend created from an CloudFormation stack. This field is available to Amplify Gen 2 apps only. When you deploy an application with Amplify Gen 2, you provision the app's backend infrastructure using Typescript code.
         | 
| 1872 1872 | 
             
                 */
         | 
| 1873 1873 | 
             
                backend?: Backend;
         | 
| 1874 1874 | 
             
              }
         | 
    
        package/clients/batch.d.ts
    CHANGED
    
    | @@ -115,6 +115,14 @@ declare class Batch extends Service { | |
| 115 115 | 
             
               * Describes one or more of your scheduling policies.
         | 
| 116 116 | 
             
               */
         | 
| 117 117 | 
             
              describeSchedulingPolicies(callback?: (err: AWSError, data: Batch.Types.DescribeSchedulingPoliciesResponse) => void): Request<Batch.Types.DescribeSchedulingPoliciesResponse, AWSError>;
         | 
| 118 | 
            +
              /**
         | 
| 119 | 
            +
               * Provides a list of the first 100 RUNNABLE jobs associated to a single job queue.
         | 
| 120 | 
            +
               */
         | 
| 121 | 
            +
              getJobQueueSnapshot(params: Batch.Types.GetJobQueueSnapshotRequest, callback?: (err: AWSError, data: Batch.Types.GetJobQueueSnapshotResponse) => void): Request<Batch.Types.GetJobQueueSnapshotResponse, AWSError>;
         | 
| 122 | 
            +
              /**
         | 
| 123 | 
            +
               * Provides a list of the first 100 RUNNABLE jobs associated to a single job queue.
         | 
| 124 | 
            +
               */
         | 
| 125 | 
            +
              getJobQueueSnapshot(callback?: (err: AWSError, data: Batch.Types.GetJobQueueSnapshotResponse) => void): Request<Batch.Types.GetJobQueueSnapshotResponse, AWSError>;
         | 
| 118 126 | 
             
              /**
         | 
| 119 127 | 
             
               * Returns a list of Batch jobs. You must specify only one of the following items:   A job queue ID to return a list of jobs in that job queue   A multi-node parallel job ID to return a list of nodes for that job   An array job ID to return a list of the children for that job   You can filter the results by job status with the jobStatus parameter. If you don't specify a status, only RUNNING jobs are returned.
         | 
| 120 128 | 
             
               */
         | 
| @@ -1672,6 +1680,39 @@ declare namespace Batch { | |
| 1672 1680 | 
             
                platformVersion?: String;
         | 
| 1673 1681 | 
             
              }
         | 
| 1674 1682 | 
             
              export type Float = number;
         | 
| 1683 | 
            +
              export interface FrontOfQueueDetail {
         | 
| 1684 | 
            +
                /**
         | 
| 1685 | 
            +
                 * The Amazon Resource Names (ARNs) of the first 100 RUNNABLE jobs in a named job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.
         | 
| 1686 | 
            +
                 */
         | 
| 1687 | 
            +
                jobs?: FrontOfQueueJobSummaryList;
         | 
| 1688 | 
            +
                /**
         | 
| 1689 | 
            +
                 * The Unix timestamp (in milliseconds) for when each of the first 100 RUNNABLE jobs were last updated. 
         | 
| 1690 | 
            +
                 */
         | 
| 1691 | 
            +
                lastUpdatedAt?: Long;
         | 
| 1692 | 
            +
              }
         | 
| 1693 | 
            +
              export interface FrontOfQueueJobSummary {
         | 
| 1694 | 
            +
                /**
         | 
| 1695 | 
            +
                 * The ARN for a job in a named job queue.
         | 
| 1696 | 
            +
                 */
         | 
| 1697 | 
            +
                jobArn?: String;
         | 
| 1698 | 
            +
                /**
         | 
| 1699 | 
            +
                 * The Unix timestamp (in milliseconds) for when the job transitioned to its current position in the job queue.
         | 
| 1700 | 
            +
                 */
         | 
| 1701 | 
            +
                earliestTimeAtPosition?: Long;
         | 
| 1702 | 
            +
              }
         | 
| 1703 | 
            +
              export type FrontOfQueueJobSummaryList = FrontOfQueueJobSummary[];
         | 
| 1704 | 
            +
              export interface GetJobQueueSnapshotRequest {
         | 
| 1705 | 
            +
                /**
         | 
| 1706 | 
            +
                 * The job queue’s name or full queue Amazon Resource Name (ARN).
         | 
| 1707 | 
            +
                 */
         | 
| 1708 | 
            +
                jobQueue: String;
         | 
| 1709 | 
            +
              }
         | 
| 1710 | 
            +
              export interface GetJobQueueSnapshotResponse {
         | 
| 1711 | 
            +
                /**
         | 
| 1712 | 
            +
                 * The list of the first 100 RUNNABLE jobs in each job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.
         | 
| 1713 | 
            +
                 */
         | 
| 1714 | 
            +
                frontOfQueue?: FrontOfQueueDetail;
         | 
| 1715 | 
            +
              }
         | 
| 1675 1716 | 
             
              export interface Host {
         | 
| 1676 1717 | 
             
                /**
         | 
| 1677 1718 | 
             
                 * The path on the host container instance that's presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If this parameter contains a file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the source path location doesn't exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.  This parameter isn't applicable to jobs that run on Fargate resources. Don't provide this for these jobs. 
         | 
| @@ -2099,7 +2140,7 @@ declare namespace Batch { | |
| 2099 2140 | 
             
                 */
         | 
| 2100 2141 | 
             
                jobStatus?: JobStatus;
         | 
| 2101 2142 | 
             
                /**
         | 
| 2102 | 
            -
                 * The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs  | 
| 2143 | 
            +
                 * The maximum number of results returned by ListJobs in a paginated output. When this parameter is used, ListJobs returns up to maxResults results in a single page and a nextToken response element, if applicable. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. The following outlines key parameters and limitations:   The minimum value is 1.    When --job-status is used, Batch returns up to 1000 values.    When --filters is used, Batch returns up to 100 values.   If neither parameter is used, then ListJobs returns up to 1000 results (jobs that are in the RUNNING status) and a nextToken value, if applicable.  
         | 
| 2103 2144 | 
             
                 */
         | 
| 2104 2145 | 
             
                maxResults?: Integer;
         | 
| 2105 2146 | 
             
                /**
         | 
    
        package/clients/codebuild.d.ts
    CHANGED
    
    | @@ -1201,7 +1201,7 @@ declare namespace CodeBuild { | |
| 1201 1201 | 
             
                 */
         | 
| 1202 1202 | 
             
                buildType?: WebhookBuildType;
         | 
| 1203 1203 | 
             
                /**
         | 
| 1204 | 
            -
                 * If manualCreation is true, CodeBuild doesn't create a webhook in GitHub and instead returns payloadUrl and secret values for the webhook. The payloadUrl and secret values in the output can be used to manually create a webhook within GitHub. | 
| 1204 | 
            +
                 * If manualCreation is true, CodeBuild doesn't create a webhook in GitHub and instead returns payloadUrl and secret values for the webhook. The payloadUrl and secret values in the output can be used to manually create a webhook within GitHub.   manualCreation is only available for GitHub webhooks. 
         | 
| 1205 1205 | 
             
                 */
         | 
| 1206 1206 | 
             
                manualCreation?: WrapperBoolean;
         | 
| 1207 1207 | 
             
              }
         | 
| @@ -3267,7 +3267,7 @@ declare namespace CodeBuild { | |
| 3267 3267 | 
             
              export type WebhookBuildType = "BUILD"|"BUILD_BATCH"|string;
         | 
| 3268 3268 | 
             
              export interface WebhookFilter {
         | 
| 3269 3269 | 
             
                /**
         | 
| 3270 | 
            -
                 *  The type of webhook filter. There are nine webhook filter types: EVENT, ACTOR_ACCOUNT_ID, HEAD_REF, BASE_REF, FILE_PATH, COMMIT_MESSAGE, TAG_NAME, RELEASE_NAME, and WORKFLOW_NAME.     EVENT     A webhook event triggers a build when the provided pattern matches one of nine event types: PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED, PULL_REQUEST_CLOSED, PULL_REQUEST_REOPENED, PULL_REQUEST_MERGED, RELEASED, PRERELEASED, and WORKFLOW_JOB_QUEUED. The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.     | 
| 3270 | 
            +
                 *  The type of webhook filter. There are nine webhook filter types: EVENT, ACTOR_ACCOUNT_ID, HEAD_REF, BASE_REF, FILE_PATH, COMMIT_MESSAGE, TAG_NAME, RELEASE_NAME, and WORKFLOW_NAME.     EVENT     A webhook event triggers a build when the provided pattern matches one of nine event types: PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED, PULL_REQUEST_CLOSED, PULL_REQUEST_REOPENED, PULL_REQUEST_MERGED, RELEASED, PRERELEASED, and WORKFLOW_JOB_QUEUED. The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.    Types PULL_REQUEST_REOPENED and WORKFLOW_JOB_QUEUED work with GitHub and GitHub Enterprise only. Types RELEASED and PRERELEASED work with GitHub only.      ACTOR_ACCOUNT_ID    A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern.      HEAD_REF    A webhook event triggers a build when the head reference matches the regular expression pattern. For example, refs/heads/branch-name and refs/tags/tag-name.    Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.      BASE_REF    A webhook event triggers a build when the base reference matches the regular expression pattern. For example, refs/heads/branch-name.    Works with pull request events only.       FILE_PATH    A webhook triggers a build when the path of a changed file matches the regular expression pattern.    Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.       COMMIT_MESSAGE   A webhook triggers a build when the head commit message matches the regular expression pattern.   Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.       TAG_NAME   A webhook triggers a build when the tag name of the release matches the regular expression pattern.   Works with RELEASED and PRERELEASED events only.       RELEASE_NAME   A webhook triggers a build when the release name matches the regular expression pattern.   Works with RELEASED and PRERELEASED events only.       WORKFLOW_NAME   A webhook triggers a build when the workflow name matches the regular expression pattern.   Works with WORKFLOW_JOB_QUEUED events only.      
         | 
| 3271 3271 | 
             
                 */
         | 
| 3272 3272 | 
             
                type: WebhookFilterType;
         | 
| 3273 3273 | 
             
                /**
         |