Interface CfnTask.ManifestConfigSourceS3Property

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

@Stability(Stable) public static interface CfnTask.ManifestConfigSourceS3Property extends software.amazon.jsii.JsiiSerializable
Specifies the S3 bucket where you're hosting the manifest that you want AWS DataSync to use.

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.*;
 ManifestConfigSourceS3Property manifestConfigSourceS3Property = ManifestConfigSourceS3Property.builder()
         .bucketAccessRoleArn("bucketAccessRoleArn")
         .manifestObjectPath("manifestObjectPath")
         .manifestObjectVersionId("manifestObjectVersionId")
         .s3BucketArn("s3BucketArn")
         .build();
 

See Also: