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

A source for a read set activation job.

See Also:

AWS * API Reference

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

The source's read set ID.

*/ inline const Aws::String& GetReadSetId() const{ return m_readSetId; } /** *

The source's read set ID.

*/ inline bool ReadSetIdHasBeenSet() const { return m_readSetIdHasBeenSet; } /** *

The source's read set ID.

*/ inline void SetReadSetId(const Aws::String& value) { m_readSetIdHasBeenSet = true; m_readSetId = value; } /** *

The source's read set ID.

*/ inline void SetReadSetId(Aws::String&& value) { m_readSetIdHasBeenSet = true; m_readSetId = std::move(value); } /** *

The source's read set ID.

*/ inline void SetReadSetId(const char* value) { m_readSetIdHasBeenSet = true; m_readSetId.assign(value); } /** *

The source's read set ID.

*/ inline StartReadSetActivationJobSourceItem& WithReadSetId(const Aws::String& value) { SetReadSetId(value); return *this;} /** *

The source's read set ID.

*/ inline StartReadSetActivationJobSourceItem& WithReadSetId(Aws::String&& value) { SetReadSetId(std::move(value)); return *this;} /** *

The source's read set ID.

*/ inline StartReadSetActivationJobSourceItem& WithReadSetId(const char* value) { SetReadSetId(value); return *this;} private: Aws::String m_readSetId; bool m_readSetIdHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws