BouncedRecipientInfo

public struct BouncedRecipientInfo : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The reason for the bounce. You must provide either this parameter or RecipientDsnFields.

    Declaration

    Swift

    public let bounceType: BounceType?
  • The email address of the recipient of the bounced email.

    Declaration

    Swift

    public let recipient: String
  • This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to receive email for the recipient of the bounced email. For more information about sending authorization, see the Amazon SES Developer Guide.

    Declaration

    Swift

    public let recipientArn: String?
  • Recipient-related DSN fields, most of which would normally be filled in automatically when provided with a BounceType. You must provide either this parameter or BounceType.

    Declaration

    Swift

    public let recipientDsnFields: RecipientDsnFields?
  • Undocumented

    Declaration

    Swift

    public init(bounceType: BounceType? = nil, recipient: String, recipientArn: String? = nil, recipientDsnFields: RecipientDsnFields? = nil)