/** * 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 DescribeInputResult { public: DescribeInputResult(); DescribeInputResult(const Aws::AmazonWebServiceResult& result); DescribeInputResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the input.

*/ inline const Input& GetInput() const{ return m_input; } /** *

Information about the input.

*/ inline void SetInput(const Input& value) { m_input = value; } /** *

Information about the input.

*/ inline void SetInput(Input&& value) { m_input = std::move(value); } /** *

Information about the input.

*/ inline DescribeInputResult& WithInput(const Input& value) { SetInput(value); return *this;} /** *

Information about the input.

*/ inline DescribeInputResult& WithInput(Input&& value) { SetInput(std::move(value)); return *this;} private: Input m_input; }; } // namespace Model } // namespace IoTEvents } // namespace Aws