/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the configuration information of an acknowledge
* action.See Also:
AWS
* API Reference
The note that you can leave when you acknowledge the alarm.
*/ inline const Aws::String& GetNote() const{ return m_note; } /** *The note that you can leave when you acknowledge the alarm.
*/ inline bool NoteHasBeenSet() const { return m_noteHasBeenSet; } /** *The note that you can leave when you acknowledge the alarm.
*/ inline void SetNote(const Aws::String& value) { m_noteHasBeenSet = true; m_note = value; } /** *The note that you can leave when you acknowledge the alarm.
*/ inline void SetNote(Aws::String&& value) { m_noteHasBeenSet = true; m_note = std::move(value); } /** *The note that you can leave when you acknowledge the alarm.
*/ inline void SetNote(const char* value) { m_noteHasBeenSet = true; m_note.assign(value); } /** *The note that you can leave when you acknowledge the alarm.
*/ inline AcknowledgeActionConfiguration& WithNote(const Aws::String& value) { SetNote(value); return *this;} /** *The note that you can leave when you acknowledge the alarm.
*/ inline AcknowledgeActionConfiguration& WithNote(Aws::String&& value) { SetNote(std::move(value)); return *this;} /** *The note that you can leave when you acknowledge the alarm.
*/ inline AcknowledgeActionConfiguration& WithNote(const char* value) { SetNote(value); return *this;} private: Aws::String m_note; bool m_noteHasBeenSet = false; }; } // namespace Model } // namespace IoTEventsData } // namespace Aws