interface TextS3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnPromptPropsMixin.TextS3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnPromptPropsMixin_TextS3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnPromptPropsMixin.TextS3LocationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnPromptPropsMixin.TextS3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnPromptPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const textS3LocationProperty: bedrock_mixins.CfnPromptPropsMixin.TextS3LocationProperty = {
bucket: 'bucket',
key: 'key',
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
(optional)
The Amazon S3 bucket containing the prompt text.
key?
Type:
string
(optional)
The object key for the Amazon S3 location.
version?
Type:
string
(optional)
The version of the Amazon S3 location to use.

.NET
Go
Java
Python
TypeScript