interface IoTJobTimeoutConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GreengrassV2.CfnDeploymentPropsMixin.IoTJobTimeoutConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgreengrassv2#CfnDeploymentPropsMixin_IoTJobTimeoutConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.greengrassv2.CfnDeploymentPropsMixin.IoTJobTimeoutConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_greengrassv2.CfnDeploymentPropsMixin.IoTJobTimeoutConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_greengrassv2 » 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 { aws_greengrassv2 as greengrassv2 } from '@aws-cdk/cfn-property-mixins';
const ioTJobTimeoutConfigProperty: greengrassv2.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