Class: Aws::IoTEvents::Types::SqsAction

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iotevents/types.rb

Overview

Sends information about the detector model instance and the event that triggered the action to an Amazon SQS queue.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#payloadTypes::Payload

You can configure the action payload when you send a message to an Amazon SQS queue.

Returns:



2833
2834
2835
2836
2837
2838
2839
# File 'lib/aws-sdk-iotevents/types.rb', line 2833

class SqsAction < Struct.new(
  :queue_url,
  :use_base_64,
  :payload)
  SENSITIVE = []
  include Aws::Structure
end

#queue_urlString

The URL of the SQS queue where the data is written.

Returns:

  • (String)


2833
2834
2835
2836
2837
2838
2839
# File 'lib/aws-sdk-iotevents/types.rb', line 2833

class SqsAction < Struct.new(
  :queue_url,
  :use_base_64,
  :payload)
  SENSITIVE = []
  include Aws::Structure
end

#use_base_64Boolean

Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue. Otherwise, set this to FALSE.

Returns:

  • (Boolean)


2833
2834
2835
2836
2837
2838
2839
# File 'lib/aws-sdk-iotevents/types.rb', line 2833

class SqsAction < Struct.new(
  :queue_url,
  :use_base_64,
  :payload)
  SENSITIVE = []
  include Aws::Structure
end