NAME
Paws::Robomaker::Tool
USAGE
This class represents one of two things:
Arguments in a call to a service
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object.
As an example, if Att1 is expected to be a Paws::Robomaker::Tool object:
$service_obj->Method(Att1 => { Command => $value, ..., StreamUI => $value  });
Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::Robomaker::Tool object:
$result = $service_obj->Method(...);
$result->Att1->Command
DESCRIPTION
Information about a tool. Tools are used in a simulation job.
ATTRIBUTES
REQUIRED Command => Str
Command-line arguments for the tool. It must include the tool executable name.
ExitBehavior => Str
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.
REQUIRED Name => Str
The name of the tool.
StreamOutputToCloudWatch => Bool
Boolean indicating whether logs will be recorded in CloudWatch for the tool. The default is False.
StreamUI => Bool
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.
SEE ALSO
This class forms part of Paws, describing an object used in Paws::Robomaker
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues