/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The identifier of the input routed to AWS IoT Events. See
* Also:
AWS
* API Reference
The name of the input routed to AWS IoT Events.
*/ inline const Aws::String& GetInputName() const{ return m_inputName; } /** *The name of the input routed to AWS IoT Events.
*/ inline bool InputNameHasBeenSet() const { return m_inputNameHasBeenSet; } /** *The name of the input routed to AWS IoT Events.
*/ inline void SetInputName(const Aws::String& value) { m_inputNameHasBeenSet = true; m_inputName = value; } /** *The name of the input routed to AWS IoT Events.
*/ inline void SetInputName(Aws::String&& value) { m_inputNameHasBeenSet = true; m_inputName = std::move(value); } /** *The name of the input routed to AWS IoT Events.
*/ inline void SetInputName(const char* value) { m_inputNameHasBeenSet = true; m_inputName.assign(value); } /** *The name of the input routed to AWS IoT Events.
*/ inline IotEventsInputIdentifier& WithInputName(const Aws::String& value) { SetInputName(value); return *this;} /** *The name of the input routed to AWS IoT Events.
*/ inline IotEventsInputIdentifier& WithInputName(Aws::String&& value) { SetInputName(std::move(value)); return *this;} /** *The name of the input routed to AWS IoT Events.
*/ inline IotEventsInputIdentifier& WithInputName(const char* value) { SetInputName(value); return *this;} private: Aws::String m_inputName; bool m_inputNameHasBeenSet = false; }; } // namespace Model } // namespace IoTEvents } // namespace Aws