/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Returns information about a symbolic link in a repository
* folder.See Also:
AWS
* API Reference
The blob ID that contains the information about the symbolic link.
*/ inline const Aws::String& GetBlobId() const{ return m_blobId; } /** *The blob ID that contains the information about the symbolic link.
*/ inline bool BlobIdHasBeenSet() const { return m_blobIdHasBeenSet; } /** *The blob ID that contains the information about the symbolic link.
*/ inline void SetBlobId(const Aws::String& value) { m_blobIdHasBeenSet = true; m_blobId = value; } /** *The blob ID that contains the information about the symbolic link.
*/ inline void SetBlobId(Aws::String&& value) { m_blobIdHasBeenSet = true; m_blobId = std::move(value); } /** *The blob ID that contains the information about the symbolic link.
*/ inline void SetBlobId(const char* value) { m_blobIdHasBeenSet = true; m_blobId.assign(value); } /** *The blob ID that contains the information about the symbolic link.
*/ inline SymbolicLink& WithBlobId(const Aws::String& value) { SetBlobId(value); return *this;} /** *The blob ID that contains the information about the symbolic link.
*/ inline SymbolicLink& WithBlobId(Aws::String&& value) { SetBlobId(std::move(value)); return *this;} /** *The blob ID that contains the information about the symbolic link.
*/ inline SymbolicLink& WithBlobId(const char* value) { SetBlobId(value); return *this;} /** *The fully qualified path to the folder that contains the symbolic link.
*/ inline const Aws::String& GetAbsolutePath() const{ return m_absolutePath; } /** *The fully qualified path to the folder that contains the symbolic link.
*/ inline bool AbsolutePathHasBeenSet() const { return m_absolutePathHasBeenSet; } /** *The fully qualified path to the folder that contains the symbolic link.
*/ inline void SetAbsolutePath(const Aws::String& value) { m_absolutePathHasBeenSet = true; m_absolutePath = value; } /** *The fully qualified path to the folder that contains the symbolic link.
*/ inline void SetAbsolutePath(Aws::String&& value) { m_absolutePathHasBeenSet = true; m_absolutePath = std::move(value); } /** *The fully qualified path to the folder that contains the symbolic link.
*/ inline void SetAbsolutePath(const char* value) { m_absolutePathHasBeenSet = true; m_absolutePath.assign(value); } /** *The fully qualified path to the folder that contains the symbolic link.
*/ inline SymbolicLink& WithAbsolutePath(const Aws::String& value) { SetAbsolutePath(value); return *this;} /** *The fully qualified path to the folder that contains the symbolic link.
*/ inline SymbolicLink& WithAbsolutePath(Aws::String&& value) { SetAbsolutePath(std::move(value)); return *this;} /** *The fully qualified path to the folder that contains the symbolic link.
*/ inline SymbolicLink& WithAbsolutePath(const char* value) { SetAbsolutePath(value); return *this;} /** *The relative path of the symbolic link from the folder where the query * originated.
*/ inline const Aws::String& GetRelativePath() const{ return m_relativePath; } /** *The relative path of the symbolic link from the folder where the query * originated.
*/ inline bool RelativePathHasBeenSet() const { return m_relativePathHasBeenSet; } /** *The relative path of the symbolic link from the folder where the query * originated.
*/ inline void SetRelativePath(const Aws::String& value) { m_relativePathHasBeenSet = true; m_relativePath = value; } /** *The relative path of the symbolic link from the folder where the query * originated.
*/ inline void SetRelativePath(Aws::String&& value) { m_relativePathHasBeenSet = true; m_relativePath = std::move(value); } /** *The relative path of the symbolic link from the folder where the query * originated.
*/ inline void SetRelativePath(const char* value) { m_relativePathHasBeenSet = true; m_relativePath.assign(value); } /** *The relative path of the symbolic link from the folder where the query * originated.
*/ inline SymbolicLink& WithRelativePath(const Aws::String& value) { SetRelativePath(value); return *this;} /** *The relative path of the symbolic link from the folder where the query * originated.
*/ inline SymbolicLink& WithRelativePath(Aws::String&& value) { SetRelativePath(std::move(value)); return *this;} /** *The relative path of the symbolic link from the folder where the query * originated.
*/ inline SymbolicLink& WithRelativePath(const char* value) { SetRelativePath(value); return *this;} /** *The file mode permissions of the blob that cotains information about the * symbolic link.
*/ inline const FileModeTypeEnum& GetFileMode() const{ return m_fileMode; } /** *The file mode permissions of the blob that cotains information about the * symbolic link.
*/ inline bool FileModeHasBeenSet() const { return m_fileModeHasBeenSet; } /** *The file mode permissions of the blob that cotains information about the * symbolic link.
*/ inline void SetFileMode(const FileModeTypeEnum& value) { m_fileModeHasBeenSet = true; m_fileMode = value; } /** *The file mode permissions of the blob that cotains information about the * symbolic link.
*/ inline void SetFileMode(FileModeTypeEnum&& value) { m_fileModeHasBeenSet = true; m_fileMode = std::move(value); } /** *The file mode permissions of the blob that cotains information about the * symbolic link.
*/ inline SymbolicLink& WithFileMode(const FileModeTypeEnum& value) { SetFileMode(value); return *this;} /** *The file mode permissions of the blob that cotains information about the * symbolic link.
*/ inline SymbolicLink& WithFileMode(FileModeTypeEnum&& value) { SetFileMode(std::move(value)); return *this;} private: Aws::String m_blobId; bool m_blobIdHasBeenSet = false; Aws::String m_absolutePath; bool m_absolutePathHasBeenSet = false; Aws::String m_relativePath; bool m_relativePathHasBeenSet = false; FileModeTypeEnum m_fileMode; bool m_fileModeHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws