Interface CfnPlugin.S3Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlugin.S3Property.Jsii$Proxy
- Enclosing class:
CfnPlugin
@Stability(Stable)
public static interface CfnPlugin.S3Property
extends software.amazon.jsii.JsiiSerializable
Information required for Amazon Q Business to find a specific file in an Amazon S3 bucket.
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.qbusiness.*; S3Property s3Property = S3Property.builder() .bucket("bucket") .key("key") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPlugin.S3Property
static final class
An implementation forCfnPlugin.S3Property
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The name of the S3 bucket that contains the file.- See Also:
-
getKey
The name of the file.- See Also:
-
builder
- Returns:
- a
CfnPlugin.S3Property.Builder
ofCfnPlugin.S3Property
-