/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the Git submodules configuration for an CodeBuild build
* project. See Also:
AWS
* API Reference
Set to true to fetch Git submodules for your CodeBuild build project.
*/ inline bool GetFetchSubmodules() const{ return m_fetchSubmodules; } /** *Set to true to fetch Git submodules for your CodeBuild build project.
*/ inline bool FetchSubmodulesHasBeenSet() const { return m_fetchSubmodulesHasBeenSet; } /** *Set to true to fetch Git submodules for your CodeBuild build project.
*/ inline void SetFetchSubmodules(bool value) { m_fetchSubmodulesHasBeenSet = true; m_fetchSubmodules = value; } /** *Set to true to fetch Git submodules for your CodeBuild build project.
*/ inline GitSubmodulesConfig& WithFetchSubmodules(bool value) { SetFetchSubmodules(value); return *this;} private: bool m_fetchSubmodules; bool m_fetchSubmodulesHasBeenSet = false; }; } // namespace Model } // namespace CodeBuild } // namespace Aws