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

DeploymentConfigurationValidationPolicy

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

Contains information about how long a component on a core device can validate its configuration updates before it times out. Components can use the SubscribeToValidateConfigurationUpdates IPC operation to receive notifications when a deployment specifies a configuration update. Then, components can respond with the SendConfigurationValidityReport IPC operation. For more information, see Create deployments in the IoT Greengrass V2 Developer Guide.

interface DeploymentConfigurationValidationPolicy {
timeoutInSeconds?: number | null;
}

§Properties

§
timeoutInSeconds?: number | null
[src]

The amount of time in seconds that a component can validate its configuration updates. If the validation time exceeds this timeout, then the deployment proceeds for the device.

Default: 30