Class: Aws::DataSync::Types::ReportOverride
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::ReportOverride
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datasync/types.rb
Overview
Specifies the level of detail for a particular aspect of your DataSync [task report].
[1]: docs.aws.amazon.com/datasync/latest/userguide/task-reports.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#report_level ⇒ String
Specifies whether your task report includes errors only or successes and errors.
Instance Attribute Details
#report_level ⇒ String
Specifies whether your task report includes errors only or successes and errors.
For example, your report might mostly include only what didn’t go well in your transfer (‘ERRORS_ONLY`). At the same time, you want to verify that your [task filter] is working correctly. In this situation, you can get a list of what files DataSync successfully skipped and if something transferred that you didn’t to transfer (‘SUCCESSES_AND_ERRORS`).
[1]: docs.aws.amazon.com/datasync/latest/userguide/filtering.html
4950 4951 4952 4953 4954 |
# File 'lib/aws-sdk-datasync/types.rb', line 4950 class ReportOverride < Struct.new( :report_level) SENSITIVE = [] include Aws::Structure end |