Class: Aws::Snowball::Types::DataTransfer

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

Overview

Defines the real-time status of a Snow device’s data transfer while the device is at Amazon Web Services. This data is only available while a job has a ‘JobState` value of `InProgress`, for both import and export jobs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bytes_transferredInteger

The number of bytes transferred between a Snow device and Amazon S3.

Returns:

  • (Integer)


890
891
892
893
894
895
896
897
# File 'lib/aws-sdk-snowball/types.rb', line 890

class DataTransfer < Struct.new(
  :bytes_transferred,
  :objects_transferred,
  :total_bytes,
  :total_objects)
  SENSITIVE = []
  include Aws::Structure
end

#objects_transferredInteger

The number of objects transferred between a Snow device and Amazon S3.

Returns:

  • (Integer)


890
891
892
893
894
895
896
897
# File 'lib/aws-sdk-snowball/types.rb', line 890

class DataTransfer < Struct.new(
  :bytes_transferred,
  :objects_transferred,
  :total_bytes,
  :total_objects)
  SENSITIVE = []
  include Aws::Structure
end

#total_bytesInteger

The total bytes of data for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.

Returns:

  • (Integer)


890
891
892
893
894
895
896
897
# File 'lib/aws-sdk-snowball/types.rb', line 890

class DataTransfer < Struct.new(
  :bytes_transferred,
  :objects_transferred,
  :total_bytes,
  :total_objects)
  SENSITIVE = []
  include Aws::Structure
end

#total_objectsInteger

The total number of objects for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.

Returns:

  • (Integer)


890
891
892
893
894
895
896
897
# File 'lib/aws-sdk-snowball/types.rb', line 890

class DataTransfer < Struct.new(
  :bytes_transferred,
  :objects_transferred,
  :total_bytes,
  :total_objects)
  SENSITIVE = []
  include Aws::Structure
end