Interface CfnTask.OverridesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTask.OverridesProperty.Jsii$Proxy
- Enclosing class:
CfnTask
@Stability(Stable)
public static interface CfnTask.OverridesProperty
extends software.amazon.jsii.JsiiSerializable
Customizes the reporting level for aspects of your task report.
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.datasync.*; OverridesProperty overridesProperty = OverridesProperty.builder() .deleted(DeletedProperty.builder() .reportLevel("reportLevel") .build()) .skipped(SkippedProperty.builder() .reportLevel("reportLevel") .build()) .transferred(TransferredProperty.builder() .reportLevel("reportLevel") .build()) .verified(VerifiedProperty.builder() .reportLevel("reportLevel") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTask.OverridesProperty
static final class
An implementation forCfnTask.OverridesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to delete in your destination location.default Object
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer.default Object
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer.default Object
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify during your transfer.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeleted
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to delete in your destination location.This only applies if you configure your task to delete data in the destination that isn't in the source.
- See Also:
-
getSkipped
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer.- See Also:
-
getTransferred
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer.- See Also:
-
getVerified
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify during your transfer.- See Also:
-
builder
- Returns:
- a
CfnTask.OverridesProperty.Builder
ofCfnTask.OverridesProperty
-