/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

Information about a queued dataset SPICE ingestion.

See Also:

* AWS * API Reference

*/ class QueueInfo { public: AWS_QUICKSIGHT_API QueueInfo(); AWS_QUICKSIGHT_API QueueInfo(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API QueueInfo& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ID of the queued ingestion.

*/ inline const Aws::String& GetWaitingOnIngestion() const{ return m_waitingOnIngestion; } /** *

The ID of the queued ingestion.

*/ inline bool WaitingOnIngestionHasBeenSet() const { return m_waitingOnIngestionHasBeenSet; } /** *

The ID of the queued ingestion.

*/ inline void SetWaitingOnIngestion(const Aws::String& value) { m_waitingOnIngestionHasBeenSet = true; m_waitingOnIngestion = value; } /** *

The ID of the queued ingestion.

*/ inline void SetWaitingOnIngestion(Aws::String&& value) { m_waitingOnIngestionHasBeenSet = true; m_waitingOnIngestion = std::move(value); } /** *

The ID of the queued ingestion.

*/ inline void SetWaitingOnIngestion(const char* value) { m_waitingOnIngestionHasBeenSet = true; m_waitingOnIngestion.assign(value); } /** *

The ID of the queued ingestion.

*/ inline QueueInfo& WithWaitingOnIngestion(const Aws::String& value) { SetWaitingOnIngestion(value); return *this;} /** *

The ID of the queued ingestion.

*/ inline QueueInfo& WithWaitingOnIngestion(Aws::String&& value) { SetWaitingOnIngestion(std::move(value)); return *this;} /** *

The ID of the queued ingestion.

*/ inline QueueInfo& WithWaitingOnIngestion(const char* value) { SetWaitingOnIngestion(value); return *this;} /** *

The ID of the ongoing ingestion. The queued ingestion is waiting for the * ongoing ingestion to complete.

*/ inline const Aws::String& GetQueuedIngestion() const{ return m_queuedIngestion; } /** *

The ID of the ongoing ingestion. The queued ingestion is waiting for the * ongoing ingestion to complete.

*/ inline bool QueuedIngestionHasBeenSet() const { return m_queuedIngestionHasBeenSet; } /** *

The ID of the ongoing ingestion. The queued ingestion is waiting for the * ongoing ingestion to complete.

*/ inline void SetQueuedIngestion(const Aws::String& value) { m_queuedIngestionHasBeenSet = true; m_queuedIngestion = value; } /** *

The ID of the ongoing ingestion. The queued ingestion is waiting for the * ongoing ingestion to complete.

*/ inline void SetQueuedIngestion(Aws::String&& value) { m_queuedIngestionHasBeenSet = true; m_queuedIngestion = std::move(value); } /** *

The ID of the ongoing ingestion. The queued ingestion is waiting for the * ongoing ingestion to complete.

*/ inline void SetQueuedIngestion(const char* value) { m_queuedIngestionHasBeenSet = true; m_queuedIngestion.assign(value); } /** *

The ID of the ongoing ingestion. The queued ingestion is waiting for the * ongoing ingestion to complete.

*/ inline QueueInfo& WithQueuedIngestion(const Aws::String& value) { SetQueuedIngestion(value); return *this;} /** *

The ID of the ongoing ingestion. The queued ingestion is waiting for the * ongoing ingestion to complete.

*/ inline QueueInfo& WithQueuedIngestion(Aws::String&& value) { SetQueuedIngestion(std::move(value)); return *this;} /** *

The ID of the ongoing ingestion. The queued ingestion is waiting for the * ongoing ingestion to complete.

*/ inline QueueInfo& WithQueuedIngestion(const char* value) { SetQueuedIngestion(value); return *this;} private: Aws::String m_waitingOnIngestion; bool m_waitingOnIngestionHasBeenSet = false; Aws::String m_queuedIngestion; bool m_queuedIngestionHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws