/** * 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 DeviceFarm { namespace Model { /** *

Represents the result of a get suite request.

See Also:

AWS * API Reference

*/ class GetSuiteResult { public: AWS_DEVICEFARM_API GetSuiteResult(); AWS_DEVICEFARM_API GetSuiteResult(const Aws::AmazonWebServiceResult& result); AWS_DEVICEFARM_API GetSuiteResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A collection of one or more tests.

*/ inline const Suite& GetSuite() const{ return m_suite; } /** *

A collection of one or more tests.

*/ inline void SetSuite(const Suite& value) { m_suite = value; } /** *

A collection of one or more tests.

*/ inline void SetSuite(Suite&& value) { m_suite = std::move(value); } /** *

A collection of one or more tests.

*/ inline GetSuiteResult& WithSuite(const Suite& value) { SetSuite(value); return *this;} /** *

A collection of one or more tests.

*/ inline GetSuiteResult& WithSuite(Suite&& value) { SetSuite(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 GetSuiteResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetSuiteResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetSuiteResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Suite m_suite; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws