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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.S3LocationPropertystatic final classAn implementation forCfnBot.S3LocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
The S3 bucket name. -
getS3ObjectKey
The path and file name to the object in the S3 bucket. -
getS3ObjectVersion
The version of the object in the S3 bucket. -
builder
- Returns:
- a
CfnBot.S3LocationProperty.BuilderofCfnBot.S3LocationProperty
-