/** * 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 SSM { namespace Model { class AWS_SSM_API GetParameterResult { public: GetParameterResult(); GetParameterResult(const Aws::AmazonWebServiceResult& result); GetParameterResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about a parameter.

*/ inline const Parameter& GetParameter() const{ return m_parameter; } /** *

Information about a parameter.

*/ inline void SetParameter(const Parameter& value) { m_parameter = value; } /** *

Information about a parameter.

*/ inline void SetParameter(Parameter&& value) { m_parameter = std::move(value); } /** *

Information about a parameter.

*/ inline GetParameterResult& WithParameter(const Parameter& value) { SetParameter(value); return *this;} /** *

Information about a parameter.

*/ inline GetParameterResult& WithParameter(Parameter&& value) { SetParameter(std::move(value)); return *this;} private: Parameter m_parameter; }; } // namespace Model } // namespace SSM } // namespace Aws