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

Settings for a store.

See Also:

AWS * API Reference

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

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