/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { class DescribePipelineResult { public: AWS_SAGEMAKER_API DescribePipelineResult(); AWS_SAGEMAKER_API DescribePipelineResult(const Aws::AmazonWebServiceResult& result); AWS_SAGEMAKER_API DescribePipelineResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the pipeline.

*/ inline const Aws::String& GetPipelineArn() const{ return m_pipelineArn; } /** *

The Amazon Resource Name (ARN) of the pipeline.

*/ inline void SetPipelineArn(const Aws::String& value) { m_pipelineArn = value; } /** *

The Amazon Resource Name (ARN) of the pipeline.

*/ inline void SetPipelineArn(Aws::String&& value) { m_pipelineArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the pipeline.

*/ inline void SetPipelineArn(const char* value) { m_pipelineArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the pipeline.

*/ inline DescribePipelineResult& WithPipelineArn(const Aws::String& value) { SetPipelineArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the pipeline.

*/ inline DescribePipelineResult& WithPipelineArn(Aws::String&& value) { SetPipelineArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the pipeline.

*/ inline DescribePipelineResult& WithPipelineArn(const char* value) { SetPipelineArn(value); return *this;} /** *

The name of the pipeline.

*/ inline const Aws::String& GetPipelineName() const{ return m_pipelineName; } /** *

The name of the pipeline.

*/ inline void SetPipelineName(const Aws::String& value) { m_pipelineName = value; } /** *

The name of the pipeline.

*/ inline void SetPipelineName(Aws::String&& value) { m_pipelineName = std::move(value); } /** *

The name of the pipeline.

*/ inline void SetPipelineName(const char* value) { m_pipelineName.assign(value); } /** *

The name of the pipeline.

*/ inline DescribePipelineResult& WithPipelineName(const Aws::String& value) { SetPipelineName(value); return *this;} /** *

The name of the pipeline.

*/ inline DescribePipelineResult& WithPipelineName(Aws::String&& value) { SetPipelineName(std::move(value)); return *this;} /** *

The name of the pipeline.

*/ inline DescribePipelineResult& WithPipelineName(const char* value) { SetPipelineName(value); return *this;} /** *

The display name of the pipeline.

*/ inline const Aws::String& GetPipelineDisplayName() const{ return m_pipelineDisplayName; } /** *

The display name of the pipeline.

*/ inline void SetPipelineDisplayName(const Aws::String& value) { m_pipelineDisplayName = value; } /** *

The display name of the pipeline.

*/ inline void SetPipelineDisplayName(Aws::String&& value) { m_pipelineDisplayName = std::move(value); } /** *

The display name of the pipeline.

*/ inline void SetPipelineDisplayName(const char* value) { m_pipelineDisplayName.assign(value); } /** *

The display name of the pipeline.

*/ inline DescribePipelineResult& WithPipelineDisplayName(const Aws::String& value) { SetPipelineDisplayName(value); return *this;} /** *

The display name of the pipeline.

*/ inline DescribePipelineResult& WithPipelineDisplayName(Aws::String&& value) { SetPipelineDisplayName(std::move(value)); return *this;} /** *

The display name of the pipeline.

*/ inline DescribePipelineResult& WithPipelineDisplayName(const char* value) { SetPipelineDisplayName(value); return *this;} /** *

The JSON pipeline definition.

*/ inline const Aws::String& GetPipelineDefinition() const{ return m_pipelineDefinition; } /** *

The JSON pipeline definition.

*/ inline void SetPipelineDefinition(const Aws::String& value) { m_pipelineDefinition = value; } /** *

The JSON pipeline definition.

*/ inline void SetPipelineDefinition(Aws::String&& value) { m_pipelineDefinition = std::move(value); } /** *

The JSON pipeline definition.

*/ inline void SetPipelineDefinition(const char* value) { m_pipelineDefinition.assign(value); } /** *

The JSON pipeline definition.

*/ inline DescribePipelineResult& WithPipelineDefinition(const Aws::String& value) { SetPipelineDefinition(value); return *this;} /** *

The JSON pipeline definition.

*/ inline DescribePipelineResult& WithPipelineDefinition(Aws::String&& value) { SetPipelineDefinition(std::move(value)); return *this;} /** *

The JSON pipeline definition.

*/ inline DescribePipelineResult& WithPipelineDefinition(const char* value) { SetPipelineDefinition(value); return *this;} /** *

The description of the pipeline.

*/ inline const Aws::String& GetPipelineDescription() const{ return m_pipelineDescription; } /** *

The description of the pipeline.

*/ inline void SetPipelineDescription(const Aws::String& value) { m_pipelineDescription = value; } /** *

The description of the pipeline.

*/ inline void SetPipelineDescription(Aws::String&& value) { m_pipelineDescription = std::move(value); } /** *

The description of the pipeline.

*/ inline void SetPipelineDescription(const char* value) { m_pipelineDescription.assign(value); } /** *

The description of the pipeline.

*/ inline DescribePipelineResult& WithPipelineDescription(const Aws::String& value) { SetPipelineDescription(value); return *this;} /** *

The description of the pipeline.

*/ inline DescribePipelineResult& WithPipelineDescription(Aws::String&& value) { SetPipelineDescription(std::move(value)); return *this;} /** *

The description of the pipeline.

*/ inline DescribePipelineResult& WithPipelineDescription(const char* value) { SetPipelineDescription(value); return *this;} /** *

The Amazon Resource Name (ARN) that the pipeline uses to execute.

*/ inline const Aws::String& GetRoleArn() const{ return m_roleArn; } /** *

The Amazon Resource Name (ARN) that the pipeline uses to execute.

*/ inline void SetRoleArn(const Aws::String& value) { m_roleArn = value; } /** *

The Amazon Resource Name (ARN) that the pipeline uses to execute.

*/ inline void SetRoleArn(Aws::String&& value) { m_roleArn = std::move(value); } /** *

The Amazon Resource Name (ARN) that the pipeline uses to execute.

*/ inline void SetRoleArn(const char* value) { m_roleArn.assign(value); } /** *

The Amazon Resource Name (ARN) that the pipeline uses to execute.

*/ inline DescribePipelineResult& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;} /** *

The Amazon Resource Name (ARN) that the pipeline uses to execute.

*/ inline DescribePipelineResult& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) that the pipeline uses to execute.

*/ inline DescribePipelineResult& WithRoleArn(const char* value) { SetRoleArn(value); return *this;} /** *

The status of the pipeline execution.

*/ inline const PipelineStatus& GetPipelineStatus() const{ return m_pipelineStatus; } /** *

The status of the pipeline execution.

*/ inline void SetPipelineStatus(const PipelineStatus& value) { m_pipelineStatus = value; } /** *

The status of the pipeline execution.

*/ inline void SetPipelineStatus(PipelineStatus&& value) { m_pipelineStatus = std::move(value); } /** *

The status of the pipeline execution.

*/ inline DescribePipelineResult& WithPipelineStatus(const PipelineStatus& value) { SetPipelineStatus(value); return *this;} /** *

The status of the pipeline execution.

*/ inline DescribePipelineResult& WithPipelineStatus(PipelineStatus&& value) { SetPipelineStatus(std::move(value)); return *this;} /** *

The time when the pipeline was created.

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

The time when the pipeline was created.

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; } /** *

The time when the pipeline was created.

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); } /** *

The time when the pipeline was created.

*/ inline DescribePipelineResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The time when the pipeline was created.

*/ inline DescribePipelineResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *

The time when the pipeline was last modified.

*/ inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; } /** *

The time when the pipeline was last modified.

*/ inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTime = value; } /** *

The time when the pipeline was last modified.

*/ inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTime = std::move(value); } /** *

The time when the pipeline was last modified.

*/ inline DescribePipelineResult& WithLastModifiedTime(const Aws::Utils::DateTime& value) { SetLastModifiedTime(value); return *this;} /** *

The time when the pipeline was last modified.

*/ inline DescribePipelineResult& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;} /** *

The time when the pipeline was last run.

*/ inline const Aws::Utils::DateTime& GetLastRunTime() const{ return m_lastRunTime; } /** *

The time when the pipeline was last run.

*/ inline void SetLastRunTime(const Aws::Utils::DateTime& value) { m_lastRunTime = value; } /** *

The time when the pipeline was last run.

*/ inline void SetLastRunTime(Aws::Utils::DateTime&& value) { m_lastRunTime = std::move(value); } /** *

The time when the pipeline was last run.

*/ inline DescribePipelineResult& WithLastRunTime(const Aws::Utils::DateTime& value) { SetLastRunTime(value); return *this;} /** *

The time when the pipeline was last run.

*/ inline DescribePipelineResult& WithLastRunTime(Aws::Utils::DateTime&& value) { SetLastRunTime(std::move(value)); return *this;} inline const UserContext& GetCreatedBy() const{ return m_createdBy; } inline void SetCreatedBy(const UserContext& value) { m_createdBy = value; } inline void SetCreatedBy(UserContext&& value) { m_createdBy = std::move(value); } inline DescribePipelineResult& WithCreatedBy(const UserContext& value) { SetCreatedBy(value); return *this;} inline DescribePipelineResult& WithCreatedBy(UserContext&& value) { SetCreatedBy(std::move(value)); return *this;} inline const UserContext& GetLastModifiedBy() const{ return m_lastModifiedBy; } inline void SetLastModifiedBy(const UserContext& value) { m_lastModifiedBy = value; } inline void SetLastModifiedBy(UserContext&& value) { m_lastModifiedBy = std::move(value); } inline DescribePipelineResult& WithLastModifiedBy(const UserContext& value) { SetLastModifiedBy(value); return *this;} inline DescribePipelineResult& WithLastModifiedBy(UserContext&& value) { SetLastModifiedBy(std::move(value)); return *this;} /** *

Lists the parallelism configuration applied to the pipeline.

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

Lists the parallelism configuration applied to the pipeline.

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

Lists the parallelism configuration applied to the pipeline.

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

Lists the parallelism configuration applied to the pipeline.

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

Lists the parallelism configuration applied to the pipeline.

*/ inline DescribePipelineResult& WithParallelismConfiguration(ParallelismConfiguration&& value) { SetParallelismConfiguration(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribePipelineResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribePipelineResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribePipelineResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_pipelineArn; Aws::String m_pipelineName; Aws::String m_pipelineDisplayName; Aws::String m_pipelineDefinition; Aws::String m_pipelineDescription; Aws::String m_roleArn; PipelineStatus m_pipelineStatus; Aws::Utils::DateTime m_creationTime; Aws::Utils::DateTime m_lastModifiedTime; Aws::Utils::DateTime m_lastRunTime; UserContext m_createdBy; UserContext m_lastModifiedBy; ParallelismConfiguration m_parallelismConfiguration; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws