/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CodeBuild { namespace Model { /** *

Information about the Git submodules configuration for an AWS CodeBuild * build project.

See Also:

AWS * API Reference

*/ class AWS_CODEBUILD_API GitSubmodulesConfig { public: GitSubmodulesConfig(); GitSubmodulesConfig(Aws::Utils::Json::JsonView jsonValue); GitSubmodulesConfig& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

Set to true to fetch Git submodules for your AWS CodeBuild build project. *

*/ inline bool GetFetchSubmodules() const{ return m_fetchSubmodules; } /** *

Set to true to fetch Git submodules for your AWS CodeBuild build project. *

*/ inline bool FetchSubmodulesHasBeenSet() const { return m_fetchSubmodulesHasBeenSet; } /** *

Set to true to fetch Git submodules for your AWS CodeBuild build project. *

*/ inline void SetFetchSubmodules(bool value) { m_fetchSubmodulesHasBeenSet = true; m_fetchSubmodules = value; } /** *

Set to true to fetch Git submodules for your AWS CodeBuild build project. *

*/ inline GitSubmodulesConfig& WithFetchSubmodules(bool value) { SetFetchSubmodules(value); return *this;} private: bool m_fetchSubmodules; bool m_fetchSubmodulesHasBeenSet; }; } // namespace Model } // namespace CodeBuild } // namespace Aws