RunArgs constructor

const RunArgs({
  1. Input<bool>? addPreviousOutputInEnv,
  2. Input<List<String>>? archivePaths,
  3. Input<List<String>>? assetPaths,
  4. required Input<String> command,
  5. Input<String>? dir,
  6. Input<Map<String, String>>? environment,
  7. Input<List<String>>? interpreter,
  8. Input<Logging>? logging,
  9. Input<String>? stdin,
})

Creates a new RunArgs. addPreviousOutputInEnv If the previous command's stdout and stderr (as generated by the prior create/update) is archivePaths A list of path globs to return as a single archive asset after the command completes. assetPaths A list of path globs to read after the command completes. command The command to run. dir The directory from which to run the command from. If dir does not exist, then environment Additional environment variables available to the command's process. interpreter The program and arguments to run the command. logging If the command's stdout and stderr should be logged. This doesn't affect the capturing of stdin Pass a string to the command's process as standard in

Implementation

const RunArgs({
  this.addPreviousOutputInEnv,
  this.archivePaths,
  this.assetPaths,
  required this.command,
  this.dir,
  this.environment,
  this.interpreter,
  this.logging,
  this.stdin,
});