You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoTEventsData::Types::BatchUpdateDetectorRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing BatchUpdateDetectorRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  detectors: [ # required
    {
      message_id: "MessageId", # required
      detector_model_name: "DetectorModelName", # required
      key_value: "KeyValue",
      state: { # required
        state_name: "StateName", # required
        variables: [ # required
          {
            name: "VariableName", # required
            value: "VariableValue", # required
          },
        ],
        timers: [ # required
          {
            name: "TimerName", # required
            seconds: 1, # required
          },
        ],
      },
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#detectorsArray<Types::UpdateDetectorRequest>

The list of detectors (instances) to update, along with the values to update.

Returns: