/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a tool. Tools are used in a simulation job.See
* Also:
AWS API
* Reference
Boolean indicating whether a streaming session will be configured for the
* tool. If True
, AWS RoboMaker will configure a connection so you can
* interact with the tool as it is running in the simulation. It must have a
* graphical user interface. The default is False
.
Boolean indicating whether a streaming session will be configured for the
* tool. If True
, AWS RoboMaker will configure a connection so you can
* interact with the tool as it is running in the simulation. It must have a
* graphical user interface. The default is False
.
Boolean indicating whether a streaming session will be configured for the
* tool. If True
, AWS RoboMaker will configure a connection so you can
* interact with the tool as it is running in the simulation. It must have a
* graphical user interface. The default is False
.
Boolean indicating whether a streaming session will be configured for the
* tool. If True
, AWS RoboMaker will configure a connection so you can
* interact with the tool as it is running in the simulation. It must have a
* graphical user interface. The default is False
.
The name of the tool.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the tool.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the tool.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the tool.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the tool.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the tool.
*/ inline Tool& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the tool.
*/ inline Tool& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the tool.
*/ inline Tool& WithName(const char* value) { SetName(value); return *this;} /** *Command-line arguments for the tool. It must include the tool executable * name.
*/ inline const Aws::String& GetCommand() const{ return m_command; } /** *Command-line arguments for the tool. It must include the tool executable * name.
*/ inline bool CommandHasBeenSet() const { return m_commandHasBeenSet; } /** *Command-line arguments for the tool. It must include the tool executable * name.
*/ inline void SetCommand(const Aws::String& value) { m_commandHasBeenSet = true; m_command = value; } /** *Command-line arguments for the tool. It must include the tool executable * name.
*/ inline void SetCommand(Aws::String&& value) { m_commandHasBeenSet = true; m_command = std::move(value); } /** *Command-line arguments for the tool. It must include the tool executable * name.
*/ inline void SetCommand(const char* value) { m_commandHasBeenSet = true; m_command.assign(value); } /** *Command-line arguments for the tool. It must include the tool executable * name.
*/ inline Tool& WithCommand(const Aws::String& value) { SetCommand(value); return *this;} /** *Command-line arguments for the tool. It must include the tool executable * name.
*/ inline Tool& WithCommand(Aws::String&& value) { SetCommand(std::move(value)); return *this;} /** *Command-line arguments for the tool. It must include the tool executable * name.
*/ inline Tool& WithCommand(const char* value) { SetCommand(value); return *this;} /** *Boolean indicating whether logs will be recorded in CloudWatch for the tool.
* The default is False
.
Boolean indicating whether logs will be recorded in CloudWatch for the tool.
* The default is False
.
Boolean indicating whether logs will be recorded in CloudWatch for the tool.
* The default is False
.
Boolean indicating whether logs will be recorded in CloudWatch for the tool.
* The default is False
.
Exit behavior determines what happens when your tool quits running.
* RESTART
will cause your tool to be restarted. FAIL
* will cause your job to exit. The default is RESTART
.
Exit behavior determines what happens when your tool quits running.
* RESTART
will cause your tool to be restarted. FAIL
* will cause your job to exit. The default is RESTART
.
Exit behavior determines what happens when your tool quits running.
* RESTART
will cause your tool to be restarted. FAIL
* will cause your job to exit. The default is RESTART
.
Exit behavior determines what happens when your tool quits running.
* RESTART
will cause your tool to be restarted. FAIL
* will cause your job to exit. The default is RESTART
.
Exit behavior determines what happens when your tool quits running.
* RESTART
will cause your tool to be restarted. FAIL
* will cause your job to exit. The default is RESTART
.
Exit behavior determines what happens when your tool quits running.
* RESTART
will cause your tool to be restarted. FAIL
* will cause your job to exit. The default is RESTART
.