Interface CfnTaskPropsMixin.OverridesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTaskPropsMixin.OverridesProperty.Jsii$Proxy
Enclosing class:
CfnTaskPropsMixin

@Stability(Stable) public static interface CfnTaskPropsMixin.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.cfnpropertymixins.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: