/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Replica-specific provisioned throughput settings. If not specified, uses the
* source table's provisioned throughput settings.See Also:
AWS
* API Reference
Replica-specific read capacity units. If not specified, uses the source * table's read capacity settings.
*/ inline long long GetReadCapacityUnits() const{ return m_readCapacityUnits; } /** *Replica-specific read capacity units. If not specified, uses the source * table's read capacity settings.
*/ inline bool ReadCapacityUnitsHasBeenSet() const { return m_readCapacityUnitsHasBeenSet; } /** *Replica-specific read capacity units. If not specified, uses the source * table's read capacity settings.
*/ inline void SetReadCapacityUnits(long long value) { m_readCapacityUnitsHasBeenSet = true; m_readCapacityUnits = value; } /** *Replica-specific read capacity units. If not specified, uses the source * table's read capacity settings.
*/ inline ProvisionedThroughputOverride& WithReadCapacityUnits(long long value) { SetReadCapacityUnits(value); return *this;} private: long long m_readCapacityUnits; bool m_readCapacityUnitsHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws