Module Values.DeploymentConfigurationValidationPolicySource

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.

Sourcetype nonrec t = {
  1. timeoutInSeconds : OptionalInteger.t option;
    (*

    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

    *)
}
Sourceval make : ?timeoutInSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of OptionalInteger.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t