/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SimSpaceWeaver { namespace Model { /** *

Options that apply when the app starts. These options override default * behavior.

See Also:

AWS * API Reference

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

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline const Aws::Vector& GetLaunchCommands() const{ return m_launchCommands; } /** *

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline bool LaunchCommandsHasBeenSet() const { return m_launchCommandsHasBeenSet; } /** *

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline void SetLaunchCommands(const Aws::Vector& value) { m_launchCommandsHasBeenSet = true; m_launchCommands = value; } /** *

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline void SetLaunchCommands(Aws::Vector&& value) { m_launchCommandsHasBeenSet = true; m_launchCommands = std::move(value); } /** *

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline LaunchOverrides& WithLaunchCommands(const Aws::Vector& value) { SetLaunchCommands(value); return *this;} /** *

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline LaunchOverrides& WithLaunchCommands(Aws::Vector&& value) { SetLaunchCommands(std::move(value)); return *this;} /** *

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline LaunchOverrides& AddLaunchCommands(const Aws::String& value) { m_launchCommandsHasBeenSet = true; m_launchCommands.push_back(value); return *this; } /** *

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline LaunchOverrides& AddLaunchCommands(Aws::String&& value) { m_launchCommandsHasBeenSet = true; m_launchCommands.push_back(std::move(value)); return *this; } /** *

App launch commands and command line parameters that override the launch * command configured in the simulation schema.

*/ inline LaunchOverrides& AddLaunchCommands(const char* value) { m_launchCommandsHasBeenSet = true; m_launchCommands.push_back(value); return *this; } private: Aws::Vector m_launchCommands; bool m_launchCommandsHasBeenSet = false; }; } // namespace Model } // namespace SimSpaceWeaver } // namespace Aws