Show / Hide Table of Contents

Class CfnTask.OverridesProperty

Customizes the reporting level for aspects of your task report.

Inheritance
object
CfnTask.OverridesProperty
Implements
CfnTask.IOverridesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-overrides.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-overrides.html

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

object

Remarks

This only applies if you configure your task to delete data in the destination that isn't in the source.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-overrides.html#cfn-datasync-task-overrides-deleted

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-overrides.html#cfn-datasync-task-overrides-skipped

Type union: either IResolvable or CfnTask.ISkippedProperty

Transferred

Specifies the level of reporting for the files, objects, and directories that Datasync attempted to transfer.

public object? Transferred { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-overrides.html#cfn-datasync-task-overrides-transferred

Type union: either IResolvable or CfnTask.ITransferredProperty

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

object

Remarks

This only applies if you configure your task to verify data during and after the transfer (which Datasync does by default)

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-overrides.html#cfn-datasync-task-overrides-verified

Type union: either IResolvable or CfnTask.IVerifiedProperty

Implements

CfnTask.IOverridesProperty
Back to top Generated by DocFX