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

Information about pipeline reprocessing.

See Also:

AWS * API Reference

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

The reprocessingId returned by * StartPipelineReprocessing.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The reprocessingId returned by * StartPipelineReprocessing.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The reprocessingId returned by * StartPipelineReprocessing.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The reprocessingId returned by * StartPipelineReprocessing.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The reprocessingId returned by * StartPipelineReprocessing.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The reprocessingId returned by * StartPipelineReprocessing.

*/ inline ReprocessingSummary& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The reprocessingId returned by * StartPipelineReprocessing.

*/ inline ReprocessingSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The reprocessingId returned by * StartPipelineReprocessing.

*/ inline ReprocessingSummary& WithId(const char* value) { SetId(value); return *this;} /** *

The status of the pipeline reprocessing.

*/ inline const ReprocessingStatus& GetStatus() const{ return m_status; } /** *

The status of the pipeline reprocessing.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The status of the pipeline reprocessing.

*/ inline void SetStatus(const ReprocessingStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The status of the pipeline reprocessing.

*/ inline void SetStatus(ReprocessingStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The status of the pipeline reprocessing.

*/ inline ReprocessingSummary& WithStatus(const ReprocessingStatus& value) { SetStatus(value); return *this;} /** *

The status of the pipeline reprocessing.

*/ inline ReprocessingSummary& WithStatus(ReprocessingStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

The time the pipeline reprocessing was created.

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

The time the pipeline reprocessing was created.

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

The time the pipeline reprocessing was created.

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

The time the pipeline reprocessing was created.

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

The time the pipeline reprocessing was created.

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

The time the pipeline reprocessing was created.

*/ inline ReprocessingSummary& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; ReprocessingStatus m_status; bool m_statusHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; }; } // namespace Model } // namespace IoTAnalytics } // namespace Aws