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

Information about rows for a data set SPICE ingestion.

See * Also:

AWS * API Reference

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

The number of rows that were ingested.

*/ inline long long GetRowsIngested() const{ return m_rowsIngested; } /** *

The number of rows that were ingested.

*/ inline bool RowsIngestedHasBeenSet() const { return m_rowsIngestedHasBeenSet; } /** *

The number of rows that were ingested.

*/ inline void SetRowsIngested(long long value) { m_rowsIngestedHasBeenSet = true; m_rowsIngested = value; } /** *

The number of rows that were ingested.

*/ inline RowInfo& WithRowsIngested(long long value) { SetRowsIngested(value); return *this;} /** *

The number of rows that were not ingested.

*/ inline long long GetRowsDropped() const{ return m_rowsDropped; } /** *

The number of rows that were not ingested.

*/ inline bool RowsDroppedHasBeenSet() const { return m_rowsDroppedHasBeenSet; } /** *

The number of rows that were not ingested.

*/ inline void SetRowsDropped(long long value) { m_rowsDroppedHasBeenSet = true; m_rowsDropped = value; } /** *

The number of rows that were not ingested.

*/ inline RowInfo& WithRowsDropped(long long value) { SetRowsDropped(value); return *this;} /** *

The total number of rows in the dataset.

*/ inline long long GetTotalRowsInDataset() const{ return m_totalRowsInDataset; } /** *

The total number of rows in the dataset.

*/ inline bool TotalRowsInDatasetHasBeenSet() const { return m_totalRowsInDatasetHasBeenSet; } /** *

The total number of rows in the dataset.

*/ inline void SetTotalRowsInDataset(long long value) { m_totalRowsInDatasetHasBeenSet = true; m_totalRowsInDataset = value; } /** *

The total number of rows in the dataset.

*/ inline RowInfo& WithTotalRowsInDataset(long long value) { SetTotalRowsInDataset(value); return *this;} private: long long m_rowsIngested; bool m_rowsIngestedHasBeenSet = false; long long m_rowsDropped; bool m_rowsDroppedHasBeenSet = false; long long m_totalRowsInDataset; bool m_totalRowsInDatasetHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws