Class: Aws::Pinpoint::Types::JourneyTimeframeCap

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

The number of messages that can be sent to an endpoint during the specified timeframe for all journeys.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#capInteger

The maximum number of messages that all journeys can send to an endpoint during the specified timeframe. The maximum value is 100. If set to 0, this limit will not apply.

Returns:

  • (Integer)


9016
9017
9018
9019
9020
9021
# File 'lib/aws-sdk-pinpoint/types.rb', line 9016

class JourneyTimeframeCap < Struct.new(
  :cap,
  :days)
  SENSITIVE = []
  include Aws::Structure
end

#daysInteger

The length of the timeframe in days. The maximum value is 30. If set to 0, this limit will not apply.

Returns:

  • (Integer)


9016
9017
9018
9019
9020
9021
# File 'lib/aws-sdk-pinpoint/types.rb', line 9016

class JourneyTimeframeCap < Struct.new(
  :cap,
  :days)
  SENSITIVE = []
  include Aws::Structure
end