/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A file that is deleted as part of a commit.See Also:
AWS
* API Reference
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