/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Settings for a store.See Also:
AWS
* API Reference
File settings for a TSV store.
*/ inline const TsvStoreOptions& GetTsvStoreOptions() const{ return m_tsvStoreOptions; } /** *File settings for a TSV store.
*/ inline bool TsvStoreOptionsHasBeenSet() const { return m_tsvStoreOptionsHasBeenSet; } /** *File settings for a TSV store.
*/ inline void SetTsvStoreOptions(const TsvStoreOptions& value) { m_tsvStoreOptionsHasBeenSet = true; m_tsvStoreOptions = value; } /** *File settings for a TSV store.
*/ inline void SetTsvStoreOptions(TsvStoreOptions&& value) { m_tsvStoreOptionsHasBeenSet = true; m_tsvStoreOptions = std::move(value); } /** *File settings for a TSV store.
*/ inline StoreOptions& WithTsvStoreOptions(const TsvStoreOptions& value) { SetTsvStoreOptions(value); return *this;} /** *File settings for a TSV store.
*/ inline StoreOptions& WithTsvStoreOptions(TsvStoreOptions&& value) { SetTsvStoreOptions(std::move(value)); return *this;} private: TsvStoreOptions m_tsvStoreOptions; bool m_tsvStoreOptionsHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws