interface TextS3LocationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_bedrock.CfnPrompt.TextS3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnPrompt_TextS3LocationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnPrompt.TextS3LocationProperty |
Python | aws_cdk.aws_bedrock.CfnPrompt.TextS3LocationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnPrompt » TextS3LocationProperty |
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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const textS3LocationProperty: bedrock.CfnPrompt.TextS3LocationProperty = {
bucket: 'bucket',
key: 'key',
// the properties below are optional
version: 'version',
};
Properties
Name | Type | Description |
---|---|---|
bucket | string | The Amazon S3 bucket containing the prompt text. |
key | string | The object key for the Amazon S3 location. |
version? | string | The version of the Amazon S3 location to use. |
bucket
Type:
string
The Amazon S3 bucket containing the prompt text.
key
Type:
string
The object key for the Amazon S3 location.
version?
Type:
string
(optional)
The version of the Amazon S3 location to use.