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

Represents the result of a get suite request.

See Also:

AWS * API Reference

*/ class AWS_DEVICEFARM_API GetSuiteResult { public: GetSuiteResult(); GetSuiteResult(const Aws::AmazonWebServiceResult& result); 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;} private: Suite m_suite; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws