/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to configure the number of replicas in a shardSee
* Also:
AWS
* API Reference
The number of replicas to scale up or down to
*/ inline int GetReplicaCount() const{ return m_replicaCount; } /** *The number of replicas to scale up or down to
*/ inline bool ReplicaCountHasBeenSet() const { return m_replicaCountHasBeenSet; } /** *The number of replicas to scale up or down to
*/ inline void SetReplicaCount(int value) { m_replicaCountHasBeenSet = true; m_replicaCount = value; } /** *The number of replicas to scale up or down to
*/ inline ReplicaConfigurationRequest& WithReplicaCount(int value) { SetReplicaCount(value); return *this;} private: int m_replicaCount; bool m_replicaCountHasBeenSet = false; }; } // namespace Model } // namespace MemoryDB } // namespace Aws