Interface CfnLocationS3.S3ConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLocationS3.S3ConfigProperty.Jsii$Proxy
Enclosing class:
CfnLocationS3

@Stability(Stable) public static interface CfnLocationS3.S3ConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that DataSync uses to access your S3 bucket.

For more information, see Accessing S3 buckets .

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.*;
 S3ConfigProperty s3ConfigProperty = S3ConfigProperty.builder()
         .bucketAccessRoleArn("bucketAccessRoleArn")
         .build();
 

See Also: