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

Suite Run ID of the started suite run.

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

Suite Run ID of the started suite run.

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

Suite Run ID of the started suite run.

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

Suite Run ID of the started suite run.

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

Suite Run ID of the started suite run.

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

Suite Run ID of the started suite run.

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

Suite Run ID of the started suite run.

*/ inline StartSuiteRunResult& WithSuiteRunId(const char* value) { SetSuiteRunId(value); return *this;} /** *

Amazon Resource Name (ARN) of the started suite run.

*/ inline const Aws::String& GetSuiteRunArn() const{ return m_suiteRunArn; } /** *

Amazon Resource Name (ARN) of the started suite run.

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

Amazon Resource Name (ARN) of the started suite run.

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

Amazon Resource Name (ARN) of the started suite run.

*/ inline void SetSuiteRunArn(const char* value) { m_suiteRunArn.assign(value); } /** *

Amazon Resource Name (ARN) of the started suite run.

*/ inline StartSuiteRunResult& WithSuiteRunArn(const Aws::String& value) { SetSuiteRunArn(value); return *this;} /** *

Amazon Resource Name (ARN) of the started suite run.

*/ inline StartSuiteRunResult& WithSuiteRunArn(Aws::String&& value) { SetSuiteRunArn(std::move(value)); return *this;} /** *

Amazon Resource Name (ARN) of the started suite run.

*/ inline StartSuiteRunResult& WithSuiteRunArn(const char* value) { SetSuiteRunArn(value); return *this;} /** *

Starts a Device Advisor test suite run based on suite create time.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *

Starts a Device Advisor test suite run based on suite create time.

*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; } /** *

Starts a Device Advisor test suite run based on suite create time.

*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); } /** *

Starts a Device Advisor test suite run based on suite create time.

*/ inline StartSuiteRunResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *

Starts a Device Advisor test suite run based on suite create time.

*/ inline StartSuiteRunResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *

The response of an Device Advisor test endpoint.

*/ inline const Aws::String& GetEndpoint() const{ return m_endpoint; } /** *

The response of an Device Advisor test endpoint.

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

The response of an Device Advisor test endpoint.

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

The response of an Device Advisor test endpoint.

*/ inline void SetEndpoint(const char* value) { m_endpoint.assign(value); } /** *

The response of an Device Advisor test endpoint.

*/ inline StartSuiteRunResult& WithEndpoint(const Aws::String& value) { SetEndpoint(value); return *this;} /** *

The response of an Device Advisor test endpoint.

*/ inline StartSuiteRunResult& WithEndpoint(Aws::String&& value) { SetEndpoint(std::move(value)); return *this;} /** *

The response of an Device Advisor test endpoint.

*/ inline StartSuiteRunResult& WithEndpoint(const char* value) { SetEndpoint(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 StartSuiteRunResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartSuiteRunResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartSuiteRunResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_suiteRunId; Aws::String m_suiteRunArn; Aws::Utils::DateTime m_createdAt; Aws::String m_endpoint; Aws::String m_requestId; }; } // namespace Model } // namespace IoTDeviceAdvisor } // namespace Aws