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

Information about a source file that is part of changes made in a * commit.

See Also:

AWS * API Reference

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

The full path to the file, including the name of the file.

*/ inline const Aws::String& GetFilePath() const{ return m_filePath; } /** *

The full path to the file, including the name of the file.

*/ inline bool FilePathHasBeenSet() const { return m_filePathHasBeenSet; } /** *

The full path to the file, including the name of the file.

*/ inline void SetFilePath(const Aws::String& value) { m_filePathHasBeenSet = true; m_filePath = value; } /** *

The full path to the file, including the name of the file.

*/ inline void SetFilePath(Aws::String&& value) { m_filePathHasBeenSet = true; m_filePath = std::move(value); } /** *

The full path to the file, including the name of the file.

*/ inline void SetFilePath(const char* value) { m_filePathHasBeenSet = true; m_filePath.assign(value); } /** *

The full path to the file, including the name of the file.

*/ inline SourceFileSpecifier& WithFilePath(const Aws::String& value) { SetFilePath(value); return *this;} /** *

The full path to the file, including the name of the file.

*/ inline SourceFileSpecifier& WithFilePath(Aws::String&& value) { SetFilePath(std::move(value)); return *this;} /** *

The full path to the file, including the name of the file.

*/ inline SourceFileSpecifier& WithFilePath(const char* value) { SetFilePath(value); return *this;} /** *

Whether to remove the source file from the parent commit.

*/ inline bool GetIsMove() const{ return m_isMove; } /** *

Whether to remove the source file from the parent commit.

*/ inline bool IsMoveHasBeenSet() const { return m_isMoveHasBeenSet; } /** *

Whether to remove the source file from the parent commit.

*/ inline void SetIsMove(bool value) { m_isMoveHasBeenSet = true; m_isMove = value; } /** *

Whether to remove the source file from the parent commit.

*/ inline SourceFileSpecifier& WithIsMove(bool value) { SetIsMove(value); return *this;} private: Aws::String m_filePath; bool m_filePathHasBeenSet = false; bool m_isMove; bool m_isMoveHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws