Class: Aws::DataSync::Types::TaskExecutionFoldersListedDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::TaskExecutionFoldersListedDetail
- Defined in:
- gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb
Overview
The number of directories that DataSync finds at your locations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#at_destination_for_delete ⇒ Integer
The number of directories that DataSync finds at your destination location.
-
#at_source ⇒ Integer
The number of directories that DataSync finds at your source location.
Instance Attribute Details
#at_destination_for_delete ⇒ Integer
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.
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_source ⇒ Integer
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.
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 |