Class: Aws::GreengrassV2::Types::DeploymentConfigurationValidationPolicy

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-greengrassv2/types.rb

Overview

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][2

IPC operation. For more

information, see [Create deployments] in the *IoT Greengrass V2 Developer Guide*.

[1]: docs.aws.amazon.com/greengrass/v2/developerguide/interprocess-communication.html#ipc-operation-subscribetovalidateconfigurationupdates [2]: docs.aws.amazon.com/greengrass/v2/developerguide/interprocess-communication.html#ipc-operation-sendconfigurationvalidityreport [3]: docs.aws.amazon.com/greengrass/v2/developerguide/create-deployments.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#timeout_in_secondsInteger

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`

Returns:

  • (Integer)


1089
1090
1091
1092
1093
# File 'lib/aws-sdk-greengrassv2/types.rb', line 1089

class DeploymentConfigurationValidationPolicy < Struct.new(
  :timeout_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end