Interface CfnPrompt.TextS3LocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrompt.TextS3LocationProperty.Jsii$Proxy
- Enclosing class:
CfnPrompt
@Stability(Stable)
public static interface CfnPrompt.TextS3LocationProperty
extends software.amazon.jsii.JsiiSerializable
The Amazon S3 location of the prompt text.
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.bedrock.*;
TextS3LocationProperty textS3LocationProperty = TextS3LocationProperty.builder()
.bucket("bucket")
.key("key")
// the properties below are optional
.version("version")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPrompt.TextS3LocationPropertystatic final classAn implementation forCfnPrompt.TextS3LocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The Amazon S3 bucket containing the prompt text.- See Also:
-
getKey
The object key for the Amazon S3 location.- See Also:
-
getVersion
The version of the Amazon S3 location to use.- See Also:
-
builder
-