/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This structure contains the time and date that Evidently completed the
* analysis of the experiment.See Also:
AWS
* API Reference
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