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

Lifecycle last Test reverted.

See Also:

AWS * API Reference

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

Lifecycle last Test reverted API call date and time.

*/ inline const Aws::String& GetApiCallDateTime() const{ return m_apiCallDateTime; } /** *

Lifecycle last Test reverted API call date and time.

*/ inline bool ApiCallDateTimeHasBeenSet() const { return m_apiCallDateTimeHasBeenSet; } /** *

Lifecycle last Test reverted API call date and time.

*/ inline void SetApiCallDateTime(const Aws::String& value) { m_apiCallDateTimeHasBeenSet = true; m_apiCallDateTime = value; } /** *

Lifecycle last Test reverted API call date and time.

*/ inline void SetApiCallDateTime(Aws::String&& value) { m_apiCallDateTimeHasBeenSet = true; m_apiCallDateTime = std::move(value); } /** *

Lifecycle last Test reverted API call date and time.

*/ inline void SetApiCallDateTime(const char* value) { m_apiCallDateTimeHasBeenSet = true; m_apiCallDateTime.assign(value); } /** *

Lifecycle last Test reverted API call date and time.

*/ inline LifeCycleLastTestReverted& WithApiCallDateTime(const Aws::String& value) { SetApiCallDateTime(value); return *this;} /** *

Lifecycle last Test reverted API call date and time.

*/ inline LifeCycleLastTestReverted& WithApiCallDateTime(Aws::String&& value) { SetApiCallDateTime(std::move(value)); return *this;} /** *

Lifecycle last Test reverted API call date and time.

*/ inline LifeCycleLastTestReverted& WithApiCallDateTime(const char* value) { SetApiCallDateTime(value); return *this;} private: Aws::String m_apiCallDateTime; bool m_apiCallDateTimeHasBeenSet = false; }; } // namespace Model } // namespace mgn } // namespace Aws