72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/codebuild/CodeBuild_EXPORTS.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace CodeBuild
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p> Information about the Git submodules configuration for an AWS CodeBuild
|
|
* build project. </p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/GitSubmodulesConfig">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
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;
|
|
|
|
|
|
/**
|
|
* <p> Set to true to fetch Git submodules for your AWS CodeBuild build project.
|
|
* </p>
|
|
*/
|
|
inline bool GetFetchSubmodules() const{ return m_fetchSubmodules; }
|
|
|
|
/**
|
|
* <p> Set to true to fetch Git submodules for your AWS CodeBuild build project.
|
|
* </p>
|
|
*/
|
|
inline bool FetchSubmodulesHasBeenSet() const { return m_fetchSubmodulesHasBeenSet; }
|
|
|
|
/**
|
|
* <p> Set to true to fetch Git submodules for your AWS CodeBuild build project.
|
|
* </p>
|
|
*/
|
|
inline void SetFetchSubmodules(bool value) { m_fetchSubmodulesHasBeenSet = true; m_fetchSubmodules = value; }
|
|
|
|
/**
|
|
* <p> Set to true to fetch Git submodules for your AWS CodeBuild build project.
|
|
* </p>
|
|
*/
|
|
inline GitSubmodulesConfig& WithFetchSubmodules(bool value) { SetFetchSubmodules(value); return *this;}
|
|
|
|
private:
|
|
|
|
bool m_fetchSubmodules;
|
|
bool m_fetchSubmodulesHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CodeBuild
|
|
} // namespace Aws
|