/** * 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 { /** *

A file that is deleted as part of a commit.

See Also:

AWS * API Reference

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*/ inline DeleteFileEntry& WithFilePath(const char* value) { SetFilePath(value); return *this;} private: Aws::String m_filePath; bool m_filePathHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws