Class: Aws::IoT::Types::RepublishAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::RepublishAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass RepublishAction data as a hash:
{
role_arn: "AwsArn", # required
topic: "TopicPattern", # required
}
Describes an action to republish to another topic.
Instance Attribute Summary collapse
-
#role_arn ⇒ String
The ARN of the IAM role that grants access.
-
#topic ⇒ String
The name of the MQTT topic.
Instance Attribute Details
#role_arn ⇒ String
The ARN of the IAM role that grants access.
8832 8833 8834 8835 8836 |
# File 'lib/aws-sdk-iot/types.rb', line 8832 class RepublishAction < Struct.new( :role_arn, :topic) include Aws::Structure end |
#topic ⇒ String
The name of the MQTT topic.
8832 8833 8834 8835 8836 |
# File 'lib/aws-sdk-iot/types.rb', line 8832 class RepublishAction < Struct.new( :role_arn, :topic) include Aws::Structure end |