CommandArgs constructor

const CommandArgs({
  1. Input<bool>? addPreviousOutputInEnv,
  2. required Input<Connection> connection,
  3. Input<String>? create,
  4. Input<String>? delete,
  5. Input<Map<String, String>>? environment,
  6. Input<Logging>? logging,
  7. Input<String>? stdin,
  8. Input<List>? triggers,
  9. Input<String>? update,
})

Creates a new CommandArgs. addPreviousOutputInEnv If the previous command's stdout and stderr (as generated by the prior create/update) is connection The parameters with which to connect to the remote host. create The command to run once on resource creation. delete The command to run on resource delettion. environment Additional environment variables available to the command's process. 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 triggers The resource will be updated (or replaced) if any of these values change. update The command to run when the resource is updated.

Implementation

const CommandArgs({
  this.addPreviousOutputInEnv,
  required this.connection,
  this.create,
  this.delete,
  this.environment,
  this.logging,
  this.stdin,
  this.triggers,
  this.update,
});