/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Formatting options for a TSV file.See Also:
AWS
* API Reference
The file's read options.
*/ inline const ReadOptions& GetReadOptions() const{ return m_readOptions; } /** *The file's read options.
*/ inline bool ReadOptionsHasBeenSet() const { return m_readOptionsHasBeenSet; } /** *The file's read options.
*/ inline void SetReadOptions(const ReadOptions& value) { m_readOptionsHasBeenSet = true; m_readOptions = value; } /** *The file's read options.
*/ inline void SetReadOptions(ReadOptions&& value) { m_readOptionsHasBeenSet = true; m_readOptions = std::move(value); } /** *The file's read options.
*/ inline TsvOptions& WithReadOptions(const ReadOptions& value) { SetReadOptions(value); return *this;} /** *The file's read options.
*/ inline TsvOptions& WithReadOptions(ReadOptions&& value) { SetReadOptions(std::move(value)); return *this;} private: ReadOptions m_readOptions; bool m_readOptionsHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws