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