Class: Aws::Pinpoint::Types::MessageResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::MessageResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Provides information about the results of a request to send a message to an endpoint address.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_id ⇒ String
The unique identifier for the application that was used to send the message.
-
#endpoint_result ⇒ Hash<String,Types::EndpointMessageResult>
A map that contains a multipart response for each address that the message was sent to.
-
#request_id ⇒ String
The identifier for the original request that the message was delivered for.
-
#result ⇒ Hash<String,Types::MessageResult>
A map that contains a multipart response for each address (email address, phone number, or push notification token) that the message was sent to.
Instance Attribute Details
#application_id ⇒ String
The unique identifier for the application that was used to send the message.
9500 9501 9502 9503 9504 9505 9506 9507 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9500 class MessageResponse < Struct.new( :application_id, :endpoint_result, :request_id, :result) SENSITIVE = [] include Aws::Structure end |
#endpoint_result ⇒ Hash<String,Types::EndpointMessageResult>
A map that contains a multipart response for each address that the message was sent to. In the map, the endpoint ID is the key and the result is the value.
9500 9501 9502 9503 9504 9505 9506 9507 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9500 class MessageResponse < Struct.new( :application_id, :endpoint_result, :request_id, :result) SENSITIVE = [] include Aws::Structure end |
#request_id ⇒ String
The identifier for the original request that the message was delivered for.
9500 9501 9502 9503 9504 9505 9506 9507 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9500 class MessageResponse < Struct.new( :application_id, :endpoint_result, :request_id, :result) SENSITIVE = [] include Aws::Structure end |
#result ⇒ Hash<String,Types::MessageResult>
A map that contains a multipart response for each address (email address, phone number, or push notification token) that the message was sent to. In the map, the address is the key and the result is the value.
9500 9501 9502 9503 9504 9505 9506 9507 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9500 class MessageResponse < Struct.new( :application_id, :endpoint_result, :request_id, :result) SENSITIVE = [] include Aws::Structure end |