aws-cdk-lib.aws_greengrassv2.CfnDeployment.DeploymentIoTJobConfigurationProperty

interface DeploymentIoTJobConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.GreengrassV2.CfnDeployment.DeploymentIoTJobConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgreengrassv2#CfnDeployment_DeploymentIoTJobConfigurationProperty
Javasoftware.amazon.awscdk.services.greengrassv2.CfnDeployment.DeploymentIoTJobConfigurationProperty
Pythonaws_cdk.aws_greengrassv2.CfnDeployment.DeploymentIoTJobConfigurationProperty
TypeScript aws-cdk-lib » aws_greengrassv2 » CfnDeployment » DeploymentIoTJobConfigurationProperty

Contains information about an AWS IoT job configuration.

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-lib';

declare const rateIncreaseCriteria: any;
const deploymentIoTJobConfigurationProperty: greengrassv2.CfnDeployment.DeploymentIoTJobConfigurationProperty = {
  abortConfig: {
    criteriaList: [{
      action: 'action',
      failureType: 'failureType',
      minNumberOfExecutedThings: 123,
      thresholdPercentage: 123,
    }],
  },
  jobExecutionsRolloutConfig: {
    exponentialRate: {
      baseRatePerMinute: 123,
      incrementFactor: 123,
      rateIncreaseCriteria: rateIncreaseCriteria,
    },
    maximumPerMinute: 123,
  },
  timeoutConfig: {
    inProgressTimeoutInMinutes: 123,
  },
};

Properties

NameTypeDescription
abortConfig?IResolvable | IoTJobAbortConfigPropertyThe stop configuration for the job.
jobExecutionsRolloutConfig?IResolvable | IoTJobExecutionsRolloutConfigPropertyThe rollout configuration for the job.
timeoutConfig?IResolvable | IoTJobTimeoutConfigPropertyThe timeout configuration for the job.

abortConfig?

Type: IResolvable | IoTJobAbortConfigProperty (optional)

The stop configuration for the job.

This configuration defines when and how to stop a job rollout.


jobExecutionsRolloutConfig?

Type: IResolvable | IoTJobExecutionsRolloutConfigProperty (optional)

The rollout configuration for the job.

This configuration defines the rate at which the job rolls out to the fleet of target devices.


timeoutConfig?

Type: IResolvable | IoTJobTimeoutConfigProperty (optional)

The timeout configuration for the job.

This configuration defines the amount of time each device has to complete the job.