/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The status of an online resharding operation.See Also:
AWS
* API Reference
Represents the progress of an online resharding operation.
*/ inline const SlotMigration& GetSlotMigration() const{ return m_slotMigration; } /** *Represents the progress of an online resharding operation.
*/ inline bool SlotMigrationHasBeenSet() const { return m_slotMigrationHasBeenSet; } /** *Represents the progress of an online resharding operation.
*/ inline void SetSlotMigration(const SlotMigration& value) { m_slotMigrationHasBeenSet = true; m_slotMigration = value; } /** *Represents the progress of an online resharding operation.
*/ inline void SetSlotMigration(SlotMigration&& value) { m_slotMigrationHasBeenSet = true; m_slotMigration = std::move(value); } /** *Represents the progress of an online resharding operation.
*/ inline ReshardingStatus& WithSlotMigration(const SlotMigration& value) { SetSlotMigration(value); return *this;} /** *Represents the progress of an online resharding operation.
*/ inline ReshardingStatus& WithSlotMigration(SlotMigration&& value) { SetSlotMigration(std::move(value)); return *this;} private: SlotMigration m_slotMigration; bool m_slotMigrationHasBeenSet = false; }; } // namespace Model } // namespace ElastiCache } // namespace Aws