Interface S3ManifestConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3ManifestConfig.Builder,S3ManifestConfig>,SdkBuilder<S3ManifestConfig.Builder,S3ManifestConfig>,SdkPojo
- Enclosing class:
- S3ManifestConfig
public static interface S3ManifestConfig.Builder extends SdkPojo, CopyableBuilder<S3ManifestConfig.Builder,S3ManifestConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3ManifestConfig.BuilderbucketAccessRoleArn(String bucketAccessRoleArn)Specifies the Identity and Access Management (IAM) role that allows DataSync to access your manifest.S3ManifestConfig.BuildermanifestObjectPath(String manifestObjectPath)Specifies the Amazon S3 object key of your manifest.S3ManifestConfig.BuildermanifestObjectVersionId(String manifestObjectVersionId)Specifies the object version ID of the manifest that you want DataSync to use.S3ManifestConfig.Builders3BucketArn(String s3BucketArn)Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
manifestObjectPath
S3ManifestConfig.Builder manifestObjectPath(String manifestObjectPath)
Specifies the Amazon S3 object key of your manifest. This can include a prefix (for example,
prefix/my-manifest.csv).- Parameters:
manifestObjectPath- Specifies the Amazon S3 object key of your manifest. This can include a prefix (for example,prefix/my-manifest.csv).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucketAccessRoleArn
S3ManifestConfig.Builder bucketAccessRoleArn(String bucketAccessRoleArn)
Specifies the Identity and Access Management (IAM) role that allows DataSync to access your manifest. For more information, see Providing DataSync access to your manifest.
- Parameters:
bucketAccessRoleArn- Specifies the Identity and Access Management (IAM) role that allows DataSync to access your manifest. For more information, see Providing DataSync access to your manifest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3BucketArn
S3ManifestConfig.Builder s3BucketArn(String s3BucketArn)
Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.
- Parameters:
s3BucketArn- Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
manifestObjectVersionId
S3ManifestConfig.Builder manifestObjectVersionId(String manifestObjectVersionId)
Specifies the object version ID of the manifest that you want DataSync to use. If you don't set this, DataSync uses the latest version of the object.
- Parameters:
manifestObjectVersionId- Specifies the object version ID of the manifest that you want DataSync to use. If you don't set this, DataSync uses the latest version of the object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-