![]() |
![]()
| ![]() |
![]()
NAMEPaws::Robomaker::Tool USAGEThis 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 DESCRIPTIONInformation about a tool. Tools are used in a simulation job. ATTRIBUTESREQUIRED Command => StrCommand-line arguments for the tool. It must include the tool executable name. ExitBehavior => StrExit 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 => StrThe name of the tool. StreamOutputToCloudWatch => BoolBoolean indicating whether logs will be recorded in CloudWatch for the tool. The default is "False". StreamUI => BoolBoolean 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 ALSOThis class forms part of Paws, describing an object used in Paws::Robomaker BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|