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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTask.ManifestConfigSourceS3Property
static final class
An implementation forCfnTask.ManifestConfigSourceS3Property
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Specifies the AWS Identity and Access Management (IAM) role that allows DataSync to access your manifest.default String
Specifies the Amazon S3 object key of your manifest.default String
Specifies the object version ID of the manifest that you want DataSync to use.default String
Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketAccessRoleArn
Specifies the AWS Identity and Access Management (IAM) role that allows DataSync to access your manifest.- See Also:
-
getManifestObjectPath
Specifies the Amazon S3 object key of your manifest.- See Also:
-
getManifestObjectVersionId
Specifies the object version ID of the manifest that you want DataSync to use.- See Also:
-
getS3BucketArn
Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.- See Also:
-
builder
-