Class: Aws::IoTEvents::Types::InputDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::InputDefinition
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
The definition of the input.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::Attribute>
The attributes from the JSON payload that are made available by the input.
Instance Attribute Details
#attributes ⇒ Array<Types::Attribute>
The attributes from the JSON payload that are made available by the
input. Inputs are derived from messages sent to the AWS IoT Events
system using BatchPutMessage
. Each such message contains a JSON
payload, and those attributes (and their paired values) specified
here are available for use in the condition
expressions used by
detectors that monitor this input.
1914 1915 1916 1917 1918 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1914 class InputDefinition < Struct.new( :attributes) SENSITIVE = [] include Aws::Structure end |