interface TextS3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnPromptPropsMixin.TextS3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnPromptPropsMixin_TextS3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnPromptPropsMixin.TextS3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnPromptPropsMixin.TextS3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const textS3LocationProperty: bedrock.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