/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result structure for the update branch request. See
* Also:
AWS
* API Reference
The branch for an Amplify app, which maps to a third-party repository * branch.
*/ inline const Branch& GetBranch() const{ return m_branch; } /** *The branch for an Amplify app, which maps to a third-party repository * branch.
*/ inline void SetBranch(const Branch& value) { m_branch = value; } /** *The branch for an Amplify app, which maps to a third-party repository * branch.
*/ inline void SetBranch(Branch&& value) { m_branch = std::move(value); } /** *The branch for an Amplify app, which maps to a third-party repository * branch.
*/ inline UpdateBranchResult& WithBranch(const Branch& value) { SetBranch(value); return *this;} /** *The branch for an Amplify app, which maps to a third-party repository * branch.
*/ inline UpdateBranchResult& WithBranch(Branch&& value) { SetBranch(std::move(value)); return *this;} private: Branch m_branch; }; } // namespace Model } // namespace Amplify } // namespace Aws