/** * 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 Omics { namespace Model { /** */ class GetReadSetImportJobRequest : public OmicsRequest { public: AWS_OMICS_API GetReadSetImportJobRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetReadSetImportJob"; } AWS_OMICS_API Aws::String SerializePayload() const override; /** *

The job's ID.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The job's ID.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The job's ID.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The job's ID.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The job's ID.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The job's ID.

*/ inline GetReadSetImportJobRequest& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The job's ID.

*/ inline GetReadSetImportJobRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The job's ID.

*/ inline GetReadSetImportJobRequest& WithId(const char* value) { SetId(value); return *this;} /** *

The job's sequence store ID.

*/ inline const Aws::String& GetSequenceStoreId() const{ return m_sequenceStoreId; } /** *

The job's sequence store ID.

*/ inline bool SequenceStoreIdHasBeenSet() const { return m_sequenceStoreIdHasBeenSet; } /** *

The job's sequence store ID.

*/ inline void SetSequenceStoreId(const Aws::String& value) { m_sequenceStoreIdHasBeenSet = true; m_sequenceStoreId = value; } /** *

The job's sequence store ID.

*/ inline void SetSequenceStoreId(Aws::String&& value) { m_sequenceStoreIdHasBeenSet = true; m_sequenceStoreId = std::move(value); } /** *

The job's sequence store ID.

*/ inline void SetSequenceStoreId(const char* value) { m_sequenceStoreIdHasBeenSet = true; m_sequenceStoreId.assign(value); } /** *

The job's sequence store ID.

*/ inline GetReadSetImportJobRequest& WithSequenceStoreId(const Aws::String& value) { SetSequenceStoreId(value); return *this;} /** *

The job's sequence store ID.

*/ inline GetReadSetImportJobRequest& WithSequenceStoreId(Aws::String&& value) { SetSequenceStoreId(std::move(value)); return *this;} /** *

The job's sequence store ID.

*/ inline GetReadSetImportJobRequest& WithSequenceStoreId(const char* value) { SetSequenceStoreId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; Aws::String m_sequenceStoreId; bool m_sequenceStoreIdHasBeenSet = false; }; } // namespace Model } // namespace Omics } // namespace Aws