Class: Aws::IoTAnalytics::Types::DatasetContentStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::DatasetContentStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotanalytics/types.rb
Overview
The state of the dataset contents and the reason they are in this state.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reason ⇒ String
The reason the dataset contents are in this state.
-
#state ⇒ String
The state of the dataset contents.
Instance Attribute Details
#reason ⇒ String
The reason the dataset contents are in this state.
962 963 964 965 966 967 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 962 class DatasetContentStatus < Struct.new( :state, :reason) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the dataset contents. Can be one of READY, CREATING, SUCCEEDED, or FAILED.
962 963 964 965 966 967 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 962 class DatasetContentStatus < Struct.new( :state, :reason) SENSITIVE = [] include Aws::Structure end |