Interface CfnJobQueue.JobStateTimeLimitActionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJobQueue.JobStateTimeLimitActionProperty.Jsii$Proxy
Enclosing class:
CfnJobQueue

@Stability(Stable) public static interface CfnJobQueue.JobStateTimeLimitActionProperty extends software.amazon.jsii.JsiiSerializable
Specifies an action that AWS Batch will take after the job has remained at the head of the queue in the specified state for longer than the specified time.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.batch.*;
 JobStateTimeLimitActionProperty jobStateTimeLimitActionProperty = JobStateTimeLimitActionProperty.builder()
         .action("action")
         .maxTimeSeconds(123)
         .reason("reason")
         .state("state")
         .build();
 

See Also: