/** * 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 CodeBuild build * project.

See Also:

AWS * API Reference

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

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