CopyFileArgs constructor

const CopyFileArgs({
  1. required Input<Connection> connection,
  2. required Input<String> localPath,
  3. required Input<String> remotePath,
  4. Input<List>? triggers,
})

Creates a new CopyFileArgs. connection The parameters with which to connect to the remote host. localPath The path of the file to be copied. remotePath The destination path in the remote host. triggers Trigger replacements on changes to this input.

Implementation

const CopyFileArgs({
  required this.connection,
  required this.localPath,
  required this.remotePath,
  this.triggers,
});