Class CfnTask.DestinationProperty
Specifies where DataSync uploads your task report.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTask.DestinationProperty : CfnTask.IDestinationProperty
Syntax (vb)
Public Class CfnTask.DestinationProperty Implements CfnTask.IDestinationProperty
Remarks
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 destinationProperty = new DestinationProperty {
S3 = new S3Property {
BucketAccessRoleArn = "bucketAccessRoleArn",
S3BucketArn = "s3BucketArn",
Subdirectory = "subdirectory"
}
};
Synopsis
Constructors
| DestinationProperty() | Specifies where DataSync uploads your task report. |
Properties
| S3 | Specifies the Amazon S3 bucket where DataSync uploads your task report. |
Constructors
DestinationProperty()
Specifies where DataSync uploads your task report.
public DestinationProperty()
Remarks
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 destinationProperty = new DestinationProperty {
S3 = new S3Property {
BucketAccessRoleArn = "bucketAccessRoleArn",
S3BucketArn = "s3BucketArn",
Subdirectory = "subdirectory"
}
};
Properties
S3
Specifies the Amazon S3 bucket where DataSync uploads your task report.
public object? S3 { get; set; }