Class: Aws::DataSync::Types::TaskExecutionListEntry

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

Overview

Represents a single entry in a list of task executions. ‘TaskExecutionListEntry` returns an array that contains a list of specific invocations of a task when the [ListTaskExecutions] operation is called.

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

The status of a task execution.

Returns:

  • (String)


4969
4970
4971
4972
4973
4974
# File 'lib/aws-sdk-datasync/types.rb', line 4969

class TaskExecutionListEntry < Struct.new(
  :task_execution_arn,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#task_execution_arnString

The Amazon Resource Name (ARN) of the task that was executed.

Returns:

  • (String)


4969
4970
4971
4972
4973
4974
# File 'lib/aws-sdk-datasync/types.rb', line 4969

class TaskExecutionListEntry < Struct.new(
  :task_execution_arn,
  :status)
  SENSITIVE = []
  include Aws::Structure
end