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

Formatting options for a TSV file.

See Also:

AWS * API Reference

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

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