Interface CfnJobTemplate.TimeoutConfigProperty

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

@Stability(Stable) public static interface CfnJobTemplate.TimeoutConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies the amount of time each device has to finish its execution of the job.

A timer is started when the job execution status is set to IN_PROGRESS . If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT .

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.iot.*;
 TimeoutConfigProperty timeoutConfigProperty = TimeoutConfigProperty.builder()
         .inProgressTimeoutInMinutes(123)
         .build();
 

See Also: