Class: Aws::IoTEvents::Types::CreateInputRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::CreateInputRequest
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass CreateInputRequest data as a hash:
{
input_name: "InputName", # required
input_description: "InputDescription",
input_definition: { # required
attributes: [ # required
{
json_path: "AttributeJsonPath", # required
},
],
},
tags: [
{
key: "TagKey", # required
value: "TagValue", # 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 you want to give to the input.
-
#tags ⇒ Array<Types::Tag>
Metadata that can be used to manage the input.
Instance Attribute Details
#input_definition ⇒ Types::InputDefinition
The definition of the input.
2062 2063 2064 2065 2066 2067 2068 2069 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2062 class CreateInputRequest < Struct.new( :input_name, :input_description, :input_definition, :tags) SENSITIVE = [] include Aws::Structure end |
#input_description ⇒ String
A brief description of the input.
2062 2063 2064 2065 2066 2067 2068 2069 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2062 class CreateInputRequest < Struct.new( :input_name, :input_description, :input_definition, :tags) SENSITIVE = [] include Aws::Structure end |
#input_name ⇒ String
The name you want to give to the input.
2062 2063 2064 2065 2066 2067 2068 2069 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2062 class CreateInputRequest < Struct.new( :input_name, :input_description, :input_definition, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Metadata that can be used to manage the input.
2062 2063 2064 2065 2066 2067 2068 2069 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2062 class CreateInputRequest < Struct.new( :input_name, :input_description, :input_definition, :tags) SENSITIVE = [] include Aws::Structure end |