Class: Aws::DataSync::Types::TaskExecutionFoldersListedDetail

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

Overview

The number of directories 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_deleteInteger

The number of directories 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)


5139
5140
5141
5142
5143
5144
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 5139

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

#at_sourceInteger

The number of directories 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)


5139
5140
5141
5142
5143
5144
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 5139

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