interface OverridesProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DataSync.CfnTask.OverridesProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnTask_OverridesProperty |
![]() | software.amazon.awscdk.services.datasync.CfnTask.OverridesProperty |
![]() | aws_cdk.aws_datasync.CfnTask.OverridesProperty |
![]() | aws-cdk-lib » aws_datasync » CfnTask » OverridesProperty |
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 { aws_datasync as datasync } from 'aws-cdk-lib';
const overridesProperty: datasync.CfnTask.OverridesProperty = {
deleted: {
reportLevel: 'reportLevel',
},
skipped: {
reportLevel: 'reportLevel',
},
transferred: {
reportLevel: 'reportLevel',
},
verified: {
reportLevel: 'reportLevel',
},
};
Properties
Name | Type | Description |
---|---|---|
deleted? | IResolvable | Deleted | Specifies the level of reporting for the files, objects, and directories that DataSync attempted to delete in your destination location. |
skipped? | IResolvable | Skipped | Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer. |
transferred? | IResolvable | Transferred | Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer. |
verified? | IResolvable | Verified | Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify during your transfer. |
deleted?
Type:
IResolvable
|
Deleted
(optional)
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.
skipped?
Type:
IResolvable
|
Skipped
(optional)
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer.
transferred?
Type:
IResolvable
|
Transferred
(optional)
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer.
verified?
Type:
IResolvable
|
Verified
(optional)
Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify during your transfer.