Class CfnTask.OverridesProperty
Customizes the reporting level for aspects of your task report.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTask.OverridesProperty : CfnTask.IOverridesProperty
Syntax (vb)
Public Class CfnTask.OverridesProperty Implements CfnTask.IOverridesProperty
Remarks
For example, your report might generally only include errors, but you could specify that you want a list of successes and errors just for the files that Datasync attempted to delete in your destination location.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataSync;
var overridesProperty = new OverridesProperty {
Deleted = new DeletedProperty {
ReportLevel = "reportLevel"
},
Skipped = new SkippedProperty {
ReportLevel = "reportLevel"
},
Transferred = new TransferredProperty {
ReportLevel = "reportLevel"
},
Verified = new VerifiedProperty {
ReportLevel = "reportLevel"
}
};
Synopsis
Constructors
| OverridesProperty() | Customizes the reporting level for aspects of your task report. |
Properties
| Deleted | Specifies the level of reporting for the files, objects, and directories that Datasync attempted to delete in your destination location. |
| Skipped | Specifies the level of reporting for the files, objects, and directories that Datasync attempted to skip during your transfer. |
| Transferred | Specifies the level of reporting for the files, objects, and directories that Datasync attempted to transfer. |
| Verified | Specifies the level of reporting for the files, objects, and directories that Datasync attempted to verify at the end of your transfer. |
Constructors
OverridesProperty()
Customizes the reporting level for aspects of your task report.
public OverridesProperty()
Remarks
For example, your report might generally only include errors, but you could specify that you want a list of successes and errors just for the files that Datasync attempted to delete in your destination location.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataSync;
var overridesProperty = new OverridesProperty {
Deleted = new DeletedProperty {
ReportLevel = "reportLevel"
},
Skipped = new SkippedProperty {
ReportLevel = "reportLevel"
},
Transferred = new TransferredProperty {
ReportLevel = "reportLevel"
},
Verified = new VerifiedProperty {
ReportLevel = "reportLevel"
}
};
Properties
Deleted
Specifies the level of reporting for the files, objects, and directories that Datasync attempted to delete in your destination location.
public object? Deleted { get; set; }
Property Value
Remarks
This only applies if you configure your task to delete data in the destination that isn't in the source.
Type union: either IResolvable or CfnTask.IDeletedProperty
Skipped
Specifies the level of reporting for the files, objects, and directories that Datasync attempted to skip during your transfer.
public object? Skipped { get; set; }
Property Value
Remarks
Transferred
Specifies the level of reporting for the files, objects, and directories that Datasync attempted to transfer.
public object? Transferred { get; set; }
Property Value
Remarks
Verified
Specifies the level of reporting for the files, objects, and directories that Datasync attempted to verify at the end of your transfer.
public object? Verified { get; set; }
Property Value
Remarks
This only applies if you configure your task to verify data during and after the transfer (which Datasync does by default)
Type union: either IResolvable or CfnTask.IVerifiedProperty