interface IoTJobTimeoutConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GreengrassV2.Mixins.CfnDeploymentPropsMixin.IoTJobTimeoutConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrassv2/mixins#CfnDeploymentPropsMixin_IoTJobTimeoutConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.greengrassv2.mixins.CfnDeploymentPropsMixin.IoTJobTimeoutConfigProperty |
Python | aws_cdk.mixins_preview.aws_greengrassv2.mixins.CfnDeploymentPropsMixin.IoTJobTimeoutConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_greengrassv2 » mixins » CfnDeploymentPropsMixin » IoTJobTimeoutConfigProperty |
Contains information about the timeout configuration for a job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as greengrassv2_mixins } from '@aws-cdk/mixins-preview/aws-greengrassv2';
const ioTJobTimeoutConfigProperty: greengrassv2_mixins.CfnDeploymentPropsMixin.IoTJobTimeoutConfigProperty = {
inProgressTimeoutInMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| in | number | The amount of time, in minutes, that devices have to complete the job. |
inProgressTimeoutInMinutes?
Type:
number
(optional)
The amount of time, in minutes, that devices have to complete the job.
The timer starts when the job status is set to IN_PROGRESS . If the job status doesn't change to a terminal state before the time expires, then the job status is set to TIMED_OUT .
The timeout interval must be between 1 minute and 7 days (10080 minutes).

.NET
Go
Java
Python
TypeScript