Class: Aws::ForecastService::Types::TestWindowSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::TestWindowSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-forecastservice/types.rb
Overview
The status, start time, and end time of a backtest, as well as a failure reason if applicable.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
If the test failed, the reason why it failed.
-
#status ⇒ String
The status of the test.
-
#test_window_end ⇒ Time
The time at which the test ended.
-
#test_window_start ⇒ Time
The time at which the test began.
Instance Attribute Details
#message ⇒ String
If the test failed, the reason why it failed.
6679 6680 6681 6682 6683 6684 6685 6686 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 6679 class TestWindowSummary < Struct.new( :test_window_start, :test_window_end, :status, :message) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the test. Possible status values are:
-
‘ACTIVE`
-
‘CREATE_IN_PROGRESS`
-
‘CREATE_FAILED`
6679 6680 6681 6682 6683 6684 6685 6686 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 6679 class TestWindowSummary < Struct.new( :test_window_start, :test_window_end, :status, :message) SENSITIVE = [] include Aws::Structure end |
#test_window_end ⇒ Time
The time at which the test ended.
6679 6680 6681 6682 6683 6684 6685 6686 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 6679 class TestWindowSummary < Struct.new( :test_window_start, :test_window_end, :status, :message) SENSITIVE = [] include Aws::Structure end |
#test_window_start ⇒ Time
The time at which the test began.
6679 6680 6681 6682 6683 6684 6685 6686 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 6679 class TestWindowSummary < Struct.new( :test_window_start, :test_window_end, :status, :message) SENSITIVE = [] include Aws::Structure end |