/** * 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 IoTDeviceAdvisor { namespace Model { /** */ class GetSuiteRunReportRequest : public IoTDeviceAdvisorRequest { public: AWS_IOTDEVICEADVISOR_API GetSuiteRunReportRequest(); // 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 "GetSuiteRunReport"; } AWS_IOTDEVICEADVISOR_API Aws::String SerializePayload() const override; /** *

Suite definition ID of the test suite.

*/ inline const Aws::String& GetSuiteDefinitionId() const{ return m_suiteDefinitionId; } /** *

Suite definition ID of the test suite.

*/ inline bool SuiteDefinitionIdHasBeenSet() const { return m_suiteDefinitionIdHasBeenSet; } /** *

Suite definition ID of the test suite.

*/ inline void SetSuiteDefinitionId(const Aws::String& value) { m_suiteDefinitionIdHasBeenSet = true; m_suiteDefinitionId = value; } /** *

Suite definition ID of the test suite.

*/ inline void SetSuiteDefinitionId(Aws::String&& value) { m_suiteDefinitionIdHasBeenSet = true; m_suiteDefinitionId = std::move(value); } /** *

Suite definition ID of the test suite.

*/ inline void SetSuiteDefinitionId(const char* value) { m_suiteDefinitionIdHasBeenSet = true; m_suiteDefinitionId.assign(value); } /** *

Suite definition ID of the test suite.

*/ inline GetSuiteRunReportRequest& WithSuiteDefinitionId(const Aws::String& value) { SetSuiteDefinitionId(value); return *this;} /** *

Suite definition ID of the test suite.

*/ inline GetSuiteRunReportRequest& WithSuiteDefinitionId(Aws::String&& value) { SetSuiteDefinitionId(std::move(value)); return *this;} /** *

Suite definition ID of the test suite.

*/ inline GetSuiteRunReportRequest& WithSuiteDefinitionId(const char* value) { SetSuiteDefinitionId(value); return *this;} /** *

Suite run ID of the test suite run.

*/ inline const Aws::String& GetSuiteRunId() const{ return m_suiteRunId; } /** *

Suite run ID of the test suite run.

*/ inline bool SuiteRunIdHasBeenSet() const { return m_suiteRunIdHasBeenSet; } /** *

Suite run ID of the test suite run.

*/ inline void SetSuiteRunId(const Aws::String& value) { m_suiteRunIdHasBeenSet = true; m_suiteRunId = value; } /** *

Suite run ID of the test suite run.

*/ inline void SetSuiteRunId(Aws::String&& value) { m_suiteRunIdHasBeenSet = true; m_suiteRunId = std::move(value); } /** *

Suite run ID of the test suite run.

*/ inline void SetSuiteRunId(const char* value) { m_suiteRunIdHasBeenSet = true; m_suiteRunId.assign(value); } /** *

Suite run ID of the test suite run.

*/ inline GetSuiteRunReportRequest& WithSuiteRunId(const Aws::String& value) { SetSuiteRunId(value); return *this;} /** *

Suite run ID of the test suite run.

*/ inline GetSuiteRunReportRequest& WithSuiteRunId(Aws::String&& value) { SetSuiteRunId(std::move(value)); return *this;} /** *

Suite run ID of the test suite run.

*/ inline GetSuiteRunReportRequest& WithSuiteRunId(const char* value) { SetSuiteRunId(value); return *this;} private: Aws::String m_suiteDefinitionId; bool m_suiteDefinitionIdHasBeenSet = false; Aws::String m_suiteRunId; bool m_suiteRunIdHasBeenSet = false; }; } // namespace Model } // namespace IoTDeviceAdvisor } // namespace Aws