/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Personalize { namespace Model { class DescribeBatchSegmentJobResult { public: AWS_PERSONALIZE_API DescribeBatchSegmentJobResult(); AWS_PERSONALIZE_API DescribeBatchSegmentJobResult(const Aws::AmazonWebServiceResult& result); AWS_PERSONALIZE_API DescribeBatchSegmentJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information on the specified batch segment job.

*/ inline const BatchSegmentJob& GetBatchSegmentJob() const{ return m_batchSegmentJob; } /** *

Information on the specified batch segment job.

*/ inline void SetBatchSegmentJob(const BatchSegmentJob& value) { m_batchSegmentJob = value; } /** *

Information on the specified batch segment job.

*/ inline void SetBatchSegmentJob(BatchSegmentJob&& value) { m_batchSegmentJob = std::move(value); } /** *

Information on the specified batch segment job.

*/ inline DescribeBatchSegmentJobResult& WithBatchSegmentJob(const BatchSegmentJob& value) { SetBatchSegmentJob(value); return *this;} /** *

Information on the specified batch segment job.

*/ inline DescribeBatchSegmentJobResult& WithBatchSegmentJob(BatchSegmentJob&& value) { SetBatchSegmentJob(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeBatchSegmentJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeBatchSegmentJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeBatchSegmentJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: BatchSegmentJob m_batchSegmentJob; Aws::String m_requestId; }; } // namespace Model } // namespace Personalize } // namespace Aws