/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTEvents { namespace Model { /** *

The identifier of the input routed to AWS IoT Events.

See * Also:

AWS * API Reference

*/ class IotEventsInputIdentifier { public: AWS_IOTEVENTS_API IotEventsInputIdentifier(); AWS_IOTEVENTS_API IotEventsInputIdentifier(Aws::Utils::Json::JsonView jsonValue); AWS_IOTEVENTS_API IotEventsInputIdentifier& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTEVENTS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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