Class: Aws::IoTEvents::Types::InputIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::InputIdentifier
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass InputIdentifier data as a hash:
{
iot_events_input_identifier: {
input_name: "InputName", # required
},
iot_site_wise_input_identifier: {
iot_site_wise_asset_model_property_identifier: {
asset_model_id: "AssetModelId", # required
property_id: "AssetPropertyId", # required
},
},
}
The identifer of the input.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iot_events_input_identifier ⇒ Types::IotEventsInputIdentifier
The identifier of the input routed to AWS IoT Events.
-
#iot_site_wise_input_identifier ⇒ Types::IotSiteWiseInputIdentifier
The identifer of the input routed from AWS IoT SiteWise.
Instance Attribute Details
#iot_events_input_identifier ⇒ Types::IotEventsInputIdentifier
The identifier of the input routed to AWS IoT Events.
3775 3776 3777 3778 3779 3780 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 3775 class InputIdentifier < Struct.new( :iot_events_input_identifier, :iot_site_wise_input_identifier) SENSITIVE = [] include Aws::Structure end |
#iot_site_wise_input_identifier ⇒ Types::IotSiteWiseInputIdentifier
The identifer of the input routed from AWS IoT SiteWise.
3775 3776 3777 3778 3779 3780 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 3775 class InputIdentifier < Struct.new( :iot_events_input_identifier, :iot_site_wise_input_identifier) SENSITIVE = [] include Aws::Structure end |