Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IoTJobRateIncreaseCriteria

import type { IoTJobRateIncreaseCriteria } from "https://aws-api.deno.dev/v0.3/services/greengrassv2.ts?docs=full";

Contains information about criteria to meet before a job increases its rollout rate. Specify either numberOfNotifiedThings or numberOfSucceededThings.

interface IoTJobRateIncreaseCriteria {
numberOfNotifiedThings?: number | null;
numberOfSucceededThings?: number | null;
}

§Properties

§
numberOfNotifiedThings?: number | null
[src]

The number of devices to receive the job notification before the rollout rate increases.

§
numberOfSucceededThings?: number | null
[src]

The number of devices to successfully run the configuration job before the rollout rate increases.