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

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 DescribePipelineDefinitionForExecutionResult& WithPipelineDefinition(const Aws::String& value) { SetPipelineDefinition(value); return *this;} /** *

The JSON pipeline definition.

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

The JSON pipeline definition.

*/ inline DescribePipelineDefinitionForExecutionResult& WithPipelineDefinition(const char* value) { SetPipelineDefinition(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 DescribePipelineDefinitionForExecutionResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The time when the pipeline was created.

*/ inline DescribePipelineDefinitionForExecutionResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(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 DescribePipelineDefinitionForExecutionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribePipelineDefinitionForExecutionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribePipelineDefinitionForExecutionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_pipelineDefinition; Aws::Utils::DateTime m_creationTime; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws