Class: Aws::CustomerProfiles::Types::EventTriggerLimits

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

Overview

Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#event_expirationInteger

In milliseconds. Specifies that an event will only trigger the destination if it is processed within a certain latency period.

Returns:

  • (Integer)


2275
2276
2277
2278
2279
2280
# File 'lib/aws-sdk-customerprofiles/types.rb', line 2275

class EventTriggerLimits < Struct.new(
  :event_expiration,
  :periods)
  SENSITIVE = []
  include Aws::Structure
end

#periodsArray<Types::Period>

A list of time periods during which the limits apply.

Returns:



2275
2276
2277
2278
2279
2280
# File 'lib/aws-sdk-customerprofiles/types.rb', line 2275

class EventTriggerLimits < Struct.new(
  :event_expiration,
  :periods)
  SENSITIVE = []
  include Aws::Structure
end