/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request to configure the sharding properties of a clusterSee
* Also:
AWS
* API Reference
The number of shards in the cluster
*/ inline int GetShardCount() const{ return m_shardCount; } /** *The number of shards in the cluster
*/ inline bool ShardCountHasBeenSet() const { return m_shardCountHasBeenSet; } /** *The number of shards in the cluster
*/ inline void SetShardCount(int value) { m_shardCountHasBeenSet = true; m_shardCount = value; } /** *The number of shards in the cluster
*/ inline ShardConfigurationRequest& WithShardCount(int value) { SetShardCount(value); return *this;} private: int m_shardCount; bool m_shardCountHasBeenSet = false; }; } // namespace Model } // namespace MemoryDB } // namespace Aws