EndpointSendConfiguration

public struct EndpointSendConfiguration : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The body of the message. If specified, this value overrides the default message body.

    Declaration

    Swift

    public let bodyOverride: String?
  • A map of custom attributes to attach to the message for the address. Attribute names are case sensitive. For a push notification, this payload is added to the data.pinpoint object. For an email or text message, this payload is added to email/SMS delivery receipt event attributes.

    Declaration

    Swift

    public let context: [String : String]?
  • The raw, JSON-formatted string to use as the payload for the message. If specified, this value overrides all other values for the message.

    Declaration

    Swift

    public let rawContent: String?
  • A map of the message variables to merge with the variables specified for the default message (DefaultMessage.Substitutions). The variables specified in this map take precedence over all other variables.

    Declaration

    Swift

    public let substitutions: [String : [String]]?
  • The title or subject line of the message. If specified, this value overrides the default message title or subject line.

    Declaration

    Swift

    public let titleOverride: String?
  • Undocumented

    Declaration

    Swift

    public init(bodyOverride: String? = nil, context: [String : String]? = nil, rawContent: String? = nil, substitutions: [String : [String]]? = nil, titleOverride: String? = nil)