MessageResponse

public struct MessageResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The unique identifier for the application that was used to send the message.

    Declaration

    Swift

    public let applicationId: String
  • 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.

    Declaration

    Swift

    public let endpointResult: [String : EndpointMessageResult]?
  • The identifier for the original request that the message was delivered for.

    Declaration

    Swift

    public let requestId: String?
  • 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.

    Declaration

    Swift

    public let result: [String : MessageResult]?
  • Undocumented

    Declaration

    Swift

    public init(applicationId: String, endpointResult: [String : EndpointMessageResult]? = nil, requestId: String? = nil, result: [String : MessageResult]? = nil)