/** * 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 Personalize { namespace Model { /** */ class DescribeBatchInferenceJobRequest : public PersonalizeRequest { public: AWS_PERSONALIZE_API DescribeBatchInferenceJobRequest(); // 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 "DescribeBatchInferenceJob"; } AWS_PERSONALIZE_API Aws::String SerializePayload() const override; AWS_PERSONALIZE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ARN of the batch inference job to describe.

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

The ARN of the batch inference job to describe.

*/ inline bool BatchInferenceJobArnHasBeenSet() const { return m_batchInferenceJobArnHasBeenSet; } /** *

The ARN of the batch inference job to describe.

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

The ARN of the batch inference job to describe.

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

The ARN of the batch inference job to describe.

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

The ARN of the batch inference job to describe.

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

The ARN of the batch inference job to describe.

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

The ARN of the batch inference job to describe.

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