interface ContentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnMemory.ContentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnMemory_ContentConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnMemory.ContentConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnMemory.ContentConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnMemory » ContentConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const contentConfigurationProperty: bedrockagentcore.CfnMemory.ContentConfigurationProperty = {
type: 'type',
// the properties below are optional
level: 'level',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of content to deliver. |
| level? | string | The level of content detail to deliver. |
type
Type:
string
The type of content to deliver.
level?
Type:
string
(optional)
The level of content detail to deliver.

.NET
Go
Java
Python
TypeScript