Class: Aws::IoTEvents::Types::UpdateInputRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::UpdateInputRequest
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass UpdateInputRequest data as a hash:
{
input_name: "InputName", # required
input_description: "InputDescription",
input_definition: { # required
attributes: [ # required
{
json_path: "AttributeJsonPath", # required
},
],
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#input_definition ⇒ Types::InputDefinition
The definition of the input.
-
#input_description ⇒ String
A brief description of the input.
-
#input_name ⇒ String
The name of the input you want to update.
Instance Attribute Details
#input_definition ⇒ Types::InputDefinition
The definition of the input.
7495 7496 7497 7498 7499 7500 7501 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 7495 class UpdateInputRequest < Struct.new( :input_name, :input_description, :input_definition) SENSITIVE = [] include Aws::Structure end |
#input_description ⇒ String
A brief description of the input.
7495 7496 7497 7498 7499 7500 7501 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 7495 class UpdateInputRequest < Struct.new( :input_name, :input_description, :input_definition) SENSITIVE = [] include Aws::Structure end |
#input_name ⇒ String
The name of the input you want to update.
7495 7496 7497 7498 7499 7500 7501 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 7495 class UpdateInputRequest < Struct.new( :input_name, :input_description, :input_definition) SENSITIVE = [] include Aws::Structure end |