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

A set of genome reference files.

See Also:

AWS * API Reference

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

The source file's location in Amazon S3.

*/ inline const FileInformation& GetSource() const{ return m_source; } /** *

The source file's location in Amazon S3.

*/ inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; } /** *

The source file's location in Amazon S3.

*/ inline void SetSource(const FileInformation& value) { m_sourceHasBeenSet = true; m_source = value; } /** *

The source file's location in Amazon S3.

*/ inline void SetSource(FileInformation&& value) { m_sourceHasBeenSet = true; m_source = std::move(value); } /** *

The source file's location in Amazon S3.

*/ inline ReferenceFiles& WithSource(const FileInformation& value) { SetSource(value); return *this;} /** *

The source file's location in Amazon S3.

*/ inline ReferenceFiles& WithSource(FileInformation&& value) { SetSource(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 ReferenceFiles& WithIndex(const FileInformation& value) { SetIndex(value); return *this;} /** *

The files' index.

*/ inline ReferenceFiles& WithIndex(FileInformation&& value) { SetIndex(std::move(value)); return *this;} private: FileInformation m_source; bool m_sourceHasBeenSet = false; FileInformation m_index; bool m_indexHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws