Class: Aws::CustomerProfiles::Types::Period
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::Period
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-customerprofiles/types.rb
Overview
Defines a limit and the time period during which it is enforced.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_invocations_per_profile ⇒ Integer
The maximum allowed number of destination invocations per profile.
-
#unit ⇒ String
The unit of time.
-
#unlimited ⇒ Boolean
If set to true, there is no limit on the number of destination invocations per profile.
-
#value ⇒ Integer
The amount of time of the specified unit.
Instance Attribute Details
#max_invocations_per_profile ⇒ Integer
The maximum allowed number of destination invocations per profile.
5438 5439 5440 5441 5442 5443 5444 5445 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5438 class Period < Struct.new( :unit, :value, :max_invocations_per_profile, :unlimited) SENSITIVE = [] include Aws::Structure end |
#unit ⇒ String
The unit of time.
5438 5439 5440 5441 5442 5443 5444 5445 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5438 class Period < Struct.new( :unit, :value, :max_invocations_per_profile, :unlimited) SENSITIVE = [] include Aws::Structure end |
#unlimited ⇒ Boolean
If set to true, there is no limit on the number of destination invocations per profile. The default is false.
5438 5439 5440 5441 5442 5443 5444 5445 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5438 class Period < Struct.new( :unit, :value, :max_invocations_per_profile, :unlimited) SENSITIVE = [] include Aws::Structure end |