Class: Aws::IoTEvents::Types::InputDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::InputDefinition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass InputDefinition data as a hash:
{
attributes: [ # required
{
json_path: "AttributeJsonPath", # required
},
],
}
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.
2518 2519 2520 2521 2522 |
# File 'lib/aws-sdk-iotevents/types.rb', line 2518 class InputDefinition < Struct.new( :attributes) SENSITIVE = [] include Aws::Structure end |