Class: Aws::Transfer::Types::ConnectorFileTransferResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#failure_codeString

For transfers that fail, this parameter contains a code indicating the reason. For example, ‘RETRIEVE_FILE_NOT_FOUND`

Returns:

  • (String)


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_messageString

For transfers that fail, this parameter describes the reason for the failure.

Returns:

  • (String)


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_pathString

The filename and path to where the file was sent to or retrieved from.

Returns:

  • (String)


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_codeString

The current status for the transfer.

Returns:

  • (String)


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