/** * 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 SageMaker { namespace Model { /** */ class DescribePipelineExecutionRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API DescribePipelineExecutionRequest(); // 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 "DescribePipelineExecution"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the pipeline execution.

*/ inline const Aws::String& GetPipelineExecutionArn() const{ return m_pipelineExecutionArn; } /** *

The Amazon Resource Name (ARN) of the pipeline execution.

*/ inline bool PipelineExecutionArnHasBeenSet() const { return m_pipelineExecutionArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the pipeline execution.

*/ inline void SetPipelineExecutionArn(const Aws::String& value) { m_pipelineExecutionArnHasBeenSet = true; m_pipelineExecutionArn = value; } /** *

The Amazon Resource Name (ARN) of the pipeline execution.

*/ inline void SetPipelineExecutionArn(Aws::String&& value) { m_pipelineExecutionArnHasBeenSet = true; m_pipelineExecutionArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the pipeline execution.

*/ inline void SetPipelineExecutionArn(const char* value) { m_pipelineExecutionArnHasBeenSet = true; m_pipelineExecutionArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the pipeline execution.

*/ inline DescribePipelineExecutionRequest& WithPipelineExecutionArn(const Aws::String& value) { SetPipelineExecutionArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the pipeline execution.

*/ inline DescribePipelineExecutionRequest& WithPipelineExecutionArn(Aws::String&& value) { SetPipelineExecutionArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the pipeline execution.

*/ inline DescribePipelineExecutionRequest& WithPipelineExecutionArn(const char* value) { SetPipelineExecutionArn(value); return *this;} private: Aws::String m_pipelineExecutionArn; bool m_pipelineExecutionArnHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws