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

A BuildBatch object that contains information about the batch * build.

*/ inline const BuildBatch& GetBuildBatch() const{ return m_buildBatch; } /** *

A BuildBatch object that contains information about the batch * build.

*/ inline void SetBuildBatch(const BuildBatch& value) { m_buildBatch = value; } /** *

A BuildBatch object that contains information about the batch * build.

*/ inline void SetBuildBatch(BuildBatch&& value) { m_buildBatch = std::move(value); } /** *

A BuildBatch object that contains information about the batch * build.

*/ inline StartBuildBatchResult& WithBuildBatch(const BuildBatch& value) { SetBuildBatch(value); return *this;} /** *

A BuildBatch object that contains information about the batch * build.

*/ inline StartBuildBatchResult& WithBuildBatch(BuildBatch&& value) { SetBuildBatch(std::move(value)); return *this;} private: BuildBatch m_buildBatch; }; } // namespace Model } // namespace CodeBuild } // namespace Aws