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

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    static final class 
    An implementation for CfnTask.OverridesProperty
  • Method Summary

    Modifier and Type
    Method
    Description
     
    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