AWSSESGetSendQuotaResponse

Objective-C

@interface AWSSESGetSendQuotaResponse

Swift

class AWSSESGetSendQuotaResponse

Represents your Amazon SES daily sending quota, maximum send rate, and the number of emails you have sent in the last 24 hours.

  • The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable max24HourSend;

    Swift

    var max24HourSend: NSNumber? { get set }
  • The maximum number of emails that Amazon SES can accept from the user’s account per second.

    The rate at which Amazon SES accepts the user’s messages might be less than the maximum send rate.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxSendRate;

    Swift

    var maxSendRate: NSNumber? { get set }
  • The number of emails sent during the previous 24 hours.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable sentLast24Hours;

    Swift

    var sentLast24Hours: NSNumber? { get set }