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

A structure containing the configuration details of the feature.

*/ inline const Feature& GetFeature() const{ return m_feature; } /** *

A structure containing the configuration details of the feature.

*/ inline void SetFeature(const Feature& value) { m_feature = value; } /** *

A structure containing the configuration details of the feature.

*/ inline void SetFeature(Feature&& value) { m_feature = std::move(value); } /** *

A structure containing the configuration details of the feature.

*/ inline GetFeatureResult& WithFeature(const Feature& value) { SetFeature(value); return *this;} /** *

A structure containing the configuration details of the feature.

*/ inline GetFeatureResult& WithFeature(Feature&& value) { SetFeature(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetFeatureResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetFeatureResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetFeatureResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Feature m_feature; Aws::String m_requestId; }; } // namespace Model } // namespace CloudWatchEvidently } // namespace Aws