|
5326 | 5326 | "CANCELLING",
|
5327 | 5327 | "CANCELLED",
|
5328 | 5328 | "SUCCEEDED",
|
5329 |
| - "FAILED" |
| 5329 | + "FAILED", |
| 5330 | + "ERROR" |
5330 | 5331 | ]
|
5331 | 5332 | },
|
5332 | 5333 | "Crawler":{
|
|
6154 | 6155 | "CodeGenConfigurationNodes":{
|
6155 | 6156 | "shape":"CodeGenConfigurationNodes",
|
6156 | 6157 | "documentation":"<p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>"
|
| 6158 | + }, |
| 6159 | + "ExecutionClass":{ |
| 6160 | + "shape":"ExecutionClass", |
| 6161 | + "documentation":"<p>Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p> <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p> <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>" |
6157 | 6162 | }
|
6158 | 6163 | }
|
6159 | 6164 | },
|
|
8243 | 8248 | "documentation":"<p>Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.</p>"
|
8244 | 8249 | },
|
8245 | 8250 | "EventQueueArn":{"type":"string"},
|
| 8251 | + "ExecutionClass":{ |
| 8252 | + "type":"string", |
| 8253 | + "enum":[ |
| 8254 | + "FLEX", |
| 8255 | + "STANDARD" |
| 8256 | + ], |
| 8257 | + "max":16 |
| 8258 | + }, |
8246 | 8259 | "ExecutionProperty":{
|
8247 | 8260 | "type":"structure",
|
8248 | 8261 | "members":{
|
|
11200 | 11213 | "CodeGenConfigurationNodes":{
|
11201 | 11214 | "shape":"CodeGenConfigurationNodes",
|
11202 | 11215 | "documentation":"<p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>"
|
| 11216 | + }, |
| 11217 | + "ExecutionClass":{ |
| 11218 | + "shape":"ExecutionClass", |
| 11219 | + "documentation":"<p>Indicates whether the job is run with a standard or flexible execution class. The standard execution class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p> <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p> <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>" |
11203 | 11220 | }
|
11204 | 11221 | },
|
11205 | 11222 | "documentation":"<p>Specifies a job definition.</p>"
|
|
11392 | 11409 | "DPUSeconds":{
|
11393 | 11410 | "shape":"NullableDouble",
|
11394 | 11411 | "documentation":"<p>This field populates only for Auto Scaling job runs, and represents the total time each executor ran during the lifecycle of a job run in seconds, multiplied by a DPU factor (1 for <code>G.1X</code>, 2 for <code>G.2X</code>, or 0.25 for <code>G.025X</code> workers). This value may be different than the <code>executionEngineRuntime</code> * <code>MaxCapacity</code> as in the case of Auto Scaling jobs, as the number of executors running at a given time may be less than the <code>MaxCapacity</code>. Therefore, it is possible that the value of <code>DPUSeconds</code> is less than <code>executionEngineRuntime</code> * <code>MaxCapacity</code>.</p>"
|
| 11412 | + }, |
| 11413 | + "ExecutionClass":{ |
| 11414 | + "shape":"ExecutionClass", |
| 11415 | + "documentation":"<p>Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p> <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p> <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>" |
11395 | 11416 | }
|
11396 | 11417 | },
|
11397 | 11418 | "documentation":"<p>Contains information about a job run.</p>"
|
|
11409 | 11430 | "STOPPED",
|
11410 | 11431 | "SUCCEEDED",
|
11411 | 11432 | "FAILED",
|
11412 |
| - "TIMEOUT" |
| 11433 | + "TIMEOUT", |
| 11434 | + "ERROR", |
| 11435 | + "WAITING" |
11413 | 11436 | ]
|
11414 | 11437 | },
|
11415 | 11438 | "JobUpdate":{
|
|
11488 | 11511 | "CodeGenConfigurationNodes":{
|
11489 | 11512 | "shape":"CodeGenConfigurationNodes",
|
11490 | 11513 | "documentation":"<p>The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.</p>"
|
| 11514 | + }, |
| 11515 | + "ExecutionClass":{ |
| 11516 | + "shape":"ExecutionClass", |
| 11517 | + "documentation":"<p>Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p> <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p> <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>" |
11491 | 11518 | }
|
11492 | 11519 | },
|
11493 | 11520 | "documentation":"<p>Specifies information used to update an existing job definition. The previous job definition is completely overwritten by this information.</p>"
|
|
15654 | 15681 | "NumberOfWorkers":{
|
15655 | 15682 | "shape":"NullableInteger",
|
15656 | 15683 | "documentation":"<p>The number of workers of a defined <code>workerType</code> that are allocated when a job runs.</p>"
|
| 15684 | + }, |
| 15685 | + "ExecutionClass":{ |
| 15686 | + "shape":"ExecutionClass", |
| 15687 | + "documentation":"<p>Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.</p> <p>The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. </p> <p>Only jobs with Glue version 3.0 and above and command type <code>glueetl</code> will be allowed to set <code>ExecutionClass</code> to <code>FLEX</code>. The flexible execution class is available for Spark jobs.</p>" |
15657 | 15688 | }
|
15658 | 15689 | }
|
15659 | 15690 | },
|
|
17878 | 17909 | "RunningActions":{
|
17879 | 17910 | "shape":"IntegerValue",
|
17880 | 17911 | "documentation":"<p>Total number Actions in running state.</p>"
|
| 17912 | + }, |
| 17913 | + "ErroredActions":{ |
| 17914 | + "shape":"IntegerValue", |
| 17915 | + "documentation":"<p>Indicates the count of job runs in the ERROR state in the workflow run.</p>" |
| 17916 | + }, |
| 17917 | + "WaitingActions":{ |
| 17918 | + "shape":"IntegerValue", |
| 17919 | + "documentation":"<p>Indicates the count of job runs in WAITING state in the workflow run.</p>" |
17881 | 17920 | }
|
17882 | 17921 | },
|
17883 | 17922 | "documentation":"<p>Workflow run statistics provides statistics about the workflow run.</p>"
|
|
0 commit comments