Message
public struct Message : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the input into which the message payload is transformed.
Declaration
Swift
public let inputName: String
-
The ID to assign to the message. Within each batch sent, each “messageId” must be unique.
Declaration
Swift
public let messageId: String
-
The payload of the message. This can be a JSON string or a Base-64-encoded string representing binary data (in which case you must decode it).
Declaration
Swift
public let payload: Data
-
Undocumented
Declaration
Swift
public init(inputName: String, messageId: String, payload: Data)
-
Declaration
Swift
public func validate(name: String) throws