Class: Aws::Transfer::Types::ListFileTransferResultsResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_transfer_resultsArray<Types::ConnectorFileTransferResult>

Returns the details for the files transferred in the transfer identified by the TransferId and ConnectorId specified.

  • FilePath: the filename and path to where the file was sent to or retrieved from.

  • StatusCode: current status for the transfer. The status returned is one of the following values:QUEUED, IN_PROGRESS, COMPLETED, or FAILED

  • FailureCode: for transfers that fail, this parameter contains a code indicating the reason. For example, RETRIEVE_FILE_NOT_FOUND

  • FailureMessage: for transfers that fail, this parameter describes the reason for the failure.



4687
4688
4689
4690
4691
4692
# File 'lib/aws-sdk-transfer/types.rb', line 4687

class ListFileTransferResultsResponse < Struct.new(
  :file_transfer_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

Returns a token that you can use to call ListFileTransferResults again and receive additional results, if there are any (against the same TransferId.

Returns:

  • (String)


4687
4688
4689
4690
4691
4692
# File 'lib/aws-sdk-transfer/types.rb', line 4687

class ListFileTransferResultsResponse < Struct.new(
  :file_transfer_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end