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

The ARN of the batch inference job.

*/ inline const Aws::String& GetBatchInferenceJobArn() const{ return m_batchInferenceJobArn; } /** *

The ARN of the batch inference job.

*/ inline void SetBatchInferenceJobArn(const Aws::String& value) { m_batchInferenceJobArn = value; } /** *

The ARN of the batch inference job.

*/ inline void SetBatchInferenceJobArn(Aws::String&& value) { m_batchInferenceJobArn = std::move(value); } /** *

The ARN of the batch inference job.

*/ inline void SetBatchInferenceJobArn(const char* value) { m_batchInferenceJobArn.assign(value); } /** *

The ARN of the batch inference job.

*/ inline CreateBatchInferenceJobResult& WithBatchInferenceJobArn(const Aws::String& value) { SetBatchInferenceJobArn(value); return *this;} /** *

The ARN of the batch inference job.

*/ inline CreateBatchInferenceJobResult& WithBatchInferenceJobArn(Aws::String&& value) { SetBatchInferenceJobArn(std::move(value)); return *this;} /** *

The ARN of the batch inference job.

*/ inline CreateBatchInferenceJobResult& WithBatchInferenceJobArn(const char* value) { SetBatchInferenceJobArn(value); return *this;} private: Aws::String m_batchInferenceJobArn; }; } // namespace Model } // namespace Personalize } // namespace Aws