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

A unique ResourceEvaluationId that is associated with a single execution.

*/ inline const Aws::String& GetResourceEvaluationId() const{ return m_resourceEvaluationId; } /** *

A unique ResourceEvaluationId that is associated with a single execution.

*/ inline void SetResourceEvaluationId(const Aws::String& value) { m_resourceEvaluationId = value; } /** *

A unique ResourceEvaluationId that is associated with a single execution.

*/ inline void SetResourceEvaluationId(Aws::String&& value) { m_resourceEvaluationId = std::move(value); } /** *

A unique ResourceEvaluationId that is associated with a single execution.

*/ inline void SetResourceEvaluationId(const char* value) { m_resourceEvaluationId.assign(value); } /** *

A unique ResourceEvaluationId that is associated with a single execution.

*/ inline StartResourceEvaluationResult& WithResourceEvaluationId(const Aws::String& value) { SetResourceEvaluationId(value); return *this;} /** *

A unique ResourceEvaluationId that is associated with a single execution.

*/ inline StartResourceEvaluationResult& WithResourceEvaluationId(Aws::String&& value) { SetResourceEvaluationId(std::move(value)); return *this;} /** *

A unique ResourceEvaluationId that is associated with a single execution.

*/ inline StartResourceEvaluationResult& WithResourceEvaluationId(const char* value) { SetResourceEvaluationId(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 StartResourceEvaluationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartResourceEvaluationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartResourceEvaluationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_resourceEvaluationId; Aws::String m_requestId; }; } // namespace Model } // namespace ConfigService } // namespace Aws