/** * 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 Omics { namespace Model { /** *

Files in a read set.

See Also:

AWS * API Reference

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

The location of the first file in Amazon S3.

*/ inline const FileInformation& GetSource1() const{ return m_source1; } /** *

The location of the first file in Amazon S3.

*/ inline bool Source1HasBeenSet() const { return m_source1HasBeenSet; } /** *

The location of the first file in Amazon S3.

*/ inline void SetSource1(const FileInformation& value) { m_source1HasBeenSet = true; m_source1 = value; } /** *

The location of the first file in Amazon S3.

*/ inline void SetSource1(FileInformation&& value) { m_source1HasBeenSet = true; m_source1 = std::move(value); } /** *

The location of the first file in Amazon S3.

*/ inline ReadSetFiles& WithSource1(const FileInformation& value) { SetSource1(value); return *this;} /** *

The location of the first file in Amazon S3.

*/ inline ReadSetFiles& WithSource1(FileInformation&& value) { SetSource1(std::move(value)); return *this;} /** *

The location of the second file in Amazon S3.

*/ inline const FileInformation& GetSource2() const{ return m_source2; } /** *

The location of the second file in Amazon S3.

*/ inline bool Source2HasBeenSet() const { return m_source2HasBeenSet; } /** *

The location of the second file in Amazon S3.

*/ inline void SetSource2(const FileInformation& value) { m_source2HasBeenSet = true; m_source2 = value; } /** *

The location of the second file in Amazon S3.

*/ inline void SetSource2(FileInformation&& value) { m_source2HasBeenSet = true; m_source2 = std::move(value); } /** *

The location of the second file in Amazon S3.

*/ inline ReadSetFiles& WithSource2(const FileInformation& value) { SetSource2(value); return *this;} /** *

The location of the second file in Amazon S3.

*/ inline ReadSetFiles& WithSource2(FileInformation&& value) { SetSource2(std::move(value)); return *this;} /** *

The files' index.

*/ inline const FileInformation& GetIndex() const{ return m_index; } /** *

The files' index.

*/ inline bool IndexHasBeenSet() const { return m_indexHasBeenSet; } /** *

The files' index.

*/ inline void SetIndex(const FileInformation& value) { m_indexHasBeenSet = true; m_index = value; } /** *

The files' index.

*/ inline void SetIndex(FileInformation&& value) { m_indexHasBeenSet = true; m_index = std::move(value); } /** *

The files' index.

*/ inline ReadSetFiles& WithIndex(const FileInformation& value) { SetIndex(value); return *this;} /** *

The files' index.

*/ inline ReadSetFiles& WithIndex(FileInformation&& value) { SetIndex(std::move(value)); return *this;} private: FileInformation m_source1; bool m_source1HasBeenSet = false; FileInformation m_source2; bool m_source2HasBeenSet = false; FileInformation m_index; bool m_indexHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws