/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information required to reset the timer. The timer is reset to the previously
* evaluated result of the duration. The duration expression isn't reevaluated when
* you reset the timer.See Also:
AWS
* API Reference
The name of the timer to reset.
*/ inline const Aws::String& GetTimerName() const{ return m_timerName; } /** *The name of the timer to reset.
*/ inline bool TimerNameHasBeenSet() const { return m_timerNameHasBeenSet; } /** *The name of the timer to reset.
*/ inline void SetTimerName(const Aws::String& value) { m_timerNameHasBeenSet = true; m_timerName = value; } /** *The name of the timer to reset.
*/ inline void SetTimerName(Aws::String&& value) { m_timerNameHasBeenSet = true; m_timerName = std::move(value); } /** *The name of the timer to reset.
*/ inline void SetTimerName(const char* value) { m_timerNameHasBeenSet = true; m_timerName.assign(value); } /** *The name of the timer to reset.
*/ inline ResetTimerAction& WithTimerName(const Aws::String& value) { SetTimerName(value); return *this;} /** *The name of the timer to reset.
*/ inline ResetTimerAction& WithTimerName(Aws::String&& value) { SetTimerName(std::move(value)); return *this;} /** *The name of the timer to reset.
*/ inline ResetTimerAction& WithTimerName(const char* value) { SetTimerName(value); return *this;} private: Aws::String m_timerName; bool m_timerNameHasBeenSet; }; } // namespace Model } // namespace IoTEvents } // namespace Aws