interface S3ConfigProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.DataSync.CfnLocationS3.S3ConfigProperty | 
  Java | software.amazon.awscdk.services.datasync.CfnLocationS3.S3ConfigProperty | 
  Python | aws_cdk.aws_datasync.CfnLocationS3.S3ConfigProperty | 
  TypeScript  | @aws-cdk/aws-datasync » CfnLocationS3 » S3ConfigProperty | 
The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role used to access an Amazon S3 bucket.
For detailed information about using such a role, see Creating a Location for Amazon S3 in the AWS DataSync User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as datasync from '@aws-cdk/aws-datasync';
const s3ConfigProperty: datasync.CfnLocationS3.S3ConfigProperty = {
  bucketAccessRoleArn: 'bucketAccessRoleArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| bucket | string | The ARN of the IAM role for accessing the S3 bucket. | 
bucketAccessRoleArn
Type:
string
The ARN of the IAM role for accessing the S3 bucket.

 .NET
 Java
 Python
 TypeScript