/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the returned data in response to a request action.See
* Also:
AWS
* API Reference
The updated build resource.
*/ inline const Build& GetBuild() const{ return m_build; } /** *The updated build resource.
*/ inline void SetBuild(const Build& value) { m_build = value; } /** *The updated build resource.
*/ inline void SetBuild(Build&& value) { m_build = std::move(value); } /** *The updated build resource.
*/ inline UpdateBuildResult& WithBuild(const Build& value) { SetBuild(value); return *this;} /** *The updated build resource.
*/ inline UpdateBuildResult& WithBuild(Build&& value) { SetBuild(std::move(value)); return *this;} private: Build m_build; }; } // namespace Model } // namespace GameLift } // namespace Aws