Class: Aws::IoTAnalytics::Types::IotEventsDestinationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::IotEventsDestinationConfiguration
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
Note:
When making an API call, you may pass IotEventsDestinationConfiguration data as a hash:
{
input_name: "IotEventsInputName", # required
role_arn: "RoleArn", # required
}
Configuration information for delivery of dataset contents to AWS IoT Events.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#input_name ⇒ String
The name of the AWS IoT Events input to which dataset contents are delivered.
-
#role_arn ⇒ String
The ARN of the role that grants AWS IoT Analytics permission to deliver dataset contents to an AWS IoT Events input.
Instance Attribute Details
#input_name ⇒ String
The name of the AWS IoT Events input to which dataset contents are delivered.
2397 2398 2399 2400 2401 2402 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2397 class IotEventsDestinationConfiguration < Struct.new( :input_name, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role that grants AWS IoT Analytics permission to deliver dataset contents to an AWS IoT Events input.
2397 2398 2399 2400 2401 2402 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2397 class IotEventsDestinationConfiguration < Struct.new( :input_name, :role_arn) SENSITIVE = [] include Aws::Structure end |