/** * 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 { /** *

Operating System.

See Also:

AWS API * Reference

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

OS full string.

*/ inline const Aws::String& GetFullString() const{ return m_fullString; } /** *

OS full string.

*/ inline bool FullStringHasBeenSet() const { return m_fullStringHasBeenSet; } /** *

OS full string.

*/ inline void SetFullString(const Aws::String& value) { m_fullStringHasBeenSet = true; m_fullString = value; } /** *

OS full string.

*/ inline void SetFullString(Aws::String&& value) { m_fullStringHasBeenSet = true; m_fullString = std::move(value); } /** *

OS full string.

*/ inline void SetFullString(const char* value) { m_fullStringHasBeenSet = true; m_fullString.assign(value); } /** *

OS full string.

*/ inline OS& WithFullString(const Aws::String& value) { SetFullString(value); return *this;} /** *

OS full string.

*/ inline OS& WithFullString(Aws::String&& value) { SetFullString(std::move(value)); return *this;} /** *

OS full string.

*/ inline OS& WithFullString(const char* value) { SetFullString(value); return *this;} private: Aws::String m_fullString; bool m_fullStringHasBeenSet = false; }; } // namespace Model } // namespace mgn } // namespace Aws