Class: Aws::DataSync::Types::TaskListEntry

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datasync/types.rb

Overview

Represents a single entry in a list of tasks. ‘TaskListEntry` returns an array that contains a list of tasks when the [ListTasks] operation is called. A task includes the source and destination file systems to sync and the options to use for the tasks.

[1]: docs.aws.amazon.com/datasync/latest/userguide/API_ListTasks.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the task.

Returns:

  • (String)


5392
5393
5394
5395
5396
5397
5398
# File 'lib/aws-sdk-datasync/types.rb', line 5392

class TaskListEntry < Struct.new(
  :task_arn,
  :status,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the task.

Returns:

  • (String)


5392
5393
5394
5395
5396
5397
5398
# File 'lib/aws-sdk-datasync/types.rb', line 5392

class TaskListEntry < Struct.new(
  :task_arn,
  :status,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#task_arnString

The Amazon Resource Name (ARN) of the task.

Returns:

  • (String)


5392
5393
5394
5395
5396
5397
5398
# File 'lib/aws-sdk-datasync/types.rb', line 5392

class TaskListEntry < Struct.new(
  :task_arn,
  :status,
  :name)
  SENSITIVE = []
  include Aws::Structure
end