interface SystemContentBlockProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnPromptVersionPropsMixin.SystemContentBlockProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnPromptVersionPropsMixin_SystemContentBlockProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnPromptVersionPropsMixin.SystemContentBlockProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnPromptVersionPropsMixin.SystemContentBlockProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnPromptVersionPropsMixin » SystemContentBlockProperty |
Contains configurations for instructions to provide the model for how to handle input.
To learn more, see Using the Converse API .
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 systemContentBlockProperty: bedrock_mixins.CfnPromptVersionPropsMixin.SystemContentBlockProperty = {
cachePoint: {
type: 'type',
},
text: 'text',
};
Properties
| Name | Type | Description |
|---|---|---|
| cache | IResolvable | Cache | CachePoint to include in the system prompt. |
| text? | string | A system prompt for the model. |
cachePoint?
Type:
IResolvable | Cache
(optional)
CachePoint to include in the system prompt.
text?
Type:
string
(optional)
A system prompt for the model.

.NET
Go
Java
Python
TypeScript