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

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

Overview

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

<note markdown=“1”> Applies only to [Enhanced mode tasks][1].

</note>

[1]: docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#at_destination_for_deleteInteger

The number of files or objects that DataSync finds at your destination location. This counter is only applicable if you

configure your task][1

to delete data in the destination that

isn’t in the source.

[1]: docs.aws.amazon.com/datasync/latest/userguide/configure-metadata.html#task-option-file-object-handling

Returns:

  • (Integer)


5299
5300
5301
5302
5303
5304
# File 'lib/aws-sdk-datasync/types.rb', line 5299

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

#at_sourceInteger

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

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

  • With an include [filter][2], 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.

[1]: docs.aws.amazon.com/datasync/latest/userguide/transferring-with-manifest.html [2]: docs.aws.amazon.com/datasync/latest/userguide/filtering.html

Returns:

  • (Integer)


5299
5300
5301
5302
5303
5304
# File 'lib/aws-sdk-datasync/types.rb', line 5299

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