Class: Aws::DataSync::Types::ReportOverride

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#report_levelString

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

Returns:

  • (String)


4734
4735
4736
4737
4738
# File 'lib/aws-sdk-datasync/types.rb', line 4734

class ReportOverride < Struct.new(
  :report_level)
  SENSITIVE = []
  include Aws::Structure
end