/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

The ARN from an execution of the current pipeline.

See Also:

* AWS * API Reference

*/ class SelectiveExecutionResult { public: AWS_SAGEMAKER_API SelectiveExecutionResult(); AWS_SAGEMAKER_API SelectiveExecutionResult(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API SelectiveExecutionResult& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ARN from an execution of the current pipeline.

*/ inline const Aws::String& GetSourcePipelineExecutionArn() const{ return m_sourcePipelineExecutionArn; } /** *

The ARN from an execution of the current pipeline.

*/ inline bool SourcePipelineExecutionArnHasBeenSet() const { return m_sourcePipelineExecutionArnHasBeenSet; } /** *

The ARN from an execution of the current pipeline.

*/ inline void SetSourcePipelineExecutionArn(const Aws::String& value) { m_sourcePipelineExecutionArnHasBeenSet = true; m_sourcePipelineExecutionArn = value; } /** *

The ARN from an execution of the current pipeline.

*/ inline void SetSourcePipelineExecutionArn(Aws::String&& value) { m_sourcePipelineExecutionArnHasBeenSet = true; m_sourcePipelineExecutionArn = std::move(value); } /** *

The ARN from an execution of the current pipeline.

*/ inline void SetSourcePipelineExecutionArn(const char* value) { m_sourcePipelineExecutionArnHasBeenSet = true; m_sourcePipelineExecutionArn.assign(value); } /** *

The ARN from an execution of the current pipeline.

*/ inline SelectiveExecutionResult& WithSourcePipelineExecutionArn(const Aws::String& value) { SetSourcePipelineExecutionArn(value); return *this;} /** *

The ARN from an execution of the current pipeline.

*/ inline SelectiveExecutionResult& WithSourcePipelineExecutionArn(Aws::String&& value) { SetSourcePipelineExecutionArn(std::move(value)); return *this;} /** *

The ARN from an execution of the current pipeline.

*/ inline SelectiveExecutionResult& WithSourcePipelineExecutionArn(const char* value) { SetSourcePipelineExecutionArn(value); return *this;} private: Aws::String m_sourcePipelineExecutionArn; bool m_sourcePipelineExecutionArnHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws