/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace SageMaker { namespace Model { /** */ class UpdatePipelineExecutionRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API UpdatePipelineExecutionRequest(); // 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 "UpdatePipelineExecution"; } 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 UpdatePipelineExecutionRequest& WithPipelineExecutionArn(const Aws::String& value) { SetPipelineExecutionArn(value); return *this;} /** *

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

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

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

*/ inline UpdatePipelineExecutionRequest& WithPipelineExecutionArn(const char* value) { SetPipelineExecutionArn(value); return *this;} /** *

The description of the pipeline execution.

*/ inline const Aws::String& GetPipelineExecutionDescription() const{ return m_pipelineExecutionDescription; } /** *

The description of the pipeline execution.

*/ inline bool PipelineExecutionDescriptionHasBeenSet() const { return m_pipelineExecutionDescriptionHasBeenSet; } /** *

The description of the pipeline execution.

*/ inline void SetPipelineExecutionDescription(const Aws::String& value) { m_pipelineExecutionDescriptionHasBeenSet = true; m_pipelineExecutionDescription = value; } /** *

The description of the pipeline execution.

*/ inline void SetPipelineExecutionDescription(Aws::String&& value) { m_pipelineExecutionDescriptionHasBeenSet = true; m_pipelineExecutionDescription = std::move(value); } /** *

The description of the pipeline execution.

*/ inline void SetPipelineExecutionDescription(const char* value) { m_pipelineExecutionDescriptionHasBeenSet = true; m_pipelineExecutionDescription.assign(value); } /** *

The description of the pipeline execution.

*/ inline UpdatePipelineExecutionRequest& WithPipelineExecutionDescription(const Aws::String& value) { SetPipelineExecutionDescription(value); return *this;} /** *

The description of the pipeline execution.

*/ inline UpdatePipelineExecutionRequest& WithPipelineExecutionDescription(Aws::String&& value) { SetPipelineExecutionDescription(std::move(value)); return *this;} /** *

The description of the pipeline execution.

*/ inline UpdatePipelineExecutionRequest& WithPipelineExecutionDescription(const char* value) { SetPipelineExecutionDescription(value); return *this;} /** *

The display name of the pipeline execution.

*/ inline const Aws::String& GetPipelineExecutionDisplayName() const{ return m_pipelineExecutionDisplayName; } /** *

The display name of the pipeline execution.

*/ inline bool PipelineExecutionDisplayNameHasBeenSet() const { return m_pipelineExecutionDisplayNameHasBeenSet; } /** *

The display name of the pipeline execution.

*/ inline void SetPipelineExecutionDisplayName(const Aws::String& value) { m_pipelineExecutionDisplayNameHasBeenSet = true; m_pipelineExecutionDisplayName = value; } /** *

The display name of the pipeline execution.

*/ inline void SetPipelineExecutionDisplayName(Aws::String&& value) { m_pipelineExecutionDisplayNameHasBeenSet = true; m_pipelineExecutionDisplayName = std::move(value); } /** *

The display name of the pipeline execution.

*/ inline void SetPipelineExecutionDisplayName(const char* value) { m_pipelineExecutionDisplayNameHasBeenSet = true; m_pipelineExecutionDisplayName.assign(value); } /** *

The display name of the pipeline execution.

*/ inline UpdatePipelineExecutionRequest& WithPipelineExecutionDisplayName(const Aws::String& value) { SetPipelineExecutionDisplayName(value); return *this;} /** *

The display name of the pipeline execution.

*/ inline UpdatePipelineExecutionRequest& WithPipelineExecutionDisplayName(Aws::String&& value) { SetPipelineExecutionDisplayName(std::move(value)); return *this;} /** *

The display name of the pipeline execution.

*/ inline UpdatePipelineExecutionRequest& WithPipelineExecutionDisplayName(const char* value) { SetPipelineExecutionDisplayName(value); return *this;} /** *

This configuration, if specified, overrides the parallelism configuration of * the parent pipeline for this specific run.

*/ inline const ParallelismConfiguration& GetParallelismConfiguration() const{ return m_parallelismConfiguration; } /** *

This configuration, if specified, overrides the parallelism configuration of * the parent pipeline for this specific run.

*/ inline bool ParallelismConfigurationHasBeenSet() const { return m_parallelismConfigurationHasBeenSet; } /** *

This configuration, if specified, overrides the parallelism configuration of * the parent pipeline for this specific run.

*/ inline void SetParallelismConfiguration(const ParallelismConfiguration& value) { m_parallelismConfigurationHasBeenSet = true; m_parallelismConfiguration = value; } /** *

This configuration, if specified, overrides the parallelism configuration of * the parent pipeline for this specific run.

*/ inline void SetParallelismConfiguration(ParallelismConfiguration&& value) { m_parallelismConfigurationHasBeenSet = true; m_parallelismConfiguration = std::move(value); } /** *

This configuration, if specified, overrides the parallelism configuration of * the parent pipeline for this specific run.

*/ inline UpdatePipelineExecutionRequest& WithParallelismConfiguration(const ParallelismConfiguration& value) { SetParallelismConfiguration(value); return *this;} /** *

This configuration, if specified, overrides the parallelism configuration of * the parent pipeline for this specific run.

*/ inline UpdatePipelineExecutionRequest& WithParallelismConfiguration(ParallelismConfiguration&& value) { SetParallelismConfiguration(std::move(value)); return *this;} private: Aws::String m_pipelineExecutionArn; bool m_pipelineExecutionArnHasBeenSet = false; Aws::String m_pipelineExecutionDescription; bool m_pipelineExecutionDescriptionHasBeenSet = false; Aws::String m_pipelineExecutionDisplayName; bool m_pipelineExecutionDisplayNameHasBeenSet = false; ParallelismConfiguration m_parallelismConfiguration; bool m_parallelismConfigurationHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws