Skip to content

Commit b0a08f5

Browse files
author
AWS
committed
AWS Batch Update: AWS Batch Array Job Visibility feature support. Includes new statusSummaryLastUpdatedAt for array job parent DescribeJobs responses for the last time the statusSummary was updated. Includes both statusSummary and statusSummaryLastUpdatedAt in ListJobs responses for array job parents.
1 parent d32ed13 commit b0a08f5

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Batch",
4+
"contributor": "",
5+
"description": "AWS Batch Array Job Visibility feature support. Includes new statusSummaryLastUpdatedAt for array job parent DescribeJobs responses for the last time the statusSummary was updated. Includes both statusSummary and statusSummaryLastUpdatedAt in ListJobs responses for array job parents."
6+
}

services/batch/src/main/resources/codegen-resources/service-2.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,10 @@
591591
"shape":"ArrayJobStatusSummary",
592592
"documentation":"<p>A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.</p>"
593593
},
594+
"statusSummaryLastUpdatedAt":{
595+
"shape":"Long",
596+
"documentation":"<p>The Unix timestamp (in milliseconds) for when the <code>statusSummary</code> was last updated.</p>"
597+
},
594598
"size":{
595599
"shape":"Integer",
596600
"documentation":"<p>The size of the array job. This parameter is returned for parent array jobs.</p>"
@@ -612,6 +616,14 @@
612616
"index":{
613617
"shape":"Integer",
614618
"documentation":"<p>The job index within the array that's associated with this job. This parameter is returned for children of array jobs.</p>"
619+
},
620+
"statusSummary":{
621+
"shape":"ArrayJobStatusSummary",
622+
"documentation":"<p>A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.</p>"
623+
},
624+
"statusSummaryLastUpdatedAt":{
625+
"shape":"Long",
626+
"documentation":"<p>The Unix timestamp (in milliseconds) for when the <code>statusSummary</code> was last updated.</p>"
615627
}
616628
},
617629
"documentation":"<p>An object that represents the array properties of a job.</p>"
@@ -3876,7 +3888,7 @@
38763888
},
38773889
"jobStatus":{
38783890
"shape":"JobStatus",
3879-
"documentation":"<p>The job status used to filter jobs in the specified queue. If the <code>filters</code> parameter is specified, the <code>jobStatus</code> parameter is ignored and jobs with any status are returned. If you don't specify a status, only <code>RUNNING</code> jobs are returned.</p>"
3891+
"documentation":"<p>The job status used to filter jobs in the specified queue. If the <code>filters</code> parameter is specified, the <code>jobStatus</code> parameter is ignored and jobs with any status are returned. If you don't specify a status, only <code>RUNNING</code> jobs are returned.</p> <note> <p>Array job parents are updated to <code>PENDING</code> when any child job is updated to <code>RUNNABLE</code> and remain in <code>PENDING</code> status while child jobs are running. To view these jobs, filter by <code>PENDING</code> status until all child jobs reach a terminal state.</p> </note>"
38803892
},
38813893
"maxResults":{
38823894
"shape":"Integer",

0 commit comments

Comments
 (0)