Class: Aws::Transfer::Types::ListFileTransferResultsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListFileTransferResultsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_transfer_results ⇒ Array<Types::ConnectorFileTransferResult>
Returns the details for the files transferred in the transfer identified by the
TransferIdandConnectorIdspecified. -
#next_token ⇒ String
Returns a token that you can use to call
ListFileTransferResultsagain and receive additional results, if there are any (against the sameTransferId..
Instance Attribute Details
#file_transfer_results ⇒ Array<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, orFAILED -
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_token ⇒ String
Returns a token that you can use to call ListFileTransferResults again and receive additional results, if there are any (against the same TransferId.
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 |