/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace ConfigService { namespace Model { /** */ class GetResourceEvaluationSummaryRequest : public ConfigServiceRequest { public: AWS_CONFIGSERVICE_API GetResourceEvaluationSummaryRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetResourceEvaluationSummary"; } AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override; AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The unique ResourceEvaluationId of Amazon Web Services resource * execution for which you want to retrieve the evaluation summary.

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

The unique ResourceEvaluationId of Amazon Web Services resource * execution for which you want to retrieve the evaluation summary.

*/ inline bool ResourceEvaluationIdHasBeenSet() const { return m_resourceEvaluationIdHasBeenSet; } /** *

The unique ResourceEvaluationId of Amazon Web Services resource * execution for which you want to retrieve the evaluation summary.

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

The unique ResourceEvaluationId of Amazon Web Services resource * execution for which you want to retrieve the evaluation summary.

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

The unique ResourceEvaluationId of Amazon Web Services resource * execution for which you want to retrieve the evaluation summary.

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

The unique ResourceEvaluationId of Amazon Web Services resource * execution for which you want to retrieve the evaluation summary.

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

The unique ResourceEvaluationId of Amazon Web Services resource * execution for which you want to retrieve the evaluation summary.

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

The unique ResourceEvaluationId of Amazon Web Services resource * execution for which you want to retrieve the evaluation summary.

*/ inline GetResourceEvaluationSummaryRequest& WithResourceEvaluationId(const char* value) { SetResourceEvaluationId(value); return *this;} private: Aws::String m_resourceEvaluationId; bool m_resourceEvaluationIdHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws