Class: Aws::QuickSight::Types::QueueInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::QueueInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
Information about a queued dataset SPICE ingestion.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#queued_ingestion ⇒ String
The ID of the ongoing ingestion.
-
#waiting_on_ingestion ⇒ String
The ID of the queued ingestion.
Instance Attribute Details
#queued_ingestion ⇒ String
The ID of the ongoing ingestion. The queued ingestion is waiting for the ongoing ingestion to complete.
23845 23846 23847 23848 23849 23850 |
# File 'lib/aws-sdk-quicksight/types.rb', line 23845 class QueueInfo < Struct.new( :waiting_on_ingestion, :queued_ingestion) SENSITIVE = [] include Aws::Structure end |