Class: Aws::Transfer::Types::ConnectorFileTransferResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ConnectorFileTransferResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
A structure that contains the details for files transferred using an SFTP connector, during a single transfer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failure_code ⇒ String
For transfers that fail, this parameter contains a code indicating the reason.
-
#failure_message ⇒ String
For transfers that fail, this parameter describes the reason for the failure.
-
#file_path ⇒ String
The filename and path to where the file was sent to or retrieved from.
-
#status_code ⇒ String
The current status for the transfer.
Instance Attribute Details
#failure_code ⇒ String
For transfers that fail, this parameter contains a code indicating the reason. For example, ‘RETRIEVE_FILE_NOT_FOUND`
177 178 179 180 181 182 183 184 |
# File 'lib/aws-sdk-transfer/types.rb', line 177 class ConnectorFileTransferResult < Struct.new( :file_path, :status_code, :failure_code, :failure_message) SENSITIVE = [] include Aws::Structure end |
#failure_message ⇒ String
For transfers that fail, this parameter describes the reason for the failure.
177 178 179 180 181 182 183 184 |
# File 'lib/aws-sdk-transfer/types.rb', line 177 class ConnectorFileTransferResult < Struct.new( :file_path, :status_code, :failure_code, :failure_message) SENSITIVE = [] include Aws::Structure end |
#file_path ⇒ String
The filename and path to where the file was sent to or retrieved from.
177 178 179 180 181 182 183 184 |
# File 'lib/aws-sdk-transfer/types.rb', line 177 class ConnectorFileTransferResult < Struct.new( :file_path, :status_code, :failure_code, :failure_message) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
The current status for the transfer.
177 178 179 180 181 182 183 184 |
# File 'lib/aws-sdk-transfer/types.rb', line 177 class ConnectorFileTransferResult < Struct.new( :file_path, :status_code, :failure_code, :failure_message) SENSITIVE = [] include Aws::Structure end |