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 ‘TransferId` and `ConnectorId` specified.
-
#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`..
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`, 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.
4237 4238 4239 4240 4241 4242 |
# File 'lib/aws-sdk-transfer/types.rb', line 4237 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`.
4237 4238 4239 4240 4241 4242 |
# File 'lib/aws-sdk-transfer/types.rb', line 4237 class ListFileTransferResultsResponse < Struct.new( :file_transfer_results, :next_token) SENSITIVE = [] include Aws::Structure end |