/** * 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 DescribeBatchSegmentJobRequest : public PersonalizeRequest { public: AWS_PERSONALIZE_API DescribeBatchSegmentJobRequest(); // 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 "DescribeBatchSegmentJob"; } AWS_PERSONALIZE_API Aws::String SerializePayload() const override; AWS_PERSONALIZE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ARN of the batch segment job to describe.

*/ inline const Aws::String& GetBatchSegmentJobArn() const{ return m_batchSegmentJobArn; } /** *

The ARN of the batch segment job to describe.

*/ inline bool BatchSegmentJobArnHasBeenSet() const { return m_batchSegmentJobArnHasBeenSet; } /** *

The ARN of the batch segment job to describe.

*/ inline void SetBatchSegmentJobArn(const Aws::String& value) { m_batchSegmentJobArnHasBeenSet = true; m_batchSegmentJobArn = value; } /** *

The ARN of the batch segment job to describe.

*/ inline void SetBatchSegmentJobArn(Aws::String&& value) { m_batchSegmentJobArnHasBeenSet = true; m_batchSegmentJobArn = std::move(value); } /** *

The ARN of the batch segment job to describe.

*/ inline void SetBatchSegmentJobArn(const char* value) { m_batchSegmentJobArnHasBeenSet = true; m_batchSegmentJobArn.assign(value); } /** *

The ARN of the batch segment job to describe.

*/ inline DescribeBatchSegmentJobRequest& WithBatchSegmentJobArn(const Aws::String& value) { SetBatchSegmentJobArn(value); return *this;} /** *

The ARN of the batch segment job to describe.

*/ inline DescribeBatchSegmentJobRequest& WithBatchSegmentJobArn(Aws::String&& value) { SetBatchSegmentJobArn(std::move(value)); return *this;} /** *

The ARN of the batch segment job to describe.

*/ inline DescribeBatchSegmentJobRequest& WithBatchSegmentJobArn(const char* value) { SetBatchSegmentJobArn(value); return *this;} private: Aws::String m_batchSegmentJobArn; bool m_batchSegmentJobArnHasBeenSet = false; }; } // namespace Model } // namespace Personalize } // namespace Aws