/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoTEvents { namespace Model { class AWS_IOTEVENTS_API UpdateInputResult { public: UpdateInputResult(); UpdateInputResult(const Aws::AmazonWebServiceResult& result); UpdateInputResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the configuration of the input.

*/ inline const InputConfiguration& GetInputConfiguration() const{ return m_inputConfiguration; } /** *

Information about the configuration of the input.

*/ inline void SetInputConfiguration(const InputConfiguration& value) { m_inputConfiguration = value; } /** *

Information about the configuration of the input.

*/ inline void SetInputConfiguration(InputConfiguration&& value) { m_inputConfiguration = std::move(value); } /** *

Information about the configuration of the input.

*/ inline UpdateInputResult& WithInputConfiguration(const InputConfiguration& value) { SetInputConfiguration(value); return *this;} /** *

Information about the configuration of the input.

*/ inline UpdateInputResult& WithInputConfiguration(InputConfiguration&& value) { SetInputConfiguration(std::move(value)); return *this;} private: InputConfiguration m_inputConfiguration; }; } // namespace Model } // namespace IoTEvents } // namespace Aws