/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #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 file.

See Also:

AWS * API Reference

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

Options for a TSV file.

*/ inline const TsvOptions& GetTsvOptions() const{ return m_tsvOptions; } /** *

Options for a TSV file.

*/ inline bool TsvOptionsHasBeenSet() const { return m_tsvOptionsHasBeenSet; } /** *

Options for a TSV file.

*/ inline void SetTsvOptions(const TsvOptions& value) { m_tsvOptionsHasBeenSet = true; m_tsvOptions = value; } /** *

Options for a TSV file.

*/ inline void SetTsvOptions(TsvOptions&& value) { m_tsvOptionsHasBeenSet = true; m_tsvOptions = std::move(value); } /** *

Options for a TSV file.

*/ inline FormatOptions& WithTsvOptions(const TsvOptions& value) { SetTsvOptions(value); return *this;} /** *

Options for a TSV file.

*/ inline FormatOptions& WithTsvOptions(TsvOptions&& value) { SetTsvOptions(std::move(value)); return *this;} /** *

Options for a VCF file.

*/ inline const VcfOptions& GetVcfOptions() const{ return m_vcfOptions; } /** *

Options for a VCF file.

*/ inline bool VcfOptionsHasBeenSet() const { return m_vcfOptionsHasBeenSet; } /** *

Options for a VCF file.

*/ inline void SetVcfOptions(const VcfOptions& value) { m_vcfOptionsHasBeenSet = true; m_vcfOptions = value; } /** *

Options for a VCF file.

*/ inline void SetVcfOptions(VcfOptions&& value) { m_vcfOptionsHasBeenSet = true; m_vcfOptions = std::move(value); } /** *

Options for a VCF file.

*/ inline FormatOptions& WithVcfOptions(const VcfOptions& value) { SetVcfOptions(value); return *this;} /** *

Options for a VCF file.

*/ inline FormatOptions& WithVcfOptions(VcfOptions&& value) { SetVcfOptions(std::move(value)); return *this;} private: TsvOptions m_tsvOptions; bool m_tsvOptionsHasBeenSet = false; VcfOptions m_vcfOptions; bool m_vcfOptionsHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws