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.
26593 26594 26595 26596 26597 26598 |
# File 'lib/aws-sdk-quicksight/types.rb', line 26593 class QueueInfo < Struct.new( :waiting_on_ingestion, :queued_ingestion) SENSITIVE = [] include Aws::Structure end |