/** * 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 MigrationHubStrategyRecommendations { namespace Model { /** *

Detailed information of the pipeline.

See Also:

AWS * API Reference

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

The time when the pipeline info was configured.

*/ inline const Aws::String& GetPipelineConfigurationTimeStamp() const{ return m_pipelineConfigurationTimeStamp; } /** *

The time when the pipeline info was configured.

*/ inline bool PipelineConfigurationTimeStampHasBeenSet() const { return m_pipelineConfigurationTimeStampHasBeenSet; } /** *

The time when the pipeline info was configured.

*/ inline void SetPipelineConfigurationTimeStamp(const Aws::String& value) { m_pipelineConfigurationTimeStampHasBeenSet = true; m_pipelineConfigurationTimeStamp = value; } /** *

The time when the pipeline info was configured.

*/ inline void SetPipelineConfigurationTimeStamp(Aws::String&& value) { m_pipelineConfigurationTimeStampHasBeenSet = true; m_pipelineConfigurationTimeStamp = std::move(value); } /** *

The time when the pipeline info was configured.

*/ inline void SetPipelineConfigurationTimeStamp(const char* value) { m_pipelineConfigurationTimeStampHasBeenSet = true; m_pipelineConfigurationTimeStamp.assign(value); } /** *

The time when the pipeline info was configured.

*/ inline PipelineInfo& WithPipelineConfigurationTimeStamp(const Aws::String& value) { SetPipelineConfigurationTimeStamp(value); return *this;} /** *

The time when the pipeline info was configured.

*/ inline PipelineInfo& WithPipelineConfigurationTimeStamp(Aws::String&& value) { SetPipelineConfigurationTimeStamp(std::move(value)); return *this;} /** *

The time when the pipeline info was configured.

*/ inline PipelineInfo& WithPipelineConfigurationTimeStamp(const char* value) { SetPipelineConfigurationTimeStamp(value); return *this;} /** *

The type of pipeline.

*/ inline const PipelineType& GetPipelineType() const{ return m_pipelineType; } /** *

The type of pipeline.

*/ inline bool PipelineTypeHasBeenSet() const { return m_pipelineTypeHasBeenSet; } /** *

The type of pipeline.

*/ inline void SetPipelineType(const PipelineType& value) { m_pipelineTypeHasBeenSet = true; m_pipelineType = value; } /** *

The type of pipeline.

*/ inline void SetPipelineType(PipelineType&& value) { m_pipelineTypeHasBeenSet = true; m_pipelineType = std::move(value); } /** *

The type of pipeline.

*/ inline PipelineInfo& WithPipelineType(const PipelineType& value) { SetPipelineType(value); return *this;} /** *

The type of pipeline.

*/ inline PipelineInfo& WithPipelineType(PipelineType&& value) { SetPipelineType(std::move(value)); return *this;} private: Aws::String m_pipelineConfigurationTimeStamp; bool m_pipelineConfigurationTimeStampHasBeenSet = false; PipelineType m_pipelineType; bool m_pipelineTypeHasBeenSet = false; }; } // namespace Model } // namespace MigrationHubStrategyRecommendations } // namespace Aws