Class: Aws::DataSync::Types::TaskExecutionFilesListedDetail

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb

Overview

The number of files or objects that DataSync finds at your locations.

Applies only to Enhanced mode tasks.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#at_destination_for_delete ⇒ Integer

The number of files or objects that DataSync finds at your destination location. This counter is only applicable if you configure your task to delete data in the destination that isn't in the source.

Returns:

  • (Integer)


5315
5316
5317
5318
5319
5320
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 5315

class TaskExecutionFilesListedDetail < Struct.new(
  :at_source,
  :at_destination_for_delete)
  SENSITIVE = []
  include Aws::Structure
end

#at_source ⇒ Integer

The number of files or objects that DataSync finds at your source location.

  • With a manifest, DataSync lists only what's in your manifest (and not everything at your source location).

  • With an include filter, DataSync lists only what matches the filter at your source location.

  • With an exclude filter, DataSync lists everything at your source location before applying the filter.

Returns:

  • (Integer)


5315
5316
5317
5318
5319
5320
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 5315

class TaskExecutionFilesListedDetail < Struct.new(
  :at_source,
  :at_destination_for_delete)
  SENSITIVE = []
  include Aws::Structure
end