Interface CfnBot.S3LocationProperty

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

@Stability(Stable) public static interface CfnBot.S3LocationProperty extends software.amazon.jsii.JsiiSerializable
Defines an Amazon S3 bucket location.

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.lex.*;
 S3LocationProperty s3LocationProperty = S3LocationProperty.builder()
         .s3Bucket("s3Bucket")
         .s3ObjectKey("s3ObjectKey")
         // the properties below are optional
         .s3ObjectVersion("s3ObjectVersion")
         .build();
 

See Also: