Interface CfnTask.ManifestConfigProperty

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

@Stability(Stable) public static interface CfnTask.ManifestConfigProperty extends software.amazon.jsii.JsiiSerializable
Configures a manifest, which is a list of files or objects that you want AWS DataSync to transfer.

For more information and configuration examples, see Specifying what DataSync transfers by using a manifest .

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.*;
 ManifestConfigProperty manifestConfigProperty = ManifestConfigProperty.builder()
         .source(SourceProperty.builder()
                 .s3(ManifestConfigSourceS3Property.builder()
                         .bucketAccessRoleArn("bucketAccessRoleArn")
                         .manifestObjectPath("manifestObjectPath")
                         .manifestObjectVersionId("manifestObjectVersionId")
                         .s3BucketArn("s3BucketArn")
                         .build())
                 .build())
         // the properties below are optional
         .action("action")
         .format("format")
         .build();
 

See Also: