Class: Aws::Pinpoint::Types::EventItemResponse

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

Overview

A complex object that holds the status code and message as a result of processing an event.

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

A custom message that is associated with the processing of an event.

Returns:

  • (String)


4302
4303
4304
4305
4306
# File 'lib/aws-sdk-pinpoint/types.rb', line 4302

class EventItemResponse < Struct.new(
  :message,
  :status_code)
  include Aws::Structure
end

#status_codeInteger

The status returned in the response as a result of processing the event. Possible values: 400 (for invalid events) and 202 (for events that were accepted).

Returns:

  • (Integer)


4302
4303
4304
4305
4306
# File 'lib/aws-sdk-pinpoint/types.rb', line 4302

class EventItemResponse < Struct.new(
  :message,
  :status_code)
  include Aws::Structure
end