Interface CfnCapability.S3LocationProperty

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

@Stability(Stable) public static interface CfnCapability.S3LocationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the details for the Amazon S3 file location that is being used with AWS B2BI Data Interchange.

File locations in Amazon S3 are identified using a combination of the bucket and key.

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.b2bi.*;
 S3LocationProperty s3LocationProperty = S3LocationProperty.builder()
         .bucketName("bucketName")
         .key("key")
         .build();
 

See Also: