/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a retention rule lock configuration.See
* Also:
AWS
* API Reference
Information about the retention rule unlock delay.
*/ inline const UnlockDelay& GetUnlockDelay() const{ return m_unlockDelay; } /** *Information about the retention rule unlock delay.
*/ inline bool UnlockDelayHasBeenSet() const { return m_unlockDelayHasBeenSet; } /** *Information about the retention rule unlock delay.
*/ inline void SetUnlockDelay(const UnlockDelay& value) { m_unlockDelayHasBeenSet = true; m_unlockDelay = value; } /** *Information about the retention rule unlock delay.
*/ inline void SetUnlockDelay(UnlockDelay&& value) { m_unlockDelayHasBeenSet = true; m_unlockDelay = std::move(value); } /** *Information about the retention rule unlock delay.
*/ inline LockConfiguration& WithUnlockDelay(const UnlockDelay& value) { SetUnlockDelay(value); return *this;} /** *Information about the retention rule unlock delay.
*/ inline LockConfiguration& WithUnlockDelay(UnlockDelay&& value) { SetUnlockDelay(std::move(value)); return *this;} private: UnlockDelay m_unlockDelay; bool m_unlockDelayHasBeenSet = false; }; } // namespace Model } // namespace RecycleBin } // namespace Aws