/** * 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 initiated.

See Also:

AWS * API Reference

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

Lifecycle last Test initiated API call date and time.

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

Lifecycle last Test initiated API call date and time.

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

Lifecycle last Test initiated API call date and time.

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

Lifecycle last Test initiated API call date and time.

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

Lifecycle last Test initiated API call date and time.

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

Lifecycle last Test initiated API call date and time.

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

Lifecycle last Test initiated API call date and time.

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

Lifecycle last Test initiated API call date and time.

*/ inline LifeCycleLastTestInitiated& WithApiCallDateTime(const char* value) { SetApiCallDateTime(value); return *this;} /** *

Lifecycle last Test initiated Job ID.

*/ inline const Aws::String& GetJobID() const{ return m_jobID; } /** *

Lifecycle last Test initiated Job ID.

*/ inline bool JobIDHasBeenSet() const { return m_jobIDHasBeenSet; } /** *

Lifecycle last Test initiated Job ID.

*/ inline void SetJobID(const Aws::String& value) { m_jobIDHasBeenSet = true; m_jobID = value; } /** *

Lifecycle last Test initiated Job ID.

*/ inline void SetJobID(Aws::String&& value) { m_jobIDHasBeenSet = true; m_jobID = std::move(value); } /** *

Lifecycle last Test initiated Job ID.

*/ inline void SetJobID(const char* value) { m_jobIDHasBeenSet = true; m_jobID.assign(value); } /** *

Lifecycle last Test initiated Job ID.

*/ inline LifeCycleLastTestInitiated& WithJobID(const Aws::String& value) { SetJobID(value); return *this;} /** *

Lifecycle last Test initiated Job ID.

*/ inline LifeCycleLastTestInitiated& WithJobID(Aws::String&& value) { SetJobID(std::move(value)); return *this;} /** *

Lifecycle last Test initiated Job ID.

*/ inline LifeCycleLastTestInitiated& WithJobID(const char* value) { SetJobID(value); return *this;} private: Aws::String m_apiCallDateTime; bool m_apiCallDateTimeHasBeenSet = false; Aws::String m_jobID; bool m_jobIDHasBeenSet = false; }; } // namespace Model } // namespace mgn } // namespace Aws