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

Configuration information for a world.

See Also:

AWS * API Reference

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

The world generated by Simulation WorldForge.

*/ inline const Aws::String& GetWorld() const{ return m_world; } /** *

The world generated by Simulation WorldForge.

*/ inline bool WorldHasBeenSet() const { return m_worldHasBeenSet; } /** *

The world generated by Simulation WorldForge.

*/ inline void SetWorld(const Aws::String& value) { m_worldHasBeenSet = true; m_world = value; } /** *

The world generated by Simulation WorldForge.

*/ inline void SetWorld(Aws::String&& value) { m_worldHasBeenSet = true; m_world = std::move(value); } /** *

The world generated by Simulation WorldForge.

*/ inline void SetWorld(const char* value) { m_worldHasBeenSet = true; m_world.assign(value); } /** *

The world generated by Simulation WorldForge.

*/ inline WorldConfig& WithWorld(const Aws::String& value) { SetWorld(value); return *this;} /** *

The world generated by Simulation WorldForge.

*/ inline WorldConfig& WithWorld(Aws::String&& value) { SetWorld(std::move(value)); return *this;} /** *

The world generated by Simulation WorldForge.

*/ inline WorldConfig& WithWorld(const char* value) { SetWorld(value); return *this;} private: Aws::String m_world; bool m_worldHasBeenSet = false; }; } // namespace Model } // namespace RoboMaker } // namespace Aws