Class CfnTask.ManifestConfigSourceS3Property
Specifies the S3 bucket where you're hosting the manifest that you want AWS DataSync to use.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTask.ManifestConfigSourceS3Property : CfnTask.IManifestConfigSourceS3Property
Syntax (vb)
Public Class CfnTask.ManifestConfigSourceS3Property Implements CfnTask.IManifestConfigSourceS3Property
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 manifestConfigSourceS3Property = new ManifestConfigSourceS3Property {
BucketAccessRoleArn = "bucketAccessRoleArn",
ManifestObjectPath = "manifestObjectPath",
ManifestObjectVersionId = "manifestObjectVersionId",
S3BucketArn = "s3BucketArn"
};
Synopsis
Constructors
| ManifestConfigSourceS3Property() | Specifies the S3 bucket where you're hosting the manifest that you want AWS DataSync to use. |
Properties
| BucketAccessRoleArn | Specifies the AWS Identity and Access Management (IAM) role that allows DataSync to access your manifest. |
| ManifestObjectPath | Specifies the Amazon S3 object key of your manifest. |
| ManifestObjectVersionId | Specifies the object version ID of the manifest that you want DataSync to use. |
| S3BucketArn | Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest. |
Constructors
ManifestConfigSourceS3Property()
Specifies the S3 bucket where you're hosting the manifest that you want AWS DataSync to use.
public ManifestConfigSourceS3Property()
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 manifestConfigSourceS3Property = new ManifestConfigSourceS3Property {
BucketAccessRoleArn = "bucketAccessRoleArn",
ManifestObjectPath = "manifestObjectPath",
ManifestObjectVersionId = "manifestObjectVersionId",
S3BucketArn = "s3BucketArn"
};
Properties
BucketAccessRoleArn
Specifies the AWS Identity and Access Management (IAM) role that allows DataSync to access your manifest.
public string? BucketAccessRoleArn { get; set; }
Property Value
Remarks
ManifestObjectPath
Specifies the Amazon S3 object key of your manifest.
public string? ManifestObjectPath { get; set; }
Property Value
Remarks
ManifestObjectVersionId
Specifies the object version ID of the manifest that you want DataSync to use.
public string? ManifestObjectVersionId { get; set; }
Property Value
Remarks
S3BucketArn
Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.
public string? S3BucketArn { get; set; }