Class: Aws::Budgets::Types::ActionHistory
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::ActionHistory
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-budgets/types.rb
Overview
The historical records for a budget action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_history_details ⇒ Types::ActionHistoryDetails
The description of the details for the event.
-
#event_type ⇒ String
This distinguishes between whether the events are triggered by the user or are generated by the system.
-
#status ⇒ String
The status of action at the time of the event.
-
#timestamp ⇒ Time
A generic time stamp.
Instance Attribute Details
#action_history_details ⇒ Types::ActionHistoryDetails
The description of the details for the event.
107 108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-budgets/types.rb', line 107 class ActionHistory < Struct.new( :timestamp, :status, :event_type, :action_history_details) SENSITIVE = [] include Aws::Structure end |
#event_type ⇒ String
This distinguishes between whether the events are triggered by the user or are generated by the system.
107 108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-budgets/types.rb', line 107 class ActionHistory < Struct.new( :timestamp, :status, :event_type, :action_history_details) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of action at the time of the event.
107 108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-budgets/types.rb', line 107 class ActionHistory < Struct.new( :timestamp, :status, :event_type, :action_history_details) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
A generic time stamp. In Java, it’s transformed to a ‘Date` object.
107 108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-budgets/types.rb', line 107 class ActionHistory < Struct.new( :timestamp, :status, :event_type, :action_history_details) SENSITIVE = [] include Aws::Structure end |