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

A Workteam instance that contains information about the work * team.

*/ inline const Workteam& GetWorkteam() const{ return m_workteam; } /** *

A Workteam instance that contains information about the work * team.

*/ inline void SetWorkteam(const Workteam& value) { m_workteam = value; } /** *

A Workteam instance that contains information about the work * team.

*/ inline void SetWorkteam(Workteam&& value) { m_workteam = std::move(value); } /** *

A Workteam instance that contains information about the work * team.

*/ inline DescribeWorkteamResult& WithWorkteam(const Workteam& value) { SetWorkteam(value); return *this;} /** *

A Workteam instance that contains information about the work * team.

*/ inline DescribeWorkteamResult& WithWorkteam(Workteam&& value) { SetWorkteam(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 DescribeWorkteamResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeWorkteamResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeWorkteamResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Workteam m_workteam; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws