interface SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnTaskPropsMixin.SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnTaskPropsMixin_SourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnTaskPropsMixin.SourceProperty |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnTaskPropsMixin.SourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnTaskPropsMixin » SourceProperty |
Specifies the manifest that you want DataSync to use and where it's hosted.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datasync_mixins } from '@aws-cdk/mixins-preview/aws-datasync';
const sourceProperty: datasync_mixins.CfnTaskPropsMixin.SourceProperty = {
s3: {
bucketAccessRoleArn: 'bucketAccessRoleArn',
manifestObjectPath: 'manifestObjectPath',
manifestObjectVersionId: 'manifestObjectVersionId',
s3BucketArn: 's3BucketArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3? | IResolvable | Manifest | Specifies the S3 bucket where you're hosting the manifest that you want AWS DataSync to use. |
s3?
Type:
IResolvable | Manifest
(optional)
Specifies the S3 bucket where you're hosting the manifest that you want AWS DataSync to use.

.NET
Go
Java
Python
TypeScript