/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

A summary of a pipeline.

See Also:

AWS * API Reference

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

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 bool PipelineArnHasBeenSet() const { return m_pipelineArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the pipeline.

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

The Amazon Resource Name (ARN) of the pipeline.

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

The Amazon Resource Name (ARN) of the pipeline.

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

The Amazon Resource Name (ARN) of the pipeline.

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

The Amazon Resource Name (ARN) of the pipeline.

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

The Amazon Resource Name (ARN) of the pipeline.

*/ inline PipelineSummary& 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 bool PipelineNameHasBeenSet() const { return m_pipelineNameHasBeenSet; } /** *

The name of the pipeline.

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

The name of the pipeline.

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

The name of the pipeline.

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

The name of the pipeline.

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

The name of the pipeline.

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

The name of the pipeline.

*/ inline PipelineSummary& 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 bool PipelineDisplayNameHasBeenSet() const { return m_pipelineDisplayNameHasBeenSet; } /** *

The display name of the pipeline.

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

The display name of the pipeline.

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

The display name of the pipeline.

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

The display name of the pipeline.

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

The display name of the pipeline.

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

The display name of the pipeline.

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

The description of the pipeline.

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

The description of the pipeline.

*/ inline bool PipelineDescriptionHasBeenSet() const { return m_pipelineDescriptionHasBeenSet; } /** *

The description of the pipeline.

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

The description of the pipeline.

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

The description of the pipeline.

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

The description of the pipeline.

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

The description of the pipeline.

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

The description of the pipeline.

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

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

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

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

*/ inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; } /** *

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

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

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

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

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

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

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

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

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

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

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

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

The creation time of the pipeline.

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

The creation time of the pipeline.

*/ inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *

The creation time of the pipeline.

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

The creation time of the pipeline.

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

The creation time of the pipeline.

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

The creation time of the pipeline.

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

The time that the pipeline was last modified.

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

The time that the pipeline was last modified.

*/ inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; } /** *

The time that the pipeline was last modified.

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

The time that the pipeline was last modified.

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

The time that the pipeline was last modified.

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

The time that the pipeline was last modified.

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

The last time that a pipeline execution began.

*/ inline const Aws::Utils::DateTime& GetLastExecutionTime() const{ return m_lastExecutionTime; } /** *

The last time that a pipeline execution began.

*/ inline bool LastExecutionTimeHasBeenSet() const { return m_lastExecutionTimeHasBeenSet; } /** *

The last time that a pipeline execution began.

*/ inline void SetLastExecutionTime(const Aws::Utils::DateTime& value) { m_lastExecutionTimeHasBeenSet = true; m_lastExecutionTime = value; } /** *

The last time that a pipeline execution began.

*/ inline void SetLastExecutionTime(Aws::Utils::DateTime&& value) { m_lastExecutionTimeHasBeenSet = true; m_lastExecutionTime = std::move(value); } /** *

The last time that a pipeline execution began.

*/ inline PipelineSummary& WithLastExecutionTime(const Aws::Utils::DateTime& value) { SetLastExecutionTime(value); return *this;} /** *

The last time that a pipeline execution began.

*/ inline PipelineSummary& WithLastExecutionTime(Aws::Utils::DateTime&& value) { SetLastExecutionTime(std::move(value)); return *this;} private: Aws::String m_pipelineArn; bool m_pipelineArnHasBeenSet = false; Aws::String m_pipelineName; bool m_pipelineNameHasBeenSet = false; Aws::String m_pipelineDisplayName; bool m_pipelineDisplayNameHasBeenSet = false; Aws::String m_pipelineDescription; bool m_pipelineDescriptionHasBeenSet = false; Aws::String m_roleArn; bool m_roleArnHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; Aws::Utils::DateTime m_lastModifiedTime; bool m_lastModifiedTimeHasBeenSet = false; Aws::Utils::DateTime m_lastExecutionTime; bool m_lastExecutionTimeHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws