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

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

Overview

Provides the status code and message that result from processing an event.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

A custom message that's returned in the response as a result of processing the event.

Returns:

  • (String)


5332
5333
5334
5335
5336
5337
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 5332

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

#status_codeInteger

The status code that's returned in the response as a result of processing the event. Possible values are: 202, for events that were accepted; and, 400, for events that weren't valid.

Returns:

  • (Integer)


5332
5333
5334
5335
5336
5337
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 5332

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