/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CloudWatchEvidently { namespace Model { /** *

This structure contains the time and date that Evidently completed the * analysis of the experiment.

See Also:

AWS * API Reference

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

The time and date that Evidently completed the analysis of the * experiment.

*/ inline const Aws::Utils::DateTime& GetAnalysisCompleteTime() const{ return m_analysisCompleteTime; } /** *

The time and date that Evidently completed the analysis of the * experiment.

*/ inline bool AnalysisCompleteTimeHasBeenSet() const { return m_analysisCompleteTimeHasBeenSet; } /** *

The time and date that Evidently completed the analysis of the * experiment.

*/ inline void SetAnalysisCompleteTime(const Aws::Utils::DateTime& value) { m_analysisCompleteTimeHasBeenSet = true; m_analysisCompleteTime = value; } /** *

The time and date that Evidently completed the analysis of the * experiment.

*/ inline void SetAnalysisCompleteTime(Aws::Utils::DateTime&& value) { m_analysisCompleteTimeHasBeenSet = true; m_analysisCompleteTime = std::move(value); } /** *

The time and date that Evidently completed the analysis of the * experiment.

*/ inline ExperimentSchedule& WithAnalysisCompleteTime(const Aws::Utils::DateTime& value) { SetAnalysisCompleteTime(value); return *this;} /** *

The time and date that Evidently completed the analysis of the * experiment.

*/ inline ExperimentSchedule& WithAnalysisCompleteTime(Aws::Utils::DateTime&& value) { SetAnalysisCompleteTime(std::move(value)); return *this;} private: Aws::Utils::DateTime m_analysisCompleteTime; bool m_analysisCompleteTimeHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchEvidently } // namespace Aws