Class: Aws::Pinpoint::Types::EventItemResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::EventItemResponse
- Includes:
- Structure
- Defined in:
- 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
-
#message ⇒ String
A custom message that’s returned in the response as a result of processing the event.
-
#status_code ⇒ Integer
The status code that’s returned in the response as a result of processing the event.
Instance Attribute Details
#message ⇒ String
A custom message that’s returned in the response as a result of processing the event.
5355 5356 5357 5358 5359 5360 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5355 class EventItemResponse < Struct.new( :message, :status_code) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ Integer
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.
5355 5356 5357 5358 5359 5360 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5355 class EventItemResponse < Struct.new( :message, :status_code) SENSITIVE = [] include Aws::Structure end |